/* ============================================
   Camden Surveyors - Main Stylesheet
   camdensurveyors.com
   ============================================ */

/* --- CSS Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d2240;
  --navy-mid:   #163461;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --white:      #ffffff;
  --off-white:  #f7f5f0;
  --light-grey: #e8e5df;
  --mid-grey:   #8a8a8a;
  --dark-grey:  #333333;
  --text:       #222222;
  --success:    #2e7d32;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(13,34,64,.12);
  --shadow-lg:  0 8px 48px rgba(13,34,64,.18);
  --transition: .3s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-w:      1200px;
}

/* --- Base --- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--grey { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-transform: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 680px; margin: 0 auto; color: var(--mid-grey); font-size: 1.05rem; }
.section--navy .section-header p { color: rgba(255,255,255,.72); }
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  color: var(--navy);
  font-family: var(--font-head);
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
}
.logo-tagline {
  display: block;
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(201,168,76,.12); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,34,64,.88) 0%, rgba(13,34,64,.60) 60%, rgba(13,34,64,.30) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  padding: 100px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.hero-text { color: var(--white); padding-top: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text h1 span { color: var(--gold); }
.hero-text .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
  margin-top: 4px;
}
.hero-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-form-box h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-form-box p {
  font-size: .85rem;
  color: var(--mid-grey);
  margin-bottom: 24px;
}
.accreditations {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-grey);
}
.accreditations .label-sm {
  font-size: .75rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  white-space: nowrap;
}
.accred-badge {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: .5px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 22px 0;
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
}
.trust-item i { color: var(--gold); font-size: 1.1rem; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--light-grey);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 28px; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--mid-grey); margin-bottom: 18px; }
.service-card .tag {
  display: inline-block;
  background: rgba(13,34,64,.08);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 0 4px 6px 0;
  letter-spacing: .3px;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold); }

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .88rem; color: var(--mid-grey); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  position: relative;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-card::before {
  content: '"';
  position: absolute; top: 20px; right: 28px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: .92rem; color: var(--dark-grey); font-style: italic; margin-bottom: 20px; }
.reviewer {
  display: flex; align-items: center; gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.reviewer-meta { font-size: .78rem; color: var(--mid-grey); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--mid-grey);
  margin-top: 4px;
}
.google-badge i { color: #4285F4; }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.team-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.team-card:hover .team-card-img-wrap img { transform: scale(1.05); }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-card p { font-size: .85rem; color: var(--mid-grey); }

/* ============================================
   STATS / NUMBERS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-box {
  background: rgba(255,255,255,.07);
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-box:last-child { border-right: none; }
.stat-box .num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-box .lbl { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-grey);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  gap: 16px;
  user-select: none;
}
.faq-q i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .92rem;
  color: var(--dark-grey);
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 22px;
}

/* ============================================
   AREAS MAP
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
  cursor: default;
}
.area-chip:hover, .area-chip.highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.area-chip.highlight { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--mid-grey);
  margin-bottom: 12px;
}
.blog-cat {
  background: rgba(201,168,76,.15);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--navy); transition: color var(--transition); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: .88rem; color: var(--mid-grey); flex: 1; }
.blog-card .read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap var(--transition);
}
.blog-card .read-more:hover { gap: 12px; color: var(--gold); }

/* ============================================
   CONTACT FORM / CTA
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,.75); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.contact-form-wrap > p { color: var(--mid-grey); font-size: .85rem; margin-bottom: 24px; }

/* --- HubSpot form overrides --- */
.hs-form fieldset { max-width: 100% !important; }
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea,
.hs-form select {
  width: 100% !important;
  border: 1px solid var(--light-grey) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: .9rem !important;
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  transition: border-color var(--transition) !important;
}
.hs-form input:focus,
.hs-form textarea:focus { border-color: var(--navy) !important; outline: none !important; }
.hs-submit input[type="submit"] {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background var(--transition) !important;
  font-family: var(--font-body) !important;
}
.hs-submit input[type="submit"]:hover { background: var(--gold-light) !important; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #080f1a;
  color: rgba(255,255,255,.65);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name { font-size: 1.3rem; }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-accreds { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.footer-accred {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .5px;
}
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal a {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  margin-left: 20px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
  padding: 110px 0 20px;
  background: var(--navy);
}
.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb nav a { color: rgba(255,255,255,.7); }
.breadcrumb nav a:hover { color: var(--gold); }
.breadcrumb nav i { font-size: .7rem; }
.breadcrumb nav .current { color: var(--gold); }

/* ============================================
   PAGE HERO (interior)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(201,168,76,0.05)"/><circle cx="10" cy="80" r="30" fill="rgba(201,168,76,0.04)"/></svg>') no-repeat center / cover;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.animate-up { animation: fadeInUp .7s ease both; }
.animate-up-d1 { animation: fadeInUp .7s .1s ease both; }
.animate-up-d2 { animation: fadeInUp .7s .2s ease both; }
.animate-up-d3 { animation: fadeInUp .7s .3s ease both; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-wrap h2 { margin: 40px 0 16px; }
.article-wrap h3 { margin: 32px 0 12px; }
.article-wrap p { margin-bottom: 1.2rem; line-height: 1.85; }
.article-wrap ul, .article-wrap ol {
  margin: 0 0 1.2rem 1.5rem;
  list-style: disc;
}
.article-wrap li { margin-bottom: .5rem; }
.article-img {
  border-radius: var(--radius-lg);
  width: 100%;
  margin: 32px 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .83rem;
  color: var(--mid-grey);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-grey);
}
.article-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}
.article-meta .author img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
blockquote {
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  padding: 20px 28px;
  margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--light-grey);
}
.sidebar-card h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-card ul li {
  border-bottom: 1px solid var(--light-grey);
  padding: 10px 0;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--navy); font-size: .88rem; }
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.toc {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.toc h4 { margin-bottom: 14px; font-size: .95rem; }
.toc ol { margin-left: 1.2rem; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--navy); font-size: .88rem; }
.toc a:hover { color: var(--gold); }

/* ============================================
   INTERACTIVE MAP PLACEHOLDER
   ============================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 480px;
  background: var(--light-grey);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline { position: relative; max-width: 680px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: var(--light-grey);
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--light-grey);
}
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p { font-size: .9rem; color: var(--mid-grey); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-box { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-box:nth-child(2n) { border-right: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; position: fixed; inset: 0; top: 70px; background: var(--navy); flex-direction: column; padding: 32px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 14px 16px; border-radius: var(--radius); }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .related-posts-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-bar-inner { gap: 16px; }
}
@media (max-width: 480px) {
  .services-grid, .reviews-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
}
