/* ============================================
   VistaMedia — Main Stylesheet
   Light, clean, Mac-inspired design
   Accent: Deep blue + forest green
   ============================================ */

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

  :root {
  /* ── Primary Colors ───────────────────────── */
  --blue:          #10B2AC;
  --blue-mid:      #233D4A;
  --blue-light:    #dbeafe;
  --blue-dark:     #1e40af;
  
  --green:         #1a6b5a;
  --green-mid:     #2d9978;
  --green-light:   #d1fae5;
  --green-dark:    #065f46;
  
  /* ── Accent Colors ────────────────────────── */
  --teal:          #155e75;
  --orange:        #f59e0b;
  --gradient-start:#4ecca3;
  --gradient-end:  #60b4f5;
  
  /* ── Semantic/Accent ──────────────────────── */
  --accent:        #1a4d8c;
  --accent-2:      #1a6b5a;

  /* ── Background Colors ────────────────────── */
  --white:         #ffffff;
  --off-white:     #f8fafb;
  --surface:       #f2f5f7;
  --surface-2:     #e8edf2;
  --bg-light:      #f8f9fa;
  --bg-dark:       #0d1b2a;
  --bg-dark-alt:   #0a1628;
  --bg-email:      #f4f6f9;

  /* ── Text Colors ──────────────────────────── */
  --text-primary:    #0d1b2a;
  --text-secondary:  #4a5568;
  --text-muted:      #8a95a3;
  --text-on-dark:    rgba(255,255,255,.78);

  /* ── Border Colors ────────────────────────── */
  --border:        #dde3e9;
  --border-2:      #c8d0da;
  --border-light:  #e2e8ef;

  /* ── Status Colors ────────────────────────── */
  --success:       #1a6b5a;
  --success-light: #d1fae5;
  --success-dark:  #065f46;
  
  --warning:       #f59e0b;
  --warning-light: #fef3c7;
  --warning-dark:  #92400e;
  
  --info:          #1a4d8c;
  --info-light:    #dbeafe;
  --info-dark:     #1e40af;
  
  --error:         #b91c1c;
  --error-light:   #fee2e2;
  --error-dark:    #991b1b;
  --error-border:  #f87171;

  /* ── Button Colors ────────────────────────── */
  --btn-primary-bg:        var(--blue);
  --btn-primary-bg-hover:  var(--blue-mid);
  --btn-primary-shadow:    rgba(26,77,140,.3);
  --btn-primary-shadow-hover: rgba(26,77,140,.38);
  
  --btn-secondary-bg:        var(--green);
  --btn-secondary-bg-hover:  var(--green-mid);
  --btn-secondary-shadow:    rgba(26,107,90,.25);
  --btn-secondary-shadow-hover: rgba(26,107,90,.35);
  
  --btn-ghost-bg:          transparent;
  --btn-ghost-bg-hover:    var(--blue-light);
  --btn-ghost-border:      var(--blue);
  --btn-ghost-color:       var(--blue);
  
  --btn-white-bg:          var(--white);
  --btn-white-bg-hover:    var(--off-white);

  /* ── Radius ──────────────────────────────── */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* ── Shadows ─────────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.14);

  /* ── Transitions ─────────────────────────── */
  --transition: 0.24s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.4s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ── Layout ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--white);
  box-shadow: 0 2px 12px var(--btn-primary-shadow);
}
.btn-primary:hover {
  background: var(--btn-primary-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--btn-primary-shadow-hover);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--white);
  box-shadow: 0 2px 12px var(--btn-secondary-shadow);
}
.btn-secondary:hover {
  background: var(--btn-secondary-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--btn-secondary-shadow-hover);
}

