/* =========================================
   RESET & BASE
   ========================================= */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{overflow-x:clip}
html{scroll-behavior:smooth}
body{-webkit-overflow-scrolling:touch}

:root {
  --bg:          #f7f4ef;
  --bg2:         #eef0f2;
  --bg3:         #e2edf2;
  --bg-dark:     #1B2A52;
  --bg-dark2:    #142040;
  --accent:      #29B8D5;
  --accent-dark: #1fa8c4;
  --accent-dim:  rgba(41,184,213,0.10);
  --accent-glow: rgba(41,184,213,0.20);
  --text:        #1B2A52;
  --text2:       #4a6080;
  --text-light:  #e8f0f5;
  --text-light2: #7a9ab8;
  --border:      #dce5ec;
  --border-accent: rgba(41,184,213,0.25);
  --shadow:      0 4px 32px rgba(27,42,82,0.09);
  --shadow-lg:   0 12px 48px rgba(27,42,82,0.14);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.accent { color: var(--accent); }

/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  overflow: visible;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  order: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  font-family: var(--font-display);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* Desktop dropdown */
.nav-has-dropdown {
  position: relative;
}
.nav-has-dropdown > a {
  cursor: default;
}
.nav-has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 300;
  list-style: none;
}
.nav-has-dropdown:hover .nav-submenu {
  display: block;
}
.nav-submenu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--text);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu li a:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-display);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-dropdown {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 24px;
  z-index: 199;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav-dropdown.open { display: block; }
.nav-dropdown ul { list-style: none; }
.nav-dropdown ul li { border-bottom: 1px solid var(--border); }
.nav-dropdown ul li a {
  display: flex;
  align-items: center;
  padding: 0.875rem 0;
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-display);
  min-height: 44px;
  font-size: 0.95rem;
}
.nav-dropdown-section {
  padding: 0.5rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
}

@media (max-width: 768px) {
  .nav-inner { justify-content: flex-start; gap: 0; }
  .nav-logo { order: 1; flex: 0 0 auto; margin-right: auto; }
  .nav-links { display: none; }
  .nav-cta { order: 2; padding: 0.5rem 1rem; font-size: 0.82rem; margin-right: 0.75rem; }
  .hamburger { display: flex; order: 3; }
}

/* =========================================
   HERO — BEFORE/AFTER SPLIT (index only)
   ========================================= */
.hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  max-height: 640px;
  overflow: hidden;
  margin-top: 0;
}
.hero-split {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero-before,
.hero-after {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-before img,
.hero-after img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-before img {
  filter: saturate(0.25) brightness(0.65) sepia(0.25);
}
@media (max-width: 768px) {
  .hero-half-label, .hero-divider { display: none; }
}
.hero-half-label {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem; white-space: nowrap;
}
.hero-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.7);
  z-index: 3; transform: translateX(-50%);
}
.hero-divider-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.55rem; font-weight: 800;
  letter-spacing: 0.06em; color: var(--text);
  text-transform: uppercase; text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(27,42,82,0.58);
  z-index: 4;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 0 2rem;
}
.hero-overlay-inner {
  max-width: 800px; margin: 0 auto;
  padding: 0 2rem; text-align: center;
}
.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(41,184,213,0.4);
  padding: 0.4rem 1rem; border-radius: 2rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 769px) {
  .hero { height: 100vh; max-height: none; }
  .hero-overlay { justify-content: flex-end; padding: 0 0 4rem; }
}
.hero-location {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.hero-overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.92; color: #ffffff; margin-bottom: 1.25rem;
}
.hero-overlay h1 .accent { color: var(--accent); }
.hero-overlay p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.65; max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* =========================================
   PAGE HERO (location/service pages)
   ========================================= */
.page-hero {
  background: var(--bg-dark);
  padding: 7rem 24px 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(41,184,213,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-light2);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light2); opacity: 0.5; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.0; color: #ffffff; margin-bottom: 1rem;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  line-height: 1.7; max-width: 620px; margin-bottom: 1.75rem;
}
.page-hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* =========================================
   QUICK FACTS BOX
   ========================================= */
.quick-facts {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}
.quick-facts h2 {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
@media (min-width: 600px) {
  .facts-grid { grid-template-columns: repeat(4, 1fr); }
}
.fact-item {}
.fact-label {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 0.25rem;
}
.fact-value {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--text);
  line-height: 1.3;
}

/* =========================================
   BODY CONTENT
   ========================================= */
