/*
===========================================
CLEANING CARE SOLUTIONS — DESIGN SYSTEM 2026
Modern · Beautiful · AOS-Enhanced
All pages: index, service pages, city pages
===========================================
*/

/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-navy: #3A4EA7;
  --primary-blue: #00B4F0;
  --primary-light: #9DDAF6;
  --primary-pale: #D5DFE8;
  --accent-orange: #FF8A3D;
  --accent-gold: #F4C95D;
  --neutral-darkest: #0F172A;
  --neutral-dark: #1E293B;
  --neutral-mid: #475569;
  --neutral-white: #FFFFFF;
  --neutral-light: #F8FAFC;
  --neutral-border: #E2E8F0;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 30px rgba(0,180,240,0.25);
  --transition-fast: 150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base: 300ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 500ms cubic-bezier(0.4,0,0.2,1);
  --header-h: 80px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
body { font-family: var(--font-primary); font-size: 1rem; line-height: 1.7; color: var(--neutral-dark); background: var(--neutral-white); overflow-x: hidden; max-width: 100vw; position: relative; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--primary-blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-orange); }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--neutral-darkest); margin-bottom: var(--space-md); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: var(--space-md); color: var(--neutral-dark); line-height: 1.75; }
strong { color: #00aeee; }

/* ==================== LAYOUT ==================== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-md); }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--space-md); }
.container-fluid { width: 100%; padding: 0; }
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }
.section-lg { padding: 5rem 0; }

/* ==================== BOOTSTRAP-COMPATIBLE GRID ==================== */
.row { display: flex; flex-wrap: wrap; margin-right: -0.75rem; margin-left: -0.75rem; }
.row.no-gutters { margin-right: 0; margin-left: 0; }
.row.no-gutters > [class*="col"] { padding-right: 0; padding-left: 0; }
.row.align-items-center { align-items: center; }
.row.align-items-start { align-items: flex-start; }
[class*="col-"] { position: relative; width: 100%; padding-right: 0.75rem; padding-left: 0.75rem; }
.col-12, .col-lg-12, .col-xl-12, .col-md-12 { flex: 0 0 100%; max-width: 100%; }
.col-6, .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
@media (min-width: 576px) {
  .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 1200px) {
  .col-xl-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-xl-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-xl-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ==================== GRID SYSTEM (CSS GRID) ==================== */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ==================== DISPLAY & FLEX UTILITIES ==================== */
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-self-stretch { align-self: stretch; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
@media (min-width: 992px) { .text-lg-left { text-align: left; } .text-lg-right { text-align: right; } }

/* ==================== SPACING UTILITIES ==================== */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 0.625rem; } .mb-15 { margin-bottom: 0.9375rem; } .mb-20 { margin-bottom: 1.25rem; } .mb-25 { margin-bottom: 1.5625rem; } .mb-30 { margin-bottom: 1.875rem; }
.mt-10 { margin-top: 0.625rem; } .mt-15 { margin-top: 0.9375rem; } .mt-20 { margin-top: 1.25rem; } .mt-25 { margin-top: 1.5625rem; } .mt-30 { margin-top: 1.875rem; }
.ml-15 { margin-left: 0.9375rem; } .ml-20 { margin-left: 1.25rem; } .ml-xs-00 { margin-left: 0; }
.mr-30 { margin-right: 1.875rem; }
.pt-0 { padding-top: 0; } .pt-1 { padding-top: 0.25rem; } .pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; } .pt-5 { padding-top: 3rem; } .pt-95 { padding-top: 5.9375rem; }
.pb-0 { padding-bottom: 0; } .pb-3 { padding-bottom: 1rem; } .pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; } .pb-65 { padding-bottom: 4.0625rem; }
.pl-35 { padding-left: 2.1875rem; }
.p-0 { padding: 0 !important; }
.w-100 { width: 100%; }
.z-5 { position: relative; z-index: 5; }

