/* ═══════════════════════════════════════════
   KC SPAS & POOLS — RESORT OASIS THEME
   ═══════════════════════════════════════════ */

:root {
  --teal:     #00b8a2;
  --teal-lt:  #00d4bc;
  --coral:    #e8603c;
  --gold:     #c8960a;
  --gold-dk:  #b07d00;
  --sand:     #fafaf7;
  --sand-2:   #f4f0e8;
  --ocean:    #0d2535;
  --ocean-2:  #122e42;
  --white:    #ffffff;
  --text:     #1a2e3b;
  --text-mid: #4a6678;
  --text-lt:  #8aa3b2;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--sand); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
em { font-style: italic; color: var(--teal); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.light-eyebrow { color: rgba(255,255,255,.6); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-mid); line-height: 1.7; font-size: 1.05rem; }

.light-h2 { color: #fff; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,184,162,.35);
}
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,184,162,.4); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--teal); color: #fff; }

.btn-full { width: 100%; text-align: center; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
  padding: .8rem 0;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  border-radius: 8px;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal-lt) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: background .3s; border-radius: 2px; }
.nav.scrolled .hamburger span { background: var(--text); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.dd-trigger { display: flex !important; align-items: center; gap: .3rem; white-space: nowrap; cursor: pointer; }
.dd-arrow { font-size: .62rem; transition: transform .22s; display: inline-block; opacity: .7; }
.nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }
.dd-menu {
  display: none;
  position: absolute; top: calc(100% + .9rem); left: 50%; transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden; z-index: 200;
}
.nav-dropdown:hover .dd-menu { display: block; }
.dd-menu a {
  display: block; padding: .78rem 1.25rem;
  font-size: .875rem; font-weight: 500;
  color: var(--text-mid) !important;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s, color .15s; white-space: nowrap;
}
.dd-menu a:last-child { border-bottom: none; }
.dd-menu a:hover { background: var(--sand); color: var(--teal) !important; }
.dd-menu a:first-child { font-weight: 700; color: var(--text) !important; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,30,50,.72) 0%, rgba(5,20,35,.55) 60%, rgba(0,100,90,.18) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 8rem 2rem 4rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--teal-lt); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem; letter-spacing: .04em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.5));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hsb-inner {
  max-width: 1240px; margin: 0 auto; padding: 1.4rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.hstat {
  flex: 1; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center;
}
.hstat-n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.hstat-plus { font-size: 1.2rem; font-weight: 700; color: var(--teal-lt); margin-left: 2px; }
.hstat-l { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .25rem; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.hstat-cta { flex: 1; display: flex; align-items: center; justify-content: center; }
.hstat-btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,184,162,.45);
  transition: background .2s, transform .2s;
}
.hstat-btn:hover { background: var(--teal-lt); transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,.06); }
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 1.2rem 0;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  padding: .5rem 1.8rem; text-transform: uppercase; letter-spacing: .08em;
}
.trust-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: rgba(0,0,0,.1); }

/* ── SERVICES ── */
.services-section { padding: 6rem 0 5rem; background: var(--sand); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.scard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.scard-icon { width: 44px; height: 44px; margin-bottom: 1.2rem; }
.scard-icon svg { width: 100%; height: 100%; }
.scard h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.scard p { color: var(--text-mid); line-height: 1.65; font-size: .92rem; margin-bottom: 1.2rem; }
.scard-link { font-size: .85rem; font-weight: 700; color: var(--teal); letter-spacing: .04em; }
.scard-link:hover { color: var(--teal-lt); }

/* ── MAINTENANCE PLANS ── */
.plans-section { position: relative; overflow: hidden; background: var(--ocean-2); }
.plans-photo { position: absolute; inset: 0; }
.plans-photo img { width: 100%; height: 100%; object-fit: cover; }
.plans-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,20,35,.95) 0%, rgba(5,25,40,.85) 100%);
}
.plans-content { position: relative; z-index: 2; padding: 6rem 0 5rem; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.plan-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.plan-popular { border-color: var(--teal); background: rgba(0,184,162,.08); }
.plan-badge {
  display: inline-block;
  background: var(--teal); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 50px; margin-bottom: 1rem;
}
.plan-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.plan-tag { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.plan-feats { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.plan-feats li { font-size: .9rem; color: rgba(255,255,255,.65); padding-left: 1.4rem; position: relative; line-height: 1.5; }
.plan-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plans-note { text-align: center; color: rgba(255,255,255,.35); font-size: .82rem; margin-top: 2rem; line-height: 1.6; }

.btn-outline-light-sm {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.75);
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-size: .87rem; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline-light-sm:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ── REPAIRS HIGHLIGHT ── */
.repairs-section { padding: 6rem 0; background: var(--sand); }
.repairs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.repairs-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.repairs-img img { width: 100%; height: 480px; object-fit: cover; }
.repairs-text h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); margin-bottom: 1rem; }
.repairs-text > p { color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }

.repair-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.repair-item { display: flex; gap: 1rem; align-items: flex-start; }
.ri-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: .15rem; }
.repair-item strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: .25rem; }
.repair-item p { color: var(--text-mid); font-size: .88rem; line-height: 1.55; margin: 0; }