.btn-ghost {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-color);
  border: 1.5px solid var(--btn-ghost-border);
}
.btn-ghost:hover {
  background: var(--btn-ghost-bg-hover);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--btn-white-bg);
  color: var(--btn-primary-bg);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--btn-white-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Section Utilities ───────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-header { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; margin-top: 16px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Navbar ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
}
.logo span { color: var(--green-mid); }
.logo-image {
  height: 80px;
  width: auto;
  transition: all var(--transition);
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo-image-light {
  display: none;
}
.navbar.scrolled .logo { color: var(--text-primary); }
.navbar.scrolled .logo-image-dark {
  display: none;
}
.navbar.scrolled .logo-image-light {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-link:hover { color: var(--blue); background: var(--blue-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  pointer-events: none;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -50%;
  right: -50%;
  height: 8px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu li a:hover { background: var(--off-white); color: var(--blue); }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; margin-left: 12px; } }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--text-primary); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-xl);
    margin-left: 0;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { color: var(--text-secondary); width: 100%; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 1px solid var(--border);
    pointer-events: all;
    display: none;
    margin-top: 4px;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
}

/* ── Hero ────────────────────────────────── */
.home-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark-alt);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark-alt);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.72) 0%,
    rgba(26,77,140,.35) 50%,
    rgba(26,107,90,.25) 100%
  );
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 120px 0 80px;
}

.hero-map {
  position: relative;
  width: 350px;
  z-index: 2;
}

.hero-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-map-subtitle {
  text-align: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 24px; height: 24px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats-inner {
  display: flex;
  divide: var(--border);
}
.stat-item {
  flex: 1;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Home Page Transition ───────────────────── */
.home-content-wrapper {
  background: var(--bg-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.home-content-wrapper > * {
  position: relative;
  width: 100%;
}

.home-content-wrapper > .services-gallery {
  padding-top: 180px;
}

/* ── Services Grid (DISABLED - for future project section) ───────────────────── */
/*
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .card-image img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,.6);
}

.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card-body p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.65; flex: 1; }

.card-footer {
  padding: 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-price { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.card-price strong { color: var(--text-primary); font-weight: 700; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  padding: 8px 0;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
*/

/* ── How It Works ────────────────────────── */
.how-it-works { background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--green-light));
  z-index: 0;
}

.step { text-align: center; padding: 0 24px; position: relative; }
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 2px solid;
  box-shadow: var(--shadow);
}
.step-icon svg {
  width: 28px;
  height: 28px;
}
.step:nth-child(odd) .step-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.step:nth-child(even) .step-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.step:nth-child(3) .step-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.step:nth-child(4) .step-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ── Testimonial ─────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px; right: 28px;
  font-size: 5rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  color: var(--border-2);
  user-select: none;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: var(--orange); font-size: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.92rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA Banner ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 50%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::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.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Service Area Map ─────────────────────── */
.service-area-map {
  padding: 80px 0;
  background: var(--surface);
}

.service-area-map .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-area-map .section-header h2 {
  color: var(--text-primary);
}

.service-area-map .section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.map-display-centered {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
}

.map-display-centered .map-display-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-display-centered .map-pins-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-display-centered .map-pin {
  position: absolute;
  width: 30px;
  height: 42px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.map-display-centered .map-pin:hover {
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.15);
  background: var(--green-mid);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 10;
}

.map-display-centered .map-pin::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
}

.map-display-centered .map-pin::after {
  content: attr(data-county);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--text-primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-display-centered .map-pin:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}

@media (max-width: 640px) {
  .service-area-map {
    padding: 60px 0;
  }
  
  .map-display-centered {
    max-width: 320px;
  }
  
  .map-display-centered .map-pin {
    width: 24px;
    height: 34px;
  }
  
  .map-display-centered .map-pin::before {
    top: 6px;
    width: 10px;
    height: 10px;
  }
}

/* ── Page Header ─────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 60%, var(--green) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,.78); font-size: 1.15rem; margin-top: 16px; max-width: 520px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ── Service Detail Page Layout ────────────────── */
.service-detail-page {
  position: relative;
  width: 100%;
}

/* ── Service Detail Hero ──── */
.service-detail-hero {
  background: var(--blue);
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
}

.service-detail-hero.hero-with-video {
  background-size: cover;
  background-position: center;
}

.service-detail-hero.hero-with-slider {
  background-size: cover;
  background-position: center;
}