/* ==================== PRELOADER ==================== */
.loader-out { position: fixed; inset: 0; background: var(--neutral-white); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.4s ease; }
.loader-out.hidden { opacity: 0; pointer-events: none; }
.loader { width: 48px; height: 48px; border: 4px solid var(--primary-pale); border-top-color: var(--primary-blue); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  height: var(--header-h);
}
.logo-wrap { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-img { width: 46px; height: 46px; border-radius: var(--radius-md); object-fit: contain; }
.logo-text { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; line-height: 1.25; color: var(--neutral-white); transition: color var(--transition-fast); }
.header.scrolled .logo-text { color: var(--neutral-darkest); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; margin: 0; }
.nav-list li { position: relative; }
.nav-link { font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.92); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); transition: all var(--transition-fast); display: block; }
.header.scrolled .nav-link { color: var(--neutral-dark); }
.nav-link:hover { color: var(--accent-orange); background: rgba(255,138,61,0.08); }
.header.scrolled .nav-link:hover { color: var(--accent-orange); }
.nav-phone a { font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.9); letter-spacing: 0.01em; white-space: nowrap; }
.header.scrolled .nav-phone a { color: var(--primary-navy); }
.nav-phone a:hover { color: var(--accent-orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown::before { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 1rem; }
.sub-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 230px; background: var(--neutral-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: 0.5rem; z-index: 1031; border: 1px solid var(--neutral-border); opacity: 0; visibility: hidden; transition: opacity 0.2s ease 0.1s, visibility 0.2s ease 0.1s; }
.has-dropdown:hover .sub-menu { display: block; opacity: 1; visibility: visible; transition-delay: 0.15s; }
.sub-menu:hover { display: block; opacity: 1; visibility: visible; }
.has-dropdown .sub-menu { pointer-events: none; }
.has-dropdown:hover .sub-menu, .sub-menu:hover { pointer-events: auto; }
.sub-menu li a { display: block; padding: 0.6rem 1rem; font-size: 0.9rem; color: var(--neutral-dark); border-radius: var(--radius-sm); transition: all var(--transition-fast); white-space: nowrap; }
.sub-menu li a:hover { background: rgba(0,180,240,0.08); color: var(--primary-navy); }

/* Mobile menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 10; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--neutral-white); border-radius: 2px; transition: all var(--transition-base); }
.header.scrolled .menu-toggle span { background: var(--neutral-darkest); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden; }
@media (max-width: 576px) {
  .hero { min-height: auto !important; padding-top: 2rem; padding-bottom: 2rem; align-items: flex-start; }
  .hero-content { padding-top: 1rem; padding-bottom: 1rem; }
  .hero-title { margin-bottom: 0.75rem; }
  .hero-subtitle { margin-bottom: 1rem; }
  .hero-cta { margin-bottom: 0; }
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(10,18,42,0.78) 0%, rgba(10,18,42,0.55) 60%, rgba(58,78,167,0.40) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--neutral-white); max-width: 940px; padding: 0 1.5rem; padding-top: var(--header-h); }
.hero-title { color: var(--neutral-white); margin-bottom: 1.25rem; text-shadow: 0 2px 16px rgba(0,0,0,0.35); font-size: clamp(2rem, 5vw, 3.5rem); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.275rem); margin-bottom: 2rem; color: rgba(255,255,255,0.88); font-weight: 400; line-height: 1.7; max-width: 720px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Promo Pill */
.promo-pill { display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(255,255,255,0.14); color: var(--neutral-white); font-weight: 700; font-size: 0.875rem; padding: 0.85rem 1rem 0.85rem 0.85rem; border-radius: 1.25rem; margin-bottom: 1.25rem; box-shadow: 0 16px 40px rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(10px); max-width: 860px; margin-left: auto; margin-right: auto; text-align: left; }
.promo-pill-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 110px; padding: 0.85rem 1rem; border-radius: 999px; background: linear-gradient(90deg,var(--accent-orange),var(--accent-gold)); color: var(--neutral-white); font-size: 1rem; line-height: 1; letter-spacing: 0.02em; box-shadow: 0 8px 22px rgba(255,138,61,0.35); }
.promo-pill-copy { display: flex; flex-direction: column; gap: 0.2rem; flex: 1 1 280px; min-width: 0; }
.promo-pill-copy strong { color: var(--neutral-white); font-size: 1rem; line-height: 1.3; }
.promo-pill small { font-weight: 500; font-size: 0.84rem; opacity: 0.95; line-height: 1.5; }
.promo-pill-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
.promo-pill-link { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0.8rem 1.1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: all var(--transition-fast); white-space: nowrap; }
.promo-pill-link:hover { transform: translateY(-2px); }
.promo-pill-link-primary { background: var(--neutral-white); color: var(--primary-navy); box-shadow: 0 8px 20px rgba(255,255,255,0.2); }
.promo-pill-link-primary:hover { background: var(--accent-gold); color: var(--neutral-darkest); }
.promo-pill-link-secondary { background: rgba(255,255,255,0.08); color: var(--neutral-white); border: 1px solid rgba(255,255,255,0.28); }
.promo-pill-link-secondary:hover { background: rgba(255,255,255,0.18); color: var(--neutral-white); }
.section-label { display: inline-block; font-family: var(--font-primary); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-blue); background: rgba(0,180,240,0.1); padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 0.75rem; }

