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

:root {
  --navy:   #0d2340;
  --navy2:  #122d52;
  --gold:   #c9973a;
  --gold2:  #e6b55a;
  --light:  #f7f9fc;
  --white:  #ffffff;
  --gray:   #64748b;
  --gray2:  #94a3b8;
  --text:   #1e293b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,35,64,.10);
  --shadow-lg: 0 8px 40px rgba(13,35,64,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Utility ──────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  letter-spacing: .01em;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,151,58,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,35,64,.3); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--light); }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}

/* ─── Top Bar ──────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 9px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold2); font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ─── Header / Nav ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,35,64,.06);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-img { width: 50px; height: 40px; display: block; flex-shrink: 0; object-fit: contain; }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.logo-text span { font-size: .75rem; color: var(--gray); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 600; color: var(--gray); padding: 8px 14px; border-radius: 8px; transition: all .18s; }
.nav-links a:hover { color: var(--navy); background: var(--light); }
.nav-links a.active { color: var(--navy); background: var(--light); }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; }
.nav-cta:hover { background: var(--navy2) !important; }

/* ─── Hamburger ────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s; }

/* ─── Breadcrumb ───────────────────────────────────── */
.breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: .82rem;
  color: var(--gray);
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray2); }

/* ─── Homepage Hero ────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(13,35,64,.93) 0%, rgba(26,58,107,.88) 55%, rgba(13,35,64,.95) 100%),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,151,58,.18); border: 1px solid rgba(201,151,58,.35); color: var(--gold2); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.12; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 500px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--gold2); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* Hero rating / availability */
.hero-rating { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 8px 16px; margin-bottom: 20px; font-size: .85rem; color: rgba(255,255,255,.9); }
.hero-rating-stars { display: flex; gap: 2px; }
.hero-rating-stars svg { fill: #fbbf24; }
.hero-rating strong { font-weight: 800; color: var(--white); }
.hero-rating span { color: rgba(255,255,255,.65); }
.avail-dot { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.avail-dot-pulse { width: 9px; height: 9px; background: #22c55e; border-radius: 50%; position: relative; flex-shrink: 0; }
.avail-dot-pulse::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: rgba(34,197,94,.4); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }

/* Hero card */
.hero-card { background: var(--white); border-radius: 20px; padding: 36px 32px; box-shadow: var(--shadow-lg); color: var(--text); }
.hero-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.hero-card p { font-size: .88rem; color: var(--gray); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .92rem; color: var(--text); background: var(--white); transition: border-color .18s; outline: none; font-family: inherit; }
.form-group input:focus, .form-group select:focus { border-color: var(--navy); }
.hero-card .btn-primary { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; margin-top: 4px; }
.card-note { text-align: center; font-size: .78rem; color: var(--gray2); margin-top: 12px; }

/* ─── Page Hero (inner pages) ──────────────────────── */
.page-hero {
  background:
    linear-gradient(135deg, rgba(13,35,64,.9) 0%, rgba(26,58,107,.85) 60%, rgba(13,35,64,.92) 100%),
    var(--page-hero-img, url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80&auto=format&fit=crop')) center/cover no-repeat;
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.12; margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; color: var(--gold2); }
.page-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 600px; line-height: 1.7; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.page-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.page-hero-stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--gold2); }
.page-hero-stat span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ─── Trust Bar ────────────────────────────────────── */
.trust-bar { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; color: var(--navy); }
.trust-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ─── Social Proof Strip ───────────────────────────── */
.proof-strip { background: var(--navy); padding: 18px 0; }
.proof-strip .container { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600; }
.proof-stars { display: flex; gap: 2px; }
.proof-stars svg { fill: #fbbf24; }
.proof-divider { width: 1px; height: 28px; background: rgba(255,255,255,.15); }

/* ─── How It Works ─────────────────────────────────── */
.how { padding: 80px 0; background: var(--white); }
.how-header { text-align: center; margin-bottom: 52px; }
.how-header .section-sub { margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 28px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold)); opacity: .35; }
.how-step { text-align: center; position: relative; }
.how-num { width: 56px; height: 56px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.15rem; font-weight: 900; color: var(--gold); position: relative; z-index: 1; }
.how-step img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; }
.how-step h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ─── Services Grid ────────────────────────────────── */
.services { padding: 90px 0; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 0; transition: all .25s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-img { width: 100%; height: 190px; object-fit: cover; display: block; }
.service-card-body { padding: 24px 24px 26px; }
.service-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: .88rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--navy); }