.content-section {
  background: var(--bg);
  padding: 3rem 24px;
}
.content-section + .content-section { padding-top: 0; }
@media (min-width: 769px) {
  .content-section { padding: 4.5rem 24px; }
  .content-section + .content-section { padding-top: 0; }
}
.content-inner { max-width: 800px; margin: 0 auto; }
.content-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner p {
  color: var(--text2); line-height: 1.75;
  margin-bottom: 1.25rem; font-size: 1rem;
}
.content-inner ul {
  margin-bottom: 1.25rem; padding-left: 1.25rem;
  color: var(--text2); line-height: 1.75;
}
.content-inner ul li { margin-bottom: 0.4rem; }

/* =========================================
   SERVICE LIST (location pages)
   ========================================= */
.services-list {
  background: var(--bg2);
  padding: 3rem 24px;
}
@media (min-width: 769px) { .services-list { padding: 4.5rem 24px; } }
.services-list-inner { max-width: 1000px; margin: 0 auto; }
.services-list h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 0.5rem;
}
.services-list-sub {
  color: var(--text2); margin-bottom: 2rem; font-size: 1rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 769px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.svc-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
}
.svc-item p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; margin: 0; }

/* =========================================
   PROCESS STEPS (service pages)
   ========================================= */
.process-section {
  background: var(--bg-dark);
  padding: 3.5rem 24px;
}
@media (min-width: 769px) { .process-section { padding: 5rem 24px; } }
.process-inner { max-width: 800px; margin: 0 auto; }
.process-inner .section-badge {
  border-color: rgba(41,184,213,0.3);
  background: rgba(41,184,213,0.1);
  color: var(--accent);
}
.process-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-light); margin-bottom: 2rem;
}
.steps {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.step {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800; color: #fff;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-light); margin-bottom: 0.4rem;
}
.step-content p {
  color: var(--text-light2); font-size: 0.95rem; line-height: 1.65;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--bg3);
  padding: 3.5rem 24px;
}
@media (min-width: 769px) { .faq-section { padding: 5rem 24px; } }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 0.5rem;
}
.faq-sub {
  color: var(--text2); margin-bottom: 2rem; font-size: 1rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; color: var(--text);
  gap: 1rem;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.1rem; font-weight: 700;
  color: var(--accent); transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text2); line-height: 1.75; font-size: 0.975rem;
}
.faq-item.open .faq-a { display: block; }

/* =========================================
   STAT BAR
   ========================================= */
.stat-bar {
  background: var(--bg-dark);
  padding: 1.25rem 0;
}
.stat-bar-inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-around; align-items: center; gap: 1rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem; color: var(--text-light2);
  margin-top: 0.25rem; font-weight: 500; letter-spacing: 0.04em;
}
.stat-divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.1); }
@media (max-width: 768px) {
  .stat-divider { display: none; }
  .stat-bar-inner { gap: 0.5rem; }
  .stat-num { font-size: 1.2rem; }
}

/* =========================================
   TRUST MARQUEE
   ========================================= */