/* ── PRODUCTS (secondary) ── */
.products-section { padding: 6rem 0; background: var(--sand-2); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img { height: 220px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 1.8rem; }
.product-body h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.product-body > p { color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; font-size: .92rem; }
.product-body .pool-feats { margin-bottom: 1.5rem; }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  height: 320px; overflow: hidden;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.2rem;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay span { color: #fff; font-weight: 600; font-size: .9rem; letter-spacing: .04em; }

/* pool-feats shared utility */
.pool-feats { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.pool-feats li { font-size: .9rem; color: var(--text-mid); padding-left: 1.2rem; position: relative; }
.pool-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── WHY KC ── */
.whyus-section { position: relative; overflow: hidden; background: var(--ocean); }
.whyus-photo { position: absolute; inset: 0; }
.whyus-photo img { width: 100%; height: 100%; object-fit: cover; }
.whyus-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,40,.92) 0%, rgba(10,25,40,.75) 100%);
}
.whyus-content { position: relative; z-index: 2; padding: 6rem 0; }
.whyus-inner { max-width: 960px; }
.why-text { margin-bottom: 3rem; }
.why-text h2 { font-size: clamp(2rem,4vw,2.8rem); }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card { padding: 1.8rem; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.why-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: rgba(0,184,162,.25); margin-bottom: .5rem; line-height: 1; }
.why-card h3 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.why-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.65; }

/* ── ABOUT ── */
.about-section { padding: 7rem 0; background: var(--sand); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-badge-1, .about-badge-2 {
  position: absolute;
  background: var(--white); border-radius: 50px;
  padding: .5rem 1.1rem; font-size: .78rem; font-weight: 700;
  box-shadow: var(--shadow); color: var(--text);
}
.about-badge-1 { top: 1.5rem; left: 1.5rem; }
.about-badge-2 { bottom: 1.5rem; right: 1.5rem; color: var(--teal); }

.about-text h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; font-size: .97rem; }

.about-contacts { margin-top: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.acp {
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem 1rem; border-radius: var(--radius);
  background: var(--sand-2); border: 1px solid rgba(0,0,0,.06);
  transition: border-color .2s;
}
.acp:hover { border-color: var(--teal); }
.acp-l { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-lt); min-width: 80px; }
.acp-v { font-size: .95rem; font-weight: 600; color: var(--teal); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 6rem 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.review-card {
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--sand); border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-featured { background: var(--ocean); border-color: transparent; grid-column: span 1; }

.rc-stars { color: #f5a623; font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.review-card blockquote { font-size: .93rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.5rem; font-style: italic; }
.review-featured blockquote { color: rgba(255,255,255,.7); }

.rc-author { display: flex; align-items: center; gap: .75rem; }
.rc-av-logo {
  width: 52px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center;
}
.rc-av-logo img { width: 100%; height: 100%; object-fit: contain; }
.rc-author strong { display: block; font-size: .9rem; }
.review-featured .rc-author strong { color: #fff; }
.rc-author span { font-size: .78rem; color: var(--text-lt); }
.review-featured .rc-author span { color: rgba(255,255,255,.4); }

/* ── FAQ ── */
.faq-section { padding: 6rem 0; background: var(--sand-2); }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.8rem; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1rem; margin-bottom: .75rem; color: var(--text); }
.faq-item p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }
.faq-item p a { color: var(--teal); font-weight: 600; }

/* ── CONTACT ── */
.contact-section { position: relative; background: var(--ocean-2); padding: 7rem 0; }
.contact-photo { position: absolute; inset: 0; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,40,.92) 0%, rgba(10,25,40,.85) 100%);
}
.contact-section .wrap { position: relative; z-index: 2; }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-left h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); margin-bottom: 1rem; }
.contact-left > p { color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: .8rem; }
.cd { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.7); }
.cd svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal); }
.cd strong { display: block; font-size: .8rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.cd a, .cd span { font-size: .95rem; color: rgba(255,255,255,.8); }
.cd a:hover { color: var(--teal-lt); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.fg label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); }
.fg input, .fg select, .fg textarea {
  padding: .75rem 1rem; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.12); font-family: var(--font-body);
  font-size: .93rem; color: var(--text); background: var(--sand);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,184,162,.12);
}
.fg textarea { resize: vertical; }

.form-note { font-size: .78rem; color: var(--text-lt); text-align: center; margin-top: .75rem; }
.form-success { text-align: center; padding: 2rem; }
.fs-icon { font-size: 2.5rem; color: var(--teal); margin-bottom: 1rem; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p { color: var(--text-mid); }

/* ── FOOTER ── */
.footer { background: var(--ocean); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-logo-img { height: 64px; width: auto; border-radius: 8px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 1.6; margin-bottom: 1.2rem; }

.social-row { display: flex; gap: .75rem; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: background .2s, color .2s; }
.social-row a svg { width: 16px; height: 16px; }
.social-row a:hover { background: var(--teal); color: #fff; }

.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: .95rem; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.4); font-size: .87rem; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; color: rgba(255,255,255,.25); font-size: .8rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-photo { opacity: 0; transition: opacity 1s ease; }
.reveal-photo.visible { opacity: 1; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1.5rem; box-shadow: var(--shadow); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav.scrolled .nav-links { background: var(--white); }
  .nav-links a { color: var(--text) !important; }
  .hamburger { display: flex; }
  .nav-dropdown .dd-menu { display: block; position: static; transform: none; box-shadow: none; border: none; border-left: 3px solid var(--teal); border-radius: 0; margin: .25rem 0 .25rem 1rem; min-width: auto; background: var(--sand); }
  .nav-dropdown .dd-menu a { padding: .55rem .9rem; font-size: .84rem; }
  .dd-arrow { display: none; }
  .hstat-div { display: none; }
  .hsb-inner { flex-wrap: wrap; gap: 1rem; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); height: 240px; }
  .repairs-inner { grid-template-columns: 1fr; gap: 3rem; }
  .repairs-img img { height: 300px; }
  .products-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-items { gap: .5rem; }
  .trust-sep { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
}