@media (max-width: 992px) {
  :root { --header-h: 76px; }
  body { padding-top: var(--header-h); }
  body.menu-open { overflow: hidden; }
  .header,
  .header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }
  .header-container {
    height: var(--header-h);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    max-width: 100%;
  }
  .logo-wrap {
    min-width: 0;
    gap: 0.6rem;
    flex: 1 1 auto;
  }
  /* Prevent horizontal overflow on mobile */
  .container,
  .container-wide,
  .container-narrow {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-content {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .promo-pill {
    max-width: 100%;
    width: 100%;
  }
  .logo-img {
    width: 42px;
    height: 42px;
  }
  .logo-text,
  .header.scrolled .logo-text {
    color: var(--neutral-darkest);
    font-size: 0.92rem;
    line-height: 1.1;
  }
  .nav {
    margin-left: auto;
    gap: 0.75rem;
  }
  .nav-phone,
  .nav > .btn.btn-primary.btn-sm {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(58,78,167,0.08);
    border: 1px solid rgba(58,78,167,0.12);
    flex: 0 0 auto;
  }
  .menu-toggle span,
  .header.scrolled .menu-toggle span {
    background: var(--neutral-darkest);
  }
  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.9rem 1rem 6.5rem;
    background: rgba(255,255,255,0.99);
    border-top: 1px solid rgba(226,232,240,0.95);
    box-shadow: 0 22px 40px rgba(15,23,42,0.12);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    z-index: 1029;
    overscroll-behavior: contain;
  }
  .nav-list.active {
    display: flex;
  }
  .nav-list li {
    width: 100%;
  }
  .nav-link,
  .header.scrolled .nav-link {
    color: var(--neutral-darkest);
    padding: 0.95rem 0.25rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--neutral-border);
  }
  .nav-link:hover,
  .header.scrolled .nav-link:hover {
    color: var(--primary-navy);
    background: transparent;
  }
  .has-dropdown > .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .has-dropdown > .nav-link::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
  }
  .has-dropdown.open > .nav-link::after {
    content: '−';
  }
  .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    display: none;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    padding: 0.4rem;
    margin: 0.5rem 0 0.75rem;
    border-radius: 16px;
  }
  .has-dropdown.open .sub-menu {
    display: block;
  }
  .sub-menu li a {
    white-space: normal;
    padding: 0.8rem 0.9rem;
  }
  .hero {
    min-height: calc(100vh - var(--header-h));
  }
  .hero-content {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }
}

