/* ═══════════════════════════════════════
   TAX HELP DEBT ASSIST — MAIN STYLESHEET
   v6 Multi-Page
═══════════════════════════════════════ */

/* DESIGN TOKENS */
:root {
  --navy:        #0f2744;
  --navy-mid:    #1a3a5c;
  --slate:       #2d5f7c;
  --teal:        #3a9e8f;
  --teal-light:  #4bbdac;
  --teal-pale:   #e8f7f5;
  --sky:         #e4f2f8;
  --white:       #ffffff;
  --off-white:   #f6f9fb;
  --text:        #0f2744;
  --text-mid:    #4a6070;
  --text-light:  #7a96a8;
  --border:      #d8e8f0;
  --red:         #c0272d;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 5%;
  justify-content: space-between;
  box-shadow: 0 2px 16px rgba(15,39,68,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text .name {
  font-family: 'Lora', serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); display: block;
}
.nav-logo-text .sub {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); display: block; margin-top: 1px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-phone:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: white;
  padding: 9px 20px; border-radius: 6px;
  font-size: 0.83rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--slate); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 72px; left:0; right:0;
  background: white; border-bottom: 2px solid var(--border);
  padding: 20px 5%; flex-direction: column; gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 998;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 1rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu .nav-cta {
  text-align: center; margin-top: 4px; border-bottom: none;
  color: white; padding: 12px 20px;
}

/* ─── HERO (standard dark gradient) ─── */
.hero {
  padding: 130px 5% 90px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--slate) 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom:-1px; left:0; right:0; height:60px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero::before {
  content: ''; position: absolute; inset:0;
  background: radial-gradient(ellipse at 75% 40%, rgba(58,158,143,0.18) 0%, transparent 55%);
}
.hero-inner {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 2; text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,158,143,0.18); border: 1px solid rgba(58,158,143,0.35);
  color: var(--teal-light); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700; color: white; line-height: 1.2; margin-bottom: 18px;
}
.hero h1 span { color: var(--teal-light); }
.hero-desc {
  color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── VIDEO HERO ─── */
.hero-video-wrap {
  position: relative; overflow: hidden;
  padding: 160px 5% 100px; min-height: 600px;
  display: flex; align-items: center;
  background: var(--navy);
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(15,39,68,0.72); z-index: 1;
}
.hero-video-wrap::after {
  content: ''; position: absolute; bottom:-1px; left:0; right:0; height:60px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); z-index: 3;
}
.hero-video-wrap .hero-inner { z-index: 2; }

/* ─── HERO BRAND LOGO BLOCK (video hero only) ─── */
.hero-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-wm {
  text-align: center;
}
.hero-wm .h-name {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hero-wm .h-name span { color: var(--teal-light); }
.hero-wm .h-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ─── VIDEO HERO TEXT — ensure legibility over any video ─── */
.hero-video-wrap h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-video-wrap h1 span { color: var(--teal-light); }
.hero-video-wrap .hero-desc {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.hero-video-wrap .hero-tag {
  color: var(--teal-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--teal); color: white;
  padding: 13px 28px; border-radius: 6px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; display: inline-block; letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,158,143,0.35); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 13px 28px; border-radius: 6px; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35);
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.75); color: white; }
.btn-white {
  background: white; color: var(--navy);
  padding: 13px 28px; border-radius: 6px; font-size: 0.9rem; font-weight: 700;
  text-decoration: none; display: inline-block; transition: all .2s;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 22px 5%; }
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.trust-item { text-align: center; }
.trust-num { font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); display: block; }
.trust-label { font-size: 0.72rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── SECTION COMMONS ─── */
.sec { padding: 80px 5%; }
.sec-alt { background: var(--off-white); }
.sec-dark { background: var(--navy); }
.sec-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px; display: block;
}
.sec-label.light { color: var(--teal-light); }
.sec-title {
  font-family: 'Lora', serif; font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.sec-title.light { color: white; }
.sec-intro { font-size: 1rem; color: var(--text-mid); line-height: 1.75; max-width: 640px; margin-bottom: 44px; }
.sec-intro.light { color: rgba(255,255,255,0.65); }
.sec-header { max-width: 1200px; margin: 0 auto 48px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-intro { margin-left: auto; margin-right: auto; }

/* ─── INTRO SPLIT ─── */
.intro-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.intro-text p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.intro-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.intro-step {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; padding: 18px 20px; border-radius: 8px;
  border: 1px solid var(--border); transition: box-shadow .2s;
}
.intro-step:hover { box-shadow: 0 4px 20px rgba(15,39,68,0.08); }
.step-num-circle {
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: white;
  font-weight: 700; font-size: 0.82rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.intro-step h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.intro-step p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; margin:0; }

/* ─── SERVICES ─── */
.services-wrap { max-width: 1200px; margin: 0 auto; }
.svc-group { margin-bottom: 48px; }
.svc-group-title {
  font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-pale);
  display: flex; align-items: center; gap: 10px;
}
.svc-group-title::before {
  content: ''; width: 4px; height: 20px; background: var(--teal);
  border-radius: 2px; display: inline-block;
}
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.svc-card {
  background: var(--white); border-radius: 8px; padding: 24px 22px;
  border: 1px solid var(--border); transition: all .25s;
}
.svc-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(58,158,143,0.1); transform: translateY(-2px); }
.svc-card-icon { font-size: 1.4rem; margin-bottom: 10px; display: block; }
.svc-card h3 { font-family: 'Lora', serif; font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }
.svc-card ul { margin-top: 8px; padding-left: 16px; font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }

