/* ============================================================
   ORLANDO POWER PRESSURE WASH — styles.css
   Beach House Palette (Sherwin Williams)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --coral:        #c9705a;   /* terracotta/coral */
  --coral-light:  #d98a76;
  --coral-dark:   #b05a45;
  --navy:         #2e4a6e;   /* deep coastal navy */
  --navy-dark:    #1e3250;
  --navy-mid:     #3a5a82;
  --sky:          #7aabca;   /* pale sky blue */
  --sky-light:    #a8cde0;
  --sky-pale:     #ddeef7;
  --sage:         #8fb5a0;   /* soft sage green */
  --sage-light:   #b8d4c5;
  --sage-pale:    #e8f2ed;
  --cream:        #f0e8cc;   /* warm sandy cream */
  --cream-dark:   #e0d4a8;
  --cream-pale:   #faf6ec;
  --peach:        #d4a882;   /* soft peach/tan */
  --peach-light:  #e4c4a8;
  --white:        #ffffff;
  --off-white:    #faf8f4;
  --text:         #111111;
  --text-mid:     #333333;
  --text-light:   #555555;
}

/* ── GLOBAL TEXT OVERRIDES ── */
.about p, .services p, .reviews p, .faq .faq-a,
.section-desc { color: #333333 !important; }
.perk-text .desc, .reviewer-info .loc,
.reviews-count, .form-note { color: #555555 !important; }
.perk-text .title, .service-card h3,
.faq-q, .reviewer-info .name { color: #111111 !important; }

/* Dark/navy backgrounds → bright white text */
.trust-strip .trust-item,
.process-step p, .process-step h4,
.service-area .section-desc,
.area-item, .footer-brand p,
.footer-col ul li a,
.footer-contact-item span { color: rgba(255,255,255,0.92) !important; }
.top-bar, .top-bar .badge { color: rgba(255,255,255,0.9) !important; }

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── SCROLL OFFSET: compensate for sticky header (166px tall) ── */
#about,
#services,
#gallery,
#reviews,
#service-area,
#faq,
#estimate {
  scroll-margin-top: 166px;
}

/* ── PALETTE STRIP ── */
.palette-strip { display: flex; height: 8px; }
.palette-strip span { flex: 1; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.top-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar strong { color: #ffffff; }
.top-bar a { color: var(--peach-light); text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: #ffffff; }
.top-bar .badges { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar .badge { display: flex; align-items: center; gap: 6px; }
.top-bar .badge::before { content: '★'; color: var(--peach-light); font-size: 12px; }

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(46,74,110,0.1);
  border-bottom: 3px solid var(--coral);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 166px;
}
.logo { text-decoration: none; display: block; }
.logo img { height: 150px; width: auto; display: block; }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
nav a:hover { color: var(--coral); background: rgba(201,112,90,0.07); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.5; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(46,74,110,0.15);
  min-width: 210px;
  border: 1px solid var(--sky-pale);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
}
.dropdown-menu a:hover { background: var(--cream-pale); color: var(--coral); }

.header-cta {
  background: var(--coral) !important;
  color: white !important;
  padding: 11px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(201,112,90,0.35) !important;
  transition: all 0.2s !important;
}
.header-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(201,112,90,0.45) !important;
}

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

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 200;
  flex-direction: column;
  padding: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  margin-bottom: 24px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a.mobile-cta {
  color: var(--coral-light);
  border: none;
  margin-top: 18px;
  font-style: italic;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 640px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(30,50,80,0.72) 0%, rgba(46,74,110,0.62) 50%, rgba(46,74,110,0.38) 100%);
}
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(120%) scale(0.8); opacity: 0; }
  20%  { opacity: 0.08; }
  80%  { opacity: 0.06; }
  100% { transform: translateY(-120%) scale(1.1); opacity: 0; }
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,112,90,0.2);
  border: 1px solid rgba(201,112,90,0.5);
  color: var(--peach-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-badge::before { content: '★'; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: white;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--coral-light); font-style: italic; display: block; }
.hero h1 span { color: var(--sky-light); display: block; }
.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.btn-coral {
  background: var(--coral);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(201,112,90,0.42);
  transition: all 0.25s;
  display: inline-block;
  letter-spacing: 0.02em;
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(201,112,90,0.55);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

.hero-stats { display: flex; gap: 36px; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── HERO FORM ── */
.hero-form-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 28px 80px rgba(30,50,80,0.3);
  border-top: 5px solid var(--coral);
}
.hero-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-form-card p { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--sky-pale);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--sky); background: white; }
.form-btn {
  width: 100%;
  padding: 15px;
  background: var(--coral);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
  box-shadow: 0 4px 18px rgba(201,112,90,0.38);
}
.form-btn:hover { background: var(--coral-dark); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 10px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 20px 0; }
.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.trust-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ── SECTIONS SHARED ── */
section { padding: 96px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section-tag {
  display: inline-block;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 18px;
}
.section-title .accent { color: var(--coral); }
.section-title .sky { color: var(--sky); }
.section-desc { font-size: 16px; line-height: 1.75; color: #333333; max-width: 600px; }

/* ── ABOUT ── */
.about { background: var(--cream-pale); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(46,74,110,0.15);
  display: block;
}
.about-swatch {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.about-swatch-1 { width: 80px; height: 80px; background: var(--coral); bottom: -20px; left: -20px; }
.about-swatch-2 { width: 54px; height: 54px; background: var(--sky); top: -18px; right: -18px; }
.about-swatch-3 { width: 38px; height: 38px; background: var(--sage); top: 30px; right: 22px; }
.about-badge {
  position: absolute;
  bottom: 30px;
  right: -28px;
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: 0 12px 36px rgba(30,50,80,0.3);
  text-align: center;
}
.about-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}
.about-badge .sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border-radius: 14px;
  padding: 18px;
  border: 1.5px solid rgba(122,171,202,0.2);
  transition: all 0.25s;
}
.perk:hover {
  box-shadow: 0 8px 26px rgba(46,74,110,0.1);
  border-color: var(--sky-light);
  transform: translateY(-2px);
}
.perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk-icon svg { width: 20px; height: 20px; fill: white; }
.perk-text .title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.perk-text .desc { font-size: 12px; color: #444444; line-height: 1.4; }

/* ── SERVICES ── */
.services { background: white; }
.services-header { margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(122,171,202,0.2);
  transition: all 0.3s;
  background: white;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(46,74,110,0.12);
  border-color: var(--sky-light);
}
.service-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-body { padding: 26px; }
.service-color-bar { height: 4px; margin-bottom: 20px; border-radius: 2px; }
.service-ico-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.service-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-ico svg { width: 20px; height: 20px; fill: white; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: #333333; line-height: 1.65; margin-bottom: 18px; }

/* ── PROCESS ── */
.process { background: var(--navy); padding: 96px 0; }
.process .section-title { color: white; }
.process .section-tag { color: var(--sky-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--sky-light), var(--sage), var(--peach));
  opacity: 0.4;
}
.process-step { text-align: center; padding: 0 20px; }
.step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.65; }

/* ── GALLERY ── */
.gallery { background: var(--cream-pale); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-top: 44px;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,74,110,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── REVIEWS ── */
.reviews { background: white; }
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.rating-summary { display: flex; align-items: center; gap: 16px; }
.big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stars-col { display: flex; flex-direction: column; gap: 4px; }
.stars { color: var(--coral); font-size: 20px; letter-spacing: 2px; }
.reviews-count { font-size: 13px; color: var(--text-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card {
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid rgba(122,171,202,0.2);
  transition: all 0.25s;
}
.review-card:hover {
  box-shadow: 0 10px 32px rgba(46,74,110,0.1);
  border-color: var(--sky-light);
  transform: translateY(-3px);
}
.review-stars { color: var(--coral); font-size: 14px; margin-bottom: 14px; }
.review-text { font-size: 14px; line-height: 1.7; color: #222222; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
}
.reviewer-info .name { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer-info .loc { font-size: 12px; color: var(--text-light); }

/* ── SERVICE AREA ── */
.service-area { background: var(--navy); color: white; }
.service-area .section-title { color: white; }
.service-area .section-tag { color: var(--sky-light); }
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.area-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.service-area-map {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.map-placeholder svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.2); margin-bottom: 10px; }

/* ── FAQ ── */
.faq { background: var(--cream-pale); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(122,171,202,0.18);
}
.faq-q {
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  user-select: none;
}
.faq-q:hover { background: rgba(122,171,202,0.05); }
.faq-q .icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px;
  color: #333333;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { background: rgba(122,171,202,0.06); color: var(--navy-mid); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--coral); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,4vw,52px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 16px; }
.btn-navy {
  background: var(--navy);
  color: white;
  font-size: 17px;
  font-weight: 700;
  padding: 17px 42px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(30,50,80,0.35);
  transition: all 0.25s;
  display: inline-block;
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(30,50,80,0.45);
}
.cta-phone { color: white; font-size: 20px; font-weight: 700; text-decoration: none; opacity: 0.92; }
.cta-phone:hover { opacity: 1; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 76px 0 0; color: rgba(255,255,255,0.88); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-logo img { height: 58px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 22px; max-width: 300px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--coral); color: white; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--peach-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; }
.footer-contact-item .fci-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-item .fci-dot svg { width: 10px; height: 10px; fill: white; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--peach-light); }

/* ── PAGE MODALS (About, Privacy, Terms) ── */
.page-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(30,50,80,0.55);
  overflow-y: auto;
  padding: 40px 20px;
}
.page-modal.open { display: flex; justify-content: center; align-items: flex-start; }
.page-modal-inner {
  background: #fff;
  border-radius: 20px;
  max-width: 860px;
  width: 100%;
  padding: 56px 64px;
  position: relative;
  box-shadow: 0 28px 80px rgba(30,50,80,0.22);
  margin: auto;
}
.page-modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.page-modal-close:hover { color: var(--coral); }
.page-modal-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.page-modal-inner .page-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 36px;
  border-bottom: 2px solid var(--sky-pale);
  padding-bottom: 20px;
}
.page-modal-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 10px;
}
.page-modal-inner h3 { font-size: 1rem; font-weight: 700; color: var(--navy-mid); margin: 20px 0 6px; }
.page-modal-inner p { font-size: 15px; color: #333; line-height: 1.75; margin-bottom: 12px; }
.page-modal-inner ul { padding-left: 22px; margin-bottom: 14px; }
.page-modal-inner ul li { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 4px; }
.page-modal-inner .page-footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid var(--sky-pale);
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}
.page-modal-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.page-modal-perk {
  background: var(--cream-pale);
  border-radius: 12px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
}
.page-modal-perk strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.page-modal-perk span { font-size: 13px; color: var(--text-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.75s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content > *:nth-child(3) { animation-delay: 0.34s; }
.hero-content > *:nth-child(4) { animation-delay: 0.46s; }
.hero-content > *:nth-child(5) { animation-delay: 0.58s; }
.hero-form-card { animation: fadeUp 0.75s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  #about, #services, #gallery,
  #reviews, #service-area, #faq, #estimate {
    scroll-margin-top: 90px;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 500px; }
  .about-grid, .service-area-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  nav { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item { height: 200px; }
  .about-badge { right: 0; }
}
@media (max-width: 600px) {
  .services-grid, .footer-grid { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .about-swatch-1, .about-swatch-2, .about-swatch-3 { display: none; }
}
@media (max-width: 680px) {
  .page-modal-inner { padding: 36px 24px; }
  .page-modal-inner h1 { font-size: 1.7rem; }
}