/* ==================== INNER BANNER (Service/City Pages) ==================== */
.inner-banner, .inner-bnr { position: relative; min-height: 320px; display: flex; align-items: center; background: linear-gradient(135deg, var(--neutral-darkest) 0%, var(--primary-navy) 100%); overflow: hidden; padding: 5rem 0 3rem; }
.inner-banner::after, .inner-bnr::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(0,180,240,0.18) 0%, transparent 65%); pointer-events: none; }
.inner-banner .container, .inner-bnr .container { position: relative; z-index: 2; }
.inner-banner h1, .inner-bnr h1, .inner-banner h2, .inner-bnr h2 { color: var(--neutral-white); margin-bottom: 0.75rem; font-size: clamp(1.75rem, 4vw, 2.75rem); }
.inner-bnr-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.inner-bnr-nav a, .inner-bnr-nav span { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ... rest of the code remains the same ... */

/* ==================== FORMS ==================== */
.default-form {
  background: #ffffff00;
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-border);
}

.default-form .row {
  margin-bottom: 1rem;
}

.text-booking {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-booking::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.form-control,
.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="tel"],
.default-form input[type="date"],
.default-form input[type="number"],
.default-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--neutral-darkest);
  background: var(--neutral-light);
  border: 2px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  outline: none;
  margin-bottom: 0.75rem;
}

.form-control:focus,
.default-form input:focus,
.default-form textarea:focus {
  border-color: var(--primary-blue);
  background: var(--neutral-white);
  box-shadow: 0 0 0 4px rgba(0, 180, 240, 0.1);
}

.form-control::placeholder,
.default-form input::placeholder,
.default-form textarea::placeholder {
  color: var(--neutral-mid);
  opacity: 1;
}

/* Custom Select / Dropdown Styling */
.select,
.default-form select,
select.form-control {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--neutral-darkest);
  background: var(--neutral-light);
  border: 2px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  outline: none;
  cursor: pointer;
  margin-bottom: 0.75rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.select:focus,
.default-form select:focus,
select.form-control:focus {
  border-color: var(--primary-blue);
  background-color: var(--neutral-white);
  box-shadow: 0 0 0 4px rgba(0, 180, 240, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300B4F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.select option,
.default-form select option {
  padding: 0.75rem;
  background: var(--neutral-white);
  color: var(--neutral-darkest);
}

/* Textarea */
.default-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Panel List Buttons (Radio/Checkbox Cards) */
.panel-list-btn {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
}

.panel-list-btn input[type="radio"],
.panel-list-btn input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.panel-list-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  padding: 1rem;
  background: var(--neutral-light);
  border: 2px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.panel-list-btn label img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all var(--transition-fast);
}

.panel-list-btn p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-mid);
  transition: color var(--transition-fast);
}

.panel-list-btn input:checked + label,
.panel-list-btn input:hover + label {
  border-color: var(--primary-blue);
  background: rgba(0, 180, 240, 0.08);
  box-shadow: 0 4px 12px rgba(0, 180, 240, 0.15);
}

.panel-list-btn input:checked + label img,
.panel-list-btn input:hover + label img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.panel-list-btn input:checked ~ p {
  color: var(--primary-navy);
  font-weight: 600;
}

/* Form Labels */
.form-label,
label.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-darkest);
  margin-bottom: 0.5rem;
}

/* Form Groups */
.form-group {
  margin-bottom: 1rem;
}