.hero-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-detail-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
  z-index: 2;
}

.service-detail-hero .hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* ── Service Content Wrapper ──── */
.service-content-wrapper {
  position: relative;
  z-index: 1;
}

/* ── Main Content Section (Scrollable Container) ──── */
.service-detail-page .main-content-section {
  background: var(--bg-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.service-detail-page .main-content-section > * {
  position: relative;
  width: 100%;
}

.service-detail-page .main-content-section .detail-section,
.service-detail-page .main-content-section .related-services,
.service-detail-page .main-content-section .cta-banner,
.service-detail-page .main-content-section .contact-form-section,
.service-detail-page .main-content-section .footer-section {
  display: block;
  visibility: visible;
}

/* ── Content Cards with Background ──── */
.service-detail-page .detail-section {
  padding: 60px 0;
  padding-top: 100px;
  background: rgba(255, 255, 255, 0.95);
  min-height: auto;
}

.service-detail-page .detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 100%;
}

.service-detail-page .content-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 100%;
  overflow: visible;
  min-height: 200px;
}

.service-detail-page .detail-sidebar {
  position: static;
  overflow: visible;
}

.service-detail-page .sidebar-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 100%;
  overflow: visible;
}

.service-detail-page .tour-embed-section {
  padding: 40px 0;
  padding-top: 100px;
  background: transparent;
  min-height: auto;
}

.service-detail-page .tour-embed-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  max-height: 80vh;
}

.service-detail-page .tour-embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.service-detail-page .related-services {
  padding: 60px 0;
  background: transparent;
}

.service-detail-page .service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-page .cta-banner {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* ── Footer on Service Detail Pages (Full Width) ──── */
.service-detail-page .footer-section {
  padding: 0;
  background: transparent;
  overflow: visible;
  position: relative;
}

.service-detail-page .footer-section .footer {
  background: var(--text-primary);
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 80px 0;
}

.service-detail-page .footer-section .footer .container {
  position: relative;
  z-index: 1;
}

/* ── Contact Form Section on Service Detail Pages ──── */
.service-detail-page .contact-form-section {
  position: relative;
  background: transparent;
  overflow: visible;
  min-height: 100vh;
}

.service-detail-page .contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.service-detail-page .contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.service-detail-page .contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.sdh-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative; z-index: 1;
}
.sdh-content { padding-bottom: 60px; }
.sdh-content h1 { color: var(--white); margin-bottom: 16px; }
.sdh-content .tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.sdh-content p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.sdh-image {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  max-height: 420px;
}
.sdh-image img { width: 100%; height: 100%; object-fit: cover; }

.detail-section { padding: 80px 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-description { line-height: 1.8; color: var(--text-secondary); }
.detail-description p + p { margin-top: 20px; }

.detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 { margin-bottom: 20px; font-size: 1rem; }
.sidebar-card .price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.sidebar-card .price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.sidebar-card .turnaround {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-secondary);
  margin-bottom: 24px;
}

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
}