.trust-bar { background: var(--accent); padding: 0.75rem 0; overflow: hidden; }
.trust-track { display: flex; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .trust-track { animation: marquee 28s linear infinite; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-track-inner { display: flex; align-items: center; white-space: nowrap; }
.trust-item {
  padding: 0 2.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  color: #ffffff; letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-sep { color: rgba(255,255,255,0.5); font-size: 0.65rem; }

/* =========================================
   SECTION BASE
   ========================================= */
.section { padding: 3.5rem 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
@media (min-width: 769px) { .section { padding: 5rem 24px; } }

.section-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.875rem; border-radius: 2rem;
  margin-bottom: 0.875rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.92;
  color: var(--text); margin-bottom: 3rem;
}
.section-title.center { text-align: center; }

/* =========================================
   SERVICES CARDS
   ========================================= */
.services { background: var(--bg); }
.services-header { text-align: center; margin-bottom: 3rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: #ffffff; border: 1px solid var(--border);
  border-top: 3px solid var(--accent); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-num {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 0.5rem; text-transform: uppercase;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.75rem; line-height: 1.3;
}
.card-body p { font-size: 0.95rem; color: var(--text2); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.card-link {
  font-family: var(--font-display);
  font-size: 0.875rem; font-weight: 700;
  color: var(--accent); display: inline-flex;
  align-items: center; gap: 0.25rem; transition: gap 0.2s;
}
.card-link:hover { gap: 0.5rem; }
@media (max-width: 768px) { .cards { grid-template-columns: 1fr; } }

/* =========================================
   WHY SECTION
   ========================================= */
.why { background: var(--bg-dark); }
.why .section-badge { border-color: rgba(41,184,213,0.3); background: rgba(41,184,213,0.1); color: var(--accent); }
.why .section-title { color: var(--text-light); }
.why-header { text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.why-item { border-left: 2px solid rgba(41,184,213,0.2); padding: 1.5rem 1.5rem 1.5rem 2rem; transition: border-color 0.3s; }
.why-item:hover { border-color: var(--accent); }
.why-title { font-family: var(--font-display); color: var(--text-light); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-body { color: var(--text-light2); font-size: 0.9rem; line-height: 1.65; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================
   AREAS
   ========================================= */
.areas { background: var(--bg3); }
.areas-header { text-align: center; margin-bottom: 1.5rem; }
.areas-intro { color: var(--text2); text-align: center; max-width: 600px; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.65; }
.towns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.area-pill {
  background: #ffffff; border: 1px solid var(--border-accent);
  color: var(--text); padding: 0.5rem 1.25rem;
  border-radius: 2rem; font-size: 0.85rem; font-weight: 500;
  font-family: var(--font-display);
  transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover { background: var(--accent-dim); border-color: var(--accent); }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--bg-dark); padding: 5rem 24px;
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(41,184,213,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.92;
  color: var(--text-light); margin-bottom: 1.25rem;
}
.cta-banner p { color: var(--text-light2); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.65; }
.btn-accent {
  display: inline-block; background: var(--accent); color: #ffffff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding: 1rem 2.5rem; border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.cta-phone { margin-top: 1.25rem; color: var(--text-light2); font-size: 0.95rem; }
.cta-phone a { color: var(--accent); font-weight: 700; }
.cta-phone a:hover { text-decoration: underline; }

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--bg); }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; align-items: start; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #ffffff;
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.875rem 1rem; color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(41,184,213,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a0b4c4; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%234a6080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group select option { background: #ffffff; color: var(--text); }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--accent); color: #ffffff; border: none;
  border-radius: 8px; font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }
@media (prefers-reduced-motion: no-preference) {
  .btn-submit::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
  }
  .btn-submit:hover::before { left: 100%; }
}
.contact-info { padding-top: 0.5rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.info-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.info-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-row p { color: var(--text2); font-size: 0.95rem; line-height: 1.5; }
.info-row a { color: var(--accent); font-weight: 700; }
.info-row a:hover { text-decoration: underline; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-block; background: var(--accent); color: #ffffff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; background: transparent; color: #ffffff;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--bg-dark2); padding: 3rem 24px 2rem; border-top: 1px solid rgba(41,184,213,0.12); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem;
}
.footer-tagline { color: var(--text-light2); font-size: 0.875rem; margin-top: 1rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light2); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-light2); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 0.75rem; color: var(--text-light2); font-size: 0.875rem;
}
.footer-contact-item a { color: var(--accent); font-weight: 600; }
.footer-copy { text-align: center; color: var(--text-light2); font-size: 0.8rem; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* =========================================
   MOBILE STICKY CALL BAR
   ========================================= */
.mobile-bar { display: none; }
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .mobile-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999; background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 1rem; gap: 0.75rem;
  }
  .mobile-call {
    flex: 1; background: var(--accent); color: #ffffff;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem;
    letter-spacing: 0.02em; text-align: center; padding: 0.85rem 1rem;
    border-radius: 10px; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .mobile-call svg { width: 18px; height: 18px; flex-shrink: 0; }
  .mobile-quote {
    flex: 1; background: transparent; color: var(--text-light);
    font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
    text-align: center; padding: 0.75rem; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2); text-decoration: none;
  }
}

/* =========================================
   PRICE RANGE BOX
   ========================================= */
.price-range {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.price-range h3 {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.price-row:last-child { border-bottom: none; }
.price-row-label { color: var(--text); font-weight: 500; }
.price-row-val { color: var(--text); font-family: var(--font-display); font-weight: 700; }

/* =========================================
   SCROLL REVEALS
   ========================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
}

/* =========================================
   RELATED LINKS SECTION
   ========================================= */
.related-section {
  background: var(--bg2);
  padding: 3rem 24px;
}
.related-inner { max-width: 800px; margin: 0 auto; }
.related-inner h2 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem;
}
.related-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.related-link {
  background: #fff; border: 1px solid var(--border-accent);
  color: var(--accent); padding: 0.5rem 1.25rem;
  border-radius: 2rem; font-size: 0.875rem; font-weight: 600;
  font-family: var(--font-display);
  transition: background 0.2s, border-color 0.2s;
}
.related-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