/* Form Submit Button */
.default-form .btn,
.default-form button[type="submit"],
.default-form input[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Input Group */
.input-group {
  display: flex;
  align-items: stretch;
}

.input-group .form-control {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: var(--primary-blue);
  color: var(--neutral-white);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
  .hero-content { padding-left: 1rem; padding-right: 1rem; padding-bottom: 2rem; max-width: 100%; }
  .promo-pill { flex-direction: column; align-items: stretch; text-align: center; padding: 1rem; border-radius: 1.5rem; max-width: calc(100% - 2rem); margin-left: auto; margin-right: auto; }
  .promo-pill-badge { width: 100%; min-width: 0; }
  .promo-pill-copy { min-width: 0; flex: 1 1 auto; }
  .promo-pill-actions { justify-content: center; width: 100%; }
  .promo-pill-link { flex: 1 1 220px; width: 100%; max-width: 100%; }
  .hero-cta { flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 1rem; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .trust-items { gap: 1.25rem; justify-content: flex-start; overflow-x: auto; padding: 0.5rem; flex-wrap: nowrap; }
  .trust-item { flex-shrink: 0; }
  .mobile-cta-bar { display: flex; }
  /* ... rest of the media query remains the same ... */
  .cta-widget-float { bottom: 5.5rem; right: 1rem; }
  .default-form { padding: 1.5rem; }
  .inner-banner, .inner-bnr { min-height: 220px; padding-top: 5rem; }
  .blog-standared-img img { height: 260px; }
  .city-links-simple { padding: 1.5rem; }
  .check-list.half-list, .check-list.type-2-c { columns: 1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .fcc-chamber-img, .danbury-chamber-img { height: 28px; }
  /* Reduce bottom spacing on mobile */
  .section { padding: 3rem 0; }
  .section:last-child { padding-bottom: 4rem; }
  .hero-inner .hero-content { padding-bottom: 2rem; }
  /* Remove excessive bottom margins on mobile */
  .default-form { margin-bottom: 0; }
  .contact-section { margin-bottom: 0; }
  .referral-section { margin-bottom: 0; }
}
@media (max-width: 640px) {
  .text-center > div[data-aos] {
    padding: 1.25rem 1.5rem !important;
  }
}
@media (max-width: 576px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .promo-pill-copy strong { font-size: 0.95rem; }
  .promo-pill small { font-size: 0.82rem; }
  .header-container { padding: 0.7rem 0.85rem; }
  .logo-text,
  .header.scrolled .logo-text { font-size: 0.86rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .nav-list { padding-left: 0.85rem; padding-right: 0.85rem; }
  .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
  /* Even tighter spacing on small mobile */
  .section { padding: 2.5rem 0; }
  .section:last-child { padding-bottom: 3.5rem; }
  .hero-content { padding-bottom: 1.5rem; }
  .hero-cta { margin-bottom: 0.5rem; }
  /* Remove excessive bottom margins on small mobile */
  .default-form { margin-bottom: 0; }
  .contact-section { margin-bottom: 0; }
  .referral-section { margin-bottom: 0; }
}
@media (max-width: 480px) {
  :root { --space-xl: 2rem; --space-2xl: 2.5rem; --space-3xl: 3.5rem; }
  .section { padding: 2rem 0; }
  .section:last-child { padding-bottom: 3rem; }
  .back-to-top { bottom: 5rem; right: 0.75rem; }
  .cta-widget-float { right: 0.75rem; }
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, var(--neutral-darkest) 0%, #0a0f1a 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  min-width: 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-brand img {
  max-width: 180px;
  height: auto;
  filter: brightness(1.1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--primary-blue);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--primary-blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Service Areas */
.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.area-group h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  line-height: 1.8;
}

.area-links a {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.area-links a:hover {
  color: var(--accent-orange);
}

.area-links .sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.35rem;
  font-size: 0.7rem;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 180, 240, 0.3);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.85);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--neutral-white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: var(--neutral-white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 180, 240, 0.35);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-navy);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(58, 78, 167, 0.4);
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 1020;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-cta-call {
  background: var(--primary-navy);
  color: var(--neutral-white);
}

.mobile-cta-call:hover {
  background: var(--primary-blue);
  color: var(--neutral-white);
}

.mobile-cta-book {
  background: var(--accent-orange);
  color: var(--neutral-white);
}

.mobile-cta-book:hover {
  background: var(--accent-gold);
  color: var(--neutral-darkest);
}

/* Sub-page hero (shorter than homepage) */
.hero-inner {
  min-height: 52vh !important;
}

.hero-inner .hero-content {
  padding: 4rem 2rem 3rem;
}

@media (max-width: 768px) {
  .hero-inner {
    min-height: 40vh !important;
  }
}

/* ==================== ENHANCED IMAGE-RICH SECTIONS ==================== */

/* Parallax Image Sections */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(58, 78, 167, 0.75) 100%);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

.parallax-section h2,
.parallax-section p,
.parallax-section .section-label {
  color: #fff;
}

.parallax-section .section-label {
  background: rgba(255, 255, 255, 0.15);
}

/* Image Showcase Grid */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.25rem;
  margin: 3rem 0;
}