.deliverables-list { display: flex; flex-direction: column; gap: 8px; }
.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.deliverable-item::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Related Services ────────────────────── */
.related-services { background: var(--off-white); padding: 80px 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── Contact Page ────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.contact-item-text span { font-size: 0.88rem; color: var(--text-muted); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,77,140,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

.success-banner {
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Services Page ───────────────────────── */
.services-intro { background: var(--off-white); padding: 80px 0; }
.services-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.services-intro-text h2 { margin-bottom: 20px; }
.services-intro-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.services-main { background: var(--white); }

/* ── 404 ─────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--off-white);
}
.not-found-code {
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.not-found h2 { margin-bottom: 16px; }
.not-found p { color: var(--text-secondary); margin-bottom: 40px; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}
.footer-logo span { color: var(--green-mid); }
.footer-logo-image {
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand > p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; margin-bottom: 32px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.social-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); }

.footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-contact ul { display: flex; flex-direction: column; gap: 8px; }
.footer-contact li a, .footer-contact li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-contact li a:hover { color: var(--white); }

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }

.footer-map-wrapper {
  position: relative;
}

.footer-map-wrapper h4 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-map-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

.footer-map-pins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  pointer-events: none;
}

.footer-map-pins .map-pin {
  position: absolute;
  width: 24px;
  height: 34px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.footer-map-pins .map-pin:hover {
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.15);
  background: var(--green-mid);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 10;
}

.footer-map-pins .map-pin::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
}

.footer-map-pins .map-pin::after {
  content: attr(data-county);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--text-primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.footer-map-pins .map-pin:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

.footer-map-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  margin-top: 12px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}

/* ── Scroll Animations ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-wide { grid-column: span 1; }
  .detail-grid, .sdh-inner { grid-template-columns: 1fr; }
  .sdh-image { max-height: 320px; border-radius: var(--radius-lg); }
  .sdh-content { padding-bottom: 0; }
  .detail-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-intro .container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-map-image { max-width: 280px; margin: 0 auto; }
  .footer-map-pins { max-width: 280px; left: 50%; transform: translateX(-50%); }
  /* .services-grid { grid-template-columns: 1fr; } DISABLED - for future project section */
  .service-area-grid { grid-template-columns: 1fr; }
  .map-container { margin-bottom: 40px; }
}

/* ── Service Area ────────────────────────── */
.service-area { background: var(--off-white); }

.service-area-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.map-container-wide {
  width: 100%;
  max-width: 100%;
}

.us-map {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-pins-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-map .map-pins-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-map .map-pin {
  position: absolute;
  width: 24px;
  height: 34px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-map .map-pin:hover {
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.15);
  background: var(--green-mid);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 10;
}

.hero-map .map-pin::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
}

.hero-map .map-pin::after {
  content: attr(data-county);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--text-primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.hero-map .map-pin:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-map {
    width: 280px;
    margin: 0 auto;
  }
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 42px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.map-pin:hover {
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.15);
  background: var(--green-mid);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 10;
}

.map-pin::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
}

.map-pin::after {
  content: attr(data-county);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--text-primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-pin:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}

.area-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.area-list h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--blue);
  text-align: center;
}

.area-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--blue-light);
  border-radius: var(--radius);
  transition: none;
}

.county-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.county-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
}

.county-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.travel-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}

@media (max-width: 1024px) {
  .service-area-grid { gap: 40px; }
}

/* ── Services Gallery ───────────────────── */
.services-gallery {
  padding: 80px 0;
}

.services-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.gallery-content {
  color: var(--white);
  max-width: 280px;
}

.gallery-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.gallery-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .services-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .services-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 300px;
  }
  .gallery-content {
    max-width: 100%;
  }
}

/* ── Services Navigation Menu ───────────────── */
.services-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 100;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.3s ease;
}

.services-nav-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 16px;
}

.services-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  padding: 20px 12px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.services-nav-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.services-nav-item.active {
  color: var(--white);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.services-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 40px;
  background: var(--green-mid);
  border-radius: 0 4px 4px 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-nav-item.active:hover::before {
  transform: translateY(-50%) scaleY(1.2);
}

.services-nav-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.services-nav-icon {
  font-size: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  bottom: 8px;
}

.services-nav-item.active .services-nav-icon {
  font-size: 1.2rem;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  bottom: 0;
  margin-top: 8px;
}

.services-nav-item:not(.active) .services-nav-label {
  transform: translateY(0);
}

.services-nav-item:not(.active) .services-nav-label {
  transform: translateY(0);
}

.services-nav-item.active .services-nav-label {
  transform: translateY(-5px);
}

/* Hide services nav on smaller screens */
@media (max-width: 1024px) {
  .services-nav {
    opacity: 0;
    pointer-events: none;
  }
}

/* ── Services Scroll Container ─────────────── */
.services-scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  padding-left: 0;
  margin-left: 0;
}