/* ─── PROCESS ─── */
.process-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%); z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.ps-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy);
  border: 3px solid var(--teal); color: var(--teal-light);
  font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.process-step h3 { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ─── WHY US ─── */
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.why-text p { font-size: 0.96rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: var(--off-white); border-radius: 8px; border: 1px solid var(--border);
}
.why-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--teal-pale);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-item h4 { font-size: 0.86rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.why-item p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ─── NIGHT / 2AM ─── */
.night-sec {
  background: #07111c; padding: 80px 5%;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(58,158,143,0.12);
  border-bottom: 1px solid rgba(58,158,143,0.12);
}
.night-sec::before {
  content: ''; position: absolute; inset:0;
  background: radial-gradient(ellipse at 20% 50%, rgba(192,39,45,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(58,158,143,0.07) 0%, transparent 50%);
}
.night-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 180px 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.moon { font-size: 2.6rem; animation: moonFloat 4s ease-in-out infinite; }
@keyframes moonFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.night-time-txt {
  font-family: 'Lora', serif; font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,0.07); line-height: 1; animation: timePulse 3s ease-in-out infinite;
}
@keyframes timePulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.night-dots { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.18); text-align: center; line-height: 2; }
.night-content h2 { font-family: 'Lora', serif; font-size: clamp(1.5rem,2.4vw,2.1rem); font-weight: 700; color: white; line-height: 1.3; margin-bottom: 14px; }
.night-content h2 em { font-style: italic; color: var(--teal-light); }
.night-content p { font-size: 0.93rem; color: rgba(255,255,255,0.55); line-height: 1.78; margin-bottom: 10px; }
.night-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: white; padding: 13px 24px; border-radius: 6px;
  font-size: 0.87rem; font-weight: 600; text-decoration: none; margin-top: 10px; transition: all .2s;
}
.night-cta-btn:hover { background: var(--teal-light); transform: translateY(-1px); }
.night-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 10px; display: block; letter-spacing: 0.04em; }

/* ─── TESTIMONIALS ─── */
.testi-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 28px; }
.testi-stars { color: var(--teal-light); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 12px; }
.testi-card blockquote { color: rgba(255,255,255,0.65); font-size: 0.88rem; font-style: italic; line-height: 1.72; margin-bottom: 18px; }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: white; font-weight: 700; font-size: 0.82rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-weight: 700; color: white; font-size: 0.86rem; }
.testi-loc { font-size: 0.73rem; color: rgba(255,255,255,0.38); }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--slate) 100%);
  padding: 64px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset:0; background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%); }
.cta-band h2 { font-family: 'Lora', serif; font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: white; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 28px; position: relative; }