.showcase-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover::after {
  opacity: 1;
}

.showcase-item.large {
  grid-column: span 8;
  grid-row: span 2;
}

.showcase-item.medium {
  grid-column: span 4;
}

.showcase-item.small {
  grid-column: span 4;
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-caption {
  transform: translateY(0);
}

.showcase-caption h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.showcase-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
}

/* Full-Width Image Banner */
.image-banner {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.image-banner-content {
  max-width: 550px;
  color: #fff;
}

.image-banner-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Split Image + Content Section */
.split-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-image-section.reverse {
  direction: rtl;
}

.split-image-section.reverse > * {
  direction: ltr;
}

.split-image-side {
  position: relative;
  overflow: hidden;
}

.split-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-image-side:hover img {
  transform: scale(1.05);
}

.split-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--neutral-light);
}

.split-content-side.dark {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #172554 100%);
}

.split-content-side.dark h2,
.split-content-side.dark h3,
.split-content-side.dark p {
  color: #fff;
}

.split-content-side.dark .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Floating Image Cards */
.floating-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.floating-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.floating-image-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.18);
}

.floating-image-card .card-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.floating-image-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.floating-image-card:hover .card-image-wrap img {
  transform: scale(1.1);
}

.floating-image-card .card-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
}

.floating-image-card .card-body {
  padding: 1.75rem;
  position: relative;
  margin-top: -30px;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.floating-image-card .card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.floating-image-card .card-body p {
  font-size: 0.95rem;
  color: var(--neutral-mid);
  margin-bottom: 1.25rem;
}

/* Masonry Image Gallery */
.masonry-gallery {
  columns: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
  transition: all 0.4s ease;
}

.masonry-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Image Testimonial Cards */
.testimonial-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.testimonial-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.testimonial-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}

.testimonial-image-card .testimonial-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
}

.testimonial-image-card .testimonial-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-image-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-image-card .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.testimonial-image-card .author-info strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.testimonial-image-card .author-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Hero Image Collage */
.hero-image-collage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.collage-main {
  grid-row: span 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-side {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.collage-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Image Cards with Overlay */
.service-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-image-card:hover img {
  transform: scale(1.1);
}

.service-image-card .service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(58, 78, 167, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s ease;
}

.service-image-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(58, 78, 167, 0.3) 0%, rgba(58, 78, 167, 0.98) 100%);
}

.service-image-card .service-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.service-image-card:hover .service-overlay h3 {
  transform: translateY(0);
}

.service-image-card .service-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  margin-bottom: 1rem;
}

.service-image-card:hover .service-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.service-image-card .service-overlay .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}

.service-image-card:hover .service-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Stats with Background Image */
.stats-image-section {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-image-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 240, 0.92) 0%, rgba(58, 78, 167, 0.95) 100%);
}

.stats-image-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

/* Before/After Image Comparison */
.before-after-section {
  background: var(--neutral-light);
  padding: 5rem 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.before-after-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.before-after-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.before-after-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-after-label.after {
  background: var(--accent-orange);
}

/* Local Area Image Section */
.local-area-showcase {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.local-area-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #172554 100%);
}

.local-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.local-area-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  transition: all 0.4s ease;
}

.local-area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

.local-area-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.local-area-card .area-info {
  padding: 1.5rem;
  text-align: center;
}

.local-area-card .area-info h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.local-area-card .area-info span {
  color: var(--neutral-mid);
  font-size: 0.875rem;
}