/* Adjust scroll container and sections when nav is visible */
@media (min-width: 1025px) {
  .services-scroll-container {
    width: 100vw;
    margin-left: 0;
  }

  .service-full-section {
    width: 100vw;
    left: 0;
  }

  .service-full-overlay {
    padding-left: 140px;
  }

  .service-full-content {
    padding-left: 0;
  }

  .service-full-content > * {
    max-width: 100%;
  }
}

.services-scroll-container::-webkit-scrollbar {
  width: 0;
}

.services-scroll-container {
  scrollbar-width: none;
}

/* ── Service Full Sections ─────────────────── */
.service-full-section {
  position: relative;
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.service-full-section.contact-section {
  scroll-snap-align: start;
  height: auto;
  min-height: 100vh;
}

.service-full-section.footer-section {
  scroll-snap-align: none;
  height: auto;

}

.service-full-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: center;
  padding-left: 100px;
}

/* Adjust padding-left when nav is visible */
@media (min-width: 1025px) {
  .service-full-overlay {
    padding-left: 140px;
  }
}

.service-full-content {
  color: var(--white);
  max-width: 600px;
  padding: 60px 0;
}

.service-full-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.service-full-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-full-tagline {
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 24px;
  font-style: italic;
}

.service-full-content > p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-full-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-full-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 14px 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.service-full-link:hover {
  background: rgba(255,255,255,0.35);
  transform: translateX(5px);
}

.service-full-link.secondary {
  background: rgba(255,255,255,0.1);
}

.service-full-link.secondary:hover {
  background: rgba(255,255,255,0.25);
}

.service-full-link svg {
  transition: transform 0.3s ease;
}

.service-full-link:hover svg {
  transform: translateX(3px);
}

/* ── Contact Section Styles ────────────────── */
.contact-section {
  position: relative;
}

.contact-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(26,77,140,0.75) 50%, rgba(26,107,90,0.65) 100%);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}








  }

.wizard-wrap {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.2s;
  font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 77, 140, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.bip-card h4 {
  margin-bottom: 4px;
}

.bip-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.bip-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bip-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 1024px) {
  .services-nav {
    display: none;
  }

  .service-full-overlay {
    padding-left: 40px;
    padding-right: 20px;
  }

  .service-full-content {
    max-width: 100%;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-info-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .wizard-wrap {
    padding: 24px 20px;
  }

  .booking-layout {
    padding: 40px 0;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .service-full-overlay {
    padding-left: 20px;
    padding-right: 16px;
  }

  .service-full-content {
    padding: 40px 0;
  }

  .service-full-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .service-full-content h1 {
    font-size: 2rem;
  }

  .service-full-tagline {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .service-full-content > p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .service-full-actions {
    flex-direction: column;
  }

  .service-full-link {
    justify-content: center;
    padding: 12px 20px;
  }
}

  .services-nav-items {
    padding: 30px 12px;
  }

  .services-nav-icon {
    font-size: 1.5rem;
  }

  .services-nav-label {
    font-size: 0.65rem;
  }

  .service-full-overlay {
    padding-left: 80px;
  }

  .service-full-content {
    max-width: 500px;
    padding: 50px 0;
  }

  .service-full-icon {
    font-size: 3rem;
  }

  .service-full-content h1 {
    font-size: 2.5rem;
  }

  .service-full-tagline {
    font-size: 1.2rem;
  }

  .service-full-content > p {
    font-size: 1rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-info-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-nav {
    width: 70px;
  }

  .services-nav-items {
    padding: 20px 8px;
  }

  .services-nav-icon {
    font-size: 1.3rem;
  }

  .services-nav-label {
    font-size: 0.6rem;
  }

  .service-full-overlay {
    padding-left: 70px;
    padding-right: 20px;
  }

  .service-full-content {
    max-width: 100%;
    padding: 40px 0;
  }

  .service-full-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .service-full-content h1 {
    font-size: 2rem;
  }

  .service-full-tagline {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .service-full-content > p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .service-full-actions {
    flex-direction: column;
  }

  .service-full-link {
    justify-content: center;
    padding: 12px 20px;
  }

  .wizard-wrap {
    padding: 30px 20px;
  }

  .booking-layout {
    padding: 60px 0;
  }
}