/* ─── Service Page Content ─────────────────────────── */
.svc-overview {
  padding: 80px 0;
}
.svc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-overview-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-overview-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.svc-overview-content .section-sub { margin-bottom: 28px; }
.svc-check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.svc-check-item { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--text); line-height: 1.5; }
.svc-check-item::before { content: ''; width: 20px; height: 20px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230d2340' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.svc-features { padding: 80px 0; background: var(--light); }
.svc-features-header { text-align: center; margin-bottom: 48px; }
.svc-features-header .section-sub { margin: 0 auto; }
.svc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-feature-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .22s; }
.svc-feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.svc-feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-feature-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.svc-feature-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ─── Why Us ───────────────────────────────────────── */
.why { background: var(--navy); color: var(--white); padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-content .section-title { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,.65); }
.why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 16px; }
.why-check { width: 28px; height: 28px; background: rgba(201,151,58,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.why-item strong { display: block; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.why-item span { font-size: .87rem; color: rgba(255,255,255,.6); }
.why-right { display: flex; flex-direction: column; gap: 16px; }
.why-photo-wrap { position: relative; border-radius: 16px; overflow: hidden; flex: 1; min-height: 260px; }
.why-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,35,64,.7) 0%, transparent 55%); }
.why-photo-badge { position: absolute; bottom: 18px; left: 18px; background: var(--gold); color: var(--navy); font-size: .82rem; font-weight: 800; padding: 8px 16px; border-radius: 100px; letter-spacing: .03em; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px; transition: background .2s; }
.why-card:hover { background: rgba(255,255,255,.1); }
.why-card-num { font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.why-card strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.why-card span { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ─── Service Area ─────────────────────────────────── */
.area { padding: 90px 0; background: var(--light); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.counties { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.county-badge { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: .88rem; font-weight: 600; color: var(--navy); }
.county-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.area-photo-wrap { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1; }
.area-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.area-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13,35,64,.85) 0%, transparent 100%); padding: 28px 24px 22px; color: var(--white); }
.area-photo-caption strong { display: block; font-size: 1.1rem; font-weight: 800; }
.area-photo-caption span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ─── Cities ───────────────────────────────────────── */
.cities-section { background: var(--light); padding: 52px 0; border-top: 1px solid var(--border); }
.cities-section h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray2); text-align: center; margin-bottom: 20px; }
.cities-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.city-tag { background: var(--white); border: 1.5px solid var(--border); border-radius: 100px; padding: 6px 14px; font-size: .82rem; font-weight: 600; color: var(--navy); transition: all .18s; }
.city-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Testimonials ─────────────────────────────────── */
.testimonials { padding: 90px 0; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { fill: var(--gold); }
.testimonial-card p { font-size: .92rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.author-avatar.gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); }
.author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-loc { font-size: .8rem; color: var(--gray2); }