/* CTA with Background Image */
.cta-image-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-image-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.95) 0%, rgba(244, 201, 93, 0.9) 100%);
}

.cta-image-section .container {
  position: relative;
  z-index: 2;
}

.cta-image-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-image-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Team Image Section */
.team-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-member-card {
  text-align: center;
}

.team-member-card .member-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
  border: 5px solid #fff;
}

.team-member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .member-image img {
  transform: scale(1.1);
}

.team-member-card h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.team-member-card span {
  color: var(--neutral-mid);
  font-size: 0.9rem;
}

/* Process Steps with Images */
.process-image-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: step-counter;
}

.process-image-step {
  position: relative;
  text-align: center;
}

.process-image-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 180, 240, 0.35);
}

.process-image-step .step-image {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
}

.process-image-step .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-image-step h4 {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.process-image-step p {
  color: var(--neutral-mid);
  font-size: 0.95rem;
}

/* Responsive Image Sections */
@media (max-width: 1200px) {
  .image-showcase {
    grid-template-rows: repeat(3, 220px);
  }
  
  .showcase-item.large {
    grid-column: span 12;
    grid-row: span 1;
  }
  
  .showcase-item.medium,
  .showcase-item.small {
    grid-column: span 6;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .local-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 400px;
  }
  
  .split-image-section {
    grid-template-columns: 1fr;
  }
  
  .split-image-section.reverse {
    direction: ltr;
  }
  
  .split-image-side {
    height: 350px;
  }
  
  .split-content-side {
    padding: 3rem 2rem;
  }
  
  .floating-image-grid {
    grid-template-columns: 1fr;
  }
  
  .masonry-gallery {
    columns: 2;
  }
  
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  
  .process-image-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .image-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .showcase-item.large,
  .showcase-item.medium,
  .showcase-item.small {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
  }
  
  .image-banner {
    height: 430px;
  }
  
  .image-banner-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 2.75rem 1.75rem 3.25rem;
    align-items: flex-start;
  }
  
  .hero-image-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 150px 150px;
  }
  
  .collage-main {
    grid-row: span 1;
  }
  
  .masonry-gallery {
    columns: 1;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item .stat-number {
    font-size: 2.5rem;
  }
  
  .local-area-grid {
    grid-template-columns: 1fr;
  }
  
  .team-image-grid {
    grid-template-columns: 1fr;
  }
  
  .service-image-card {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .parallax-section {
    min-height: 350px;
  }
  
  .floating-image-card .card-image-wrap {
    height: 200px;
  }
  
  .testimonial-image-card {
    min-height: 350px;
  }
  
  .process-image-step .step-image {
    height: 180px;
  }
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid .footer-column:nth-child(3) {
    grid-column: span 1;
  }
  .footer-grid .footer-column:nth-child(4) {
    grid-column: span 3;
  }
  .footer-grid .footer-column:nth-child(4) .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-grid .footer-column:nth-child(1) {
    grid-column: span 2;
  }
  .footer-grid .footer-column:nth-child(3) {
    grid-column: span 2;
  }
  .footer-grid .footer-column:nth-child(4) {
    grid-column: span 2;
  }
  .mobile-cta-bar {
    display: flex;
  }
  .footer {
    padding-bottom: 5rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 3rem 0 5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid .footer-column {
    grid-column: span 1 !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand img {
    max-width: 150px;
  }
  .area-links {
    justify-content: flex-start;
  }
}

/* ==================== ENHANCED BUTTONS & CTAs ==================== */

/* Primary Button - Solid Orange with high contrast */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(255, 138, 61, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6b1a 0%, var(--accent-orange) 100%);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 138, 61, 0.5);
}

/* Secondary Button - Navy solid */
.btn-secondary {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #2d3a8c 100%);
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(58, 78, 167, 0.35);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 78, 167, 0.45);
}

/* Outline Button - White border for dark backgrounds */
.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary-navy) !important;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