/* ─── BLOG ─── */
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(15,39,68,0.1); transform: translateY(-3px); border-color: var(--teal); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
.blog-card h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-card .read-more { font-size: 0.83rem; font-weight: 600; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.blog-card .read-more:hover { color: var(--navy); }
.blog-meta { font-size: 0.75rem; color: var(--text-light); margin-bottom: 12px; }

/* ─── ARTICLE ─── */
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-header { margin-bottom: 36px; }
.article-header .blog-tag { font-size: 0.72rem; }
.article-header h1 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.22; margin-bottom: 16px; }
.article-meta { font-size: 0.8rem; color: var(--text-light); display: flex; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; margin-top: 16px; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-body h2 { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.article-body h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.article-body p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; }
.article-body strong { color: var(--navy); }
.article-callout {
  background: var(--teal-pale); border-left: 4px solid var(--teal); border-radius: 0 8px 8px 0;
  padding: 20px 24px; margin: 28px 0;
}
.article-callout p { margin: 0; font-size: 0.94rem; color: var(--navy); }
.article-cta-box {
  background: var(--navy); border-radius: 10px; padding: 28px 32px; margin-top: 40px; text-align: center;
}
.article-cta-box h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.article-cta-box p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }
.back-to-blog { font-size: 0.85rem; font-weight: 600; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.back-to-blog:hover { color: var(--navy); }

/* ─── FAQ ─── */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
details.faq-item {
  background: white; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: border-color .2s;
}
details.faq-item[open] { border-color: var(--teal); }
details.faq-item summary {
  font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--navy);
  cursor: pointer; list-style: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .faq-icon { color: var(--teal); font-size: 1.3rem; flex-shrink: 0; transition: transform .3s; }
details.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
details.faq-item .faq-answer { padding: 0 24px 20px; color: var(--text-mid); font-size: 0.92rem; line-height: 1.78; }
details.faq-item .faq-answer a { color: var(--teal); font-weight: 700; }

/* ─── CONTACT ─── */
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.contact-info > p { font-size: 0.96rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.cd-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cd-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.cd-val { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-form { background: var(--off-white); border-radius: 12px; padding: 36px 32px; border: 1px solid var(--border); }
.contact-form h3 { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.04em; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 6px; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  color: var(--text); background: white; transition: border-color .2s;
  outline: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--teal); }
.fg textarea { min-height: 120px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--teal); color: white; border: none; padding: 14px; border-radius: 6px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background .2s; letter-spacing: 0.02em; }
.form-submit:hover { background: var(--slate); }
.form-note { font-size: 0.75rem; color: var(--text-light); margin-top: 10px; text-align: center; line-height: 1.6; }

/* ─── ABOUT / VALUES ─── */
.values-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.value-card { background: white; border-radius: 10px; padding: 28px 24px; border: 1px solid var(--border); text-align: center; transition: all .2s; }
.value-card:hover { box-shadow: 0 6px 24px rgba(15,39,68,0.08); transform: translateY(-2px); }
.value-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  padding: 110px 5% 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--slate) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom:-1px; left:0; right:0; height:50px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero::before { content: ''; position: absolute; inset:0; background: radial-gradient(ellipse at 70% 40%, rgba(58,158,143,0.15) 0%, transparent 55%); }
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.page-hero-inner .hero-tag { margin-bottom: 16px; }
.page-hero-inner h1 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px; }
.page-hero-inner h1 span { color: var(--teal-light); }
.page-hero-inner p { color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.75; max-width: 560px; margin: 0 auto; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 56px 5% 0; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .name { font-family: 'Lora', serif; color: white; font-size: 1.05rem; font-weight: 700; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.36); line-height: 1.72; max-width: 280px; }
.footer-col h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-col .footer-cta-btn {
  background: var(--teal); color: white !important; padding: 10px 16px;
  border-radius: 6px; font-weight: 600 !important; margin-top: 8px;
  display: inline-block; text-align: center; font-size: 0.82rem !important;
}
.footer-col .footer-cta-btn:hover { background: var(--teal-light) !important; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.76rem; color: rgba(255,255,255,0.22); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ─── BREADCRUMB ─── */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 14px 0; font-size: 0.8rem; color: var(--text-light); }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ─── STICKY MOBILE CALL ─── */
#sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--teal); padding: 14px 20px; text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
#sticky-call a { color: white; font-family: 'Outfit', sans-serif; font-size: 0.98rem; font-weight: 700; text-decoration: none; }

/* ─── ANIMATIONS ─── */
.fade { opacity:0; transform:translateY(20px); animation: fadeUp .65s forwards; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
.d1{animation-delay:.08s} .d2{animation-delay:.2s} .d3{animation-delay:.32s} .d4{animation-delay:.44s} .d5{animation-delay:.56s}

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-right .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .intro-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .night-inner { grid-template-columns: 1fr; gap: 28px; }
  .fg-row { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .hero, .hero-video-wrap { padding: 110px 5% 70px; }
  .sec { padding: 56px 5%; }
  nav { padding: 0 4%; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #sticky-call { display: block; }
  body { padding-bottom: 56px; }
  .trust-inner { gap: 12px; }
  .svc-grid { grid-template-columns: 1fr; }
}