/* ─── FAQ ──────────────────────────────────────────── */
.faq { padding: 90px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left .section-sub { margin-bottom: 28px; }
.faq-cta-card { background: var(--navy); border-radius: 16px; padding: 28px; margin-top: 32px; }
.faq-cta-card p { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 16px; line-height: 1.6; }
.faq-cta-card .btn-primary { width: 100%; justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; padding: 20px 22px; text-align: left; font-family: inherit; font-size: .95rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background .18s; }
.faq-q:hover { background: var(--light); }
.faq-q.open { background: var(--light); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .18s, transform .25s; }
.faq-q.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-q.open .faq-icon svg { stroke: var(--navy); }
.faq-a { display: none; padding: 0 22px 20px; font-size: .9rem; color: var(--gray); line-height: 1.7; }
.faq-a.open { display: block; }

/* ─── CTA Banner ───────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--gold) 0%, #b5842d 100%); padding: 72px 0; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--navy); max-width: 540px; line-height: 1.2; }
.cta-banner p { color: rgba(13,35,64,.7); margin-top: 10px; font-size: .95rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Contact ──────────────────────────────────────── */
.contact { padding: 90px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info .section-sub { margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method strong { display: block; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray2); margin-bottom: 2px; }
.contact-method a, .contact-method span { font-size: 1rem; font-weight: 700; color: var(--navy); }
.contact-method a:hover { color: var(--gold); }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .92rem; color: var(--text); background: var(--white); font-family: inherit; resize: vertical; min-height: 100px; outline: none; transition: border-color .18s; }
textarea:focus { border-color: var(--navy); }
.contact-form .btn-primary { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; margin-top: 4px; }

/* ─── Footer ───────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }
.footer-phone { font-size: 1.2rem; font-weight: 800; color: var(--gold2); }
.footer-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold2); }

/* ─── Sticky Mobile CTA ────────────────────────────── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 2px solid var(--gold); padding: 12px 20px; align-items: center; justify-content: space-between; gap: 10px; z-index: 999; box-shadow: 0 -6px 24px rgba(13,35,64,.3); }
.sticky-cta-text strong { display: block; color: var(--white); font-size: .9rem; font-weight: 800; line-height: 1.1; }
.sticky-cta-text span { font-size: .75rem; color: rgba(255,255,255,.6); }
.sticky-cta .btn-primary { padding: 11px 20px; font-size: .88rem; white-space: nowrap; flex-shrink: 0; }

/* ─── Float Call Button ────────────────────────────── */
.float-call { display: none; position: fixed; bottom: 32px; right: 28px; z-index: 998; background: #22c55e; color: var(--white); width: 60px; height: 60px; border-radius: 50%; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(34,197,94,.45); transition: transform .2s, box-shadow .2s; border: 3px solid rgba(255,255,255,.3); }
.float-call:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(34,197,94,.55); }

/* ─── Section Utilities (service pages) ────────────── */
.section { padding: 80px 0; background: var(--white); }
.section-alt { padding: 80px 0; background: var(--light); }
.section-overview { padding: 80px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1rem; color: var(--gray); line-height: 1.7; }
.section-label { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* ─── Breadcrumb Bar ────────────────────────────────── */
.breadcrumb-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: .82rem; color: var(--gray); }
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-bar a { color: var(--gold); font-weight: 600; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-current { color: var(--gray); }

/* ─── Page Hero Content ─────────────────────────────── */
.page-hero-content { position: relative; }
.page-hero-overlay { display: none; }

/* ─── Two-column utility (timeline/pricing cards, etc.) ─── */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 800px; margin: 0 auto; }

/* ─── Overview Grid (service pages) ────────────────── */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.overview-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.overview-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.overview-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.overview-content h3, .checklist-heading { font-size: .95rem; font-weight: 700; color: var(--navy); margin: 24px 0 12px; }
.overview-content p { font-size: .95rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--text); line-height: 1.5; }
.check-list li svg { flex-shrink: 0; margin-top: 3px; stroke: var(--gold); }

/* ─── Features Grid (service pages) ────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .22s; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { stroke: var(--gold2) !important; }
.feature-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ─── Process Steps ─────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.process-step { display: flex; gap: 28px; align-items: flex-start; padding: 32px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-step-num { width: 48px; height: 48px; min-width: 48px; background: var(--navy); color: var(--gold); font-size: 1.1rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-step-content h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.process-step-content p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ─── Testimonials (service pages alt classes) ──────── */
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); font-size: 1.1rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: .85rem; flex-shrink: 0; }

/* ─── CTA Banner (service page variant) ────────────── */
.cta-banner-content { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--navy); max-width: 540px; line-height: 1.2; }
.cta-banner-text p { color: rgba(13,35,64,.7); margin-top: 10px; font-size: .95rem; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-light { background: transparent; color: var(--navy); border: 2px solid rgba(13,35,64,.45); font-weight: 700; }
.btn-outline-light:hover { background: rgba(13,35,64,.08); border-color: var(--navy); }

/* ─── Contact Form (centered / full-width) ──────────── */
.contact-form-wrap { max-width: 720px; }
.contact-form-centered { margin: 0 auto; }
.btn-full { width: 100%; justify-content: center; }

/* ─── FAQ Arrow (service pages) ─────────────────────── */
.faq-arrow { transition: transform .25s; flex-shrink: 0; color: var(--gray2); }
.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--navy); }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-photo-wrap { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .svc-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-features-grid { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-content { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 24px; box-shadow: var(--shadow); }
  header { position: relative; }
  nav { position: relative; }
  .hamburger { display: flex; }
  .hero, .page-hero { padding: 56px 0 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .counties { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
  .proof-strip .container { gap: 20px; }
  .proof-divider { display: none; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-banner-content { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  /* Hero form card — full width on phones */
  .hero-grid { gap: 24px; }
  .hero-card { max-width: 100%; }
  /* Two-column utility — stack on phones */
  .two-col-grid { grid-template-columns: 1fr !important; }
  /* Service overview — tighter spacing */
  .svc-overview-grid { gap: 32px; }
  .svc-overview-img { order: -1; }
  /* Process steps */
  .process-step { gap: 16px; }
  /* Cities tag wrap */
  .cities-grid { gap: 8px; }
  .city-tag { font-size: .78rem; padding: 6px 12px; }
  /* Section spacing */
  .section, .section-alt { padding: 56px 0; }
  /* Why cards single col on very small screens */
  .why-cards { grid-template-columns: 1fr; }
}

@media (min-width: 641px) {
  .float-call { display: flex; }
}