/* White Button - For colored backgrounds */
.btn-white {
  background: #fff;
  color: var(--primary-navy) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--neutral-light);
  color: var(--primary-navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Large Button */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Small Button */
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Link styled as button */
.btn-link {
  background: transparent;
  color: var(--primary-blue);
  padding: 0.5rem 0;
  box-shadow: none;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.btn-link:hover {
  color: var(--accent-orange);
  transform: none;
  box-shadow: none;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* ==================== IMPROVED HERO CTAs ==================== */
.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(255, 138, 61, 0.5);
}

.hero-cta .btn-outline {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  border-width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-cta .btn-outline:hover {
  background: #fff;
  color: var(--primary-navy) !important;
}

/* ==================== IMPROVED PARALLAX SECTIONS ==================== */
.parallax-section::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(58, 78, 167, 0.88) 100%);
}

.parallax-section h2 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.parallax-section p {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.parallax-section .btn-primary {
  box-shadow: 0 10px 35px rgba(255, 138, 61, 0.5);
}

.parallax-section .btn-outline {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== IMPROVED SERVICE CARDS ==================== */
.floating-image-card .btn,
.service-image-card .btn {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.floating-image-card .btn:hover,
.service-image-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 138, 61, 0.4);
}

/* Card link styling */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.card-link:hover {
  color: var(--accent-orange);
  gap: 0.75rem;
}

/* ==================== IMPROVED FOOTER SERVICE AREAS ==================== */
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  line-height: 1.9;
}

.area-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.area-links a:hover {
  color: var(--primary-blue);
}

.area-links .sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.4rem;
  font-size: 0.65rem;
}

/* ==================== IMPROVED REFERRAL SECTION ==================== */
.image-banner-content .btn {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.image-banner-content .btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
}

.image-banner-content .btn-outline {
  border-color: #fff;
  color: #fff !important;
}

/* ==================== SPLIT SECTION CTAs ==================== */
.split-content-side .btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
  margin-top: 1rem;
}

.split-content-side.dark .btn-primary {
  box-shadow: 0 10px 30px rgba(255, 138, 61, 0.4);
}

.split-content-side.dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== CTA IMAGE SECTION IMPROVEMENTS ==================== */
.cta-image-section .btn {
  margin: 0 0.5rem 0.5rem;
}

.cta-image-section .btn-white {
  background: #fff;
  color: var(--accent-orange) !important;
  font-weight: 700;
}

.cta-image-section .btn-outline {
  border-color: #fff;
  color: #fff !important;
}

/* ==================== QUICK LINKS FOOTER IMPROVEMENTS ==================== */
.footer-links a {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

/* ==================== MOBILE CTA BAR IMPROVEMENTS ==================== */
.mobile-cta-bar a {
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
}

.mobile-cta-call {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #2d3a8c 100%);
}

.mobile-cta-book {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
}

/* ==================== STATS SECTION IMPROVEMENTS ==================== */
.stats-image-section::before {
  background: linear-gradient(135deg, rgba(0, 180, 240, 0.95) 0%, rgba(58, 78, 167, 0.97) 100%);
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ==================== GENERAL LINK IMPROVEMENTS ==================== */
a.learn-more,
a[class*="learn"],
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

a.learn-more:hover,
a[class*="learn"]:hover,
.service-link:hover {
  color: var(--accent-orange);
  gap: 0.75rem;
}

a.learn-more::after,
.service-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

a.learn-more:hover::after,
.service-link:hover::after {
  transform: translateX(4px);
}

/* ==================== CONTRAST FIXES ==================== */
/* Ensure text on dark backgrounds is readable */
.dark-bg,
[class*="dark"],
.parallax-section,
.hero,
.stats-image-section,
.cta-image-section,
.image-banner-overlay {
  --text-color: #fff;
  --text-muted: rgba(255, 255, 255, 0.85);
}

/* Ensure text on light backgrounds is readable */
.light-bg,
.split-content-side:not(.dark) {
  --text-color: var(--neutral-darkest);
  --text-muted: var(--neutral-mid);
}
