:root {
    --navy: #0f2137;
    --navy-mid: #1a365d;
    --blue-deep: #1e4a7a;
    --blue: #3182CE;
    --blue-mid: #4a9fd8;
    --blue-light: #63B3ED;
    --blue-pale: #BEE3F8;
    --blue-wash: #EBF8FF;
    --blue-streak-1: #2b6cb0;
    --blue-streak-2: #3182CE;
    --blue-streak-3: #4a9fd8;
    --blue-streak-4: #63B3ED;
    --blue-streak-5: #90CDF4;
    --white: #ffffff;
    --off-white: #f7fafc;
    --grey-50: #f8fafc;
    --grey-100: #f1f5f9;
    --grey-200: #e2e8f0;
    --grey-300: #cbd5e1;
    --grey-400: #94a3b8;
    --grey-500: #64748b;
    --grey-600: #475569;
    --grey-700: #334155;
    --text: #1e293b;
    --text-light: #64748b;
    --cta: #2563EB;
    --cta-hover: #1d4ed8;
    --cta-glow: rgba(37, 99, 235, 0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── TYPOGRAPHY ─── */
  .display { font-family: 'Playfair Display', serif; }
  .heading { font-family: 'Plus Jakarta Sans', sans-serif; }

  /* ─── FLOWING STREAKS (SVG background elements) ─── */
  .streak-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }

  .streak-container svg {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
  }

  nav.scrolled {
    border-bottom-color: var(--grey-200);
    box-shadow: 0 1px 12px rgba(15,33,55,0.06);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
  }

  .nav-logo {
    height: 36px;
    width: auto;
    flex-shrink: 0;
  }

  .nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .nav-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
  }

  .nav-brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--grey-600);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { width: 100%; }

  .nav-phone {
    color: var(--navy) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.02em !important;
  }

  .nav-cta {
    background: var(--cta) !important;
    color: white !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03em !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 8px var(--cta-glow);
  }

  .nav-cta:hover {
    background: var(--cta-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--cta-glow);
  }

  .nav-cta::after { display: none !important; }

  /* ─── NAV SOCIAL ICONS ─── */
  .nav-social-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin-right: 0.25rem;
  }

  .nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--blue-mid) !important;
    transition: all 0.25s;
  }

  .nav-social:hover {
    background: var(--blue-wash);
    color: var(--cta) !important;
    transform: translateY(-1px);
  }

  .nav-social::after { display: none !important; }

  /* ─── NAV DROPDOWN ─── */
  .nav-has-dropdown {
    position: relative;
    list-style: none;
  }

  .nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey-600);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    transition: color 0.3s;
  }

  .nav-dropdown-toggle:hover { color: var(--navy); }
  .nav-dropdown-toggle svg { transition: transform 0.2s; }
  .nav-has-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(15,33,55,0.1);
    padding: 0.5rem 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    margin-top: 12px;
    z-index: 1001;
  }

  .nav-has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown li { list-style: none; }

  .nav-dropdown a {
    display: block;
    padding: 0.55rem 1.25rem;
    color: var(--grey-600) !important;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }

  .nav-dropdown a:hover {
    background: var(--blue-wash);
    color: var(--blue) !important;
  }

  .nav-dropdown a::after { display: none !important; }

  /* ─── MOBILE NAV OVERLAY ─── */
  .mobile-nav-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }

  .mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-overlay a {
    display: block;
    padding: 0.85rem 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--grey-100);
  }

  .mobile-nav-overlay .nav-cta {
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
    background: var(--cta);
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border-bottom: none;
  }

  .mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-100);
  }

  .mobile-social .nav-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-mid);
    transition: all 0.25s;
  }

  .mobile-social .nav-social:hover {
    background: var(--cta);
    color: white;
  }

  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--navy);
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 3rem 0;
    background: var(--white);
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: white;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid var(--navy);
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
  }

  .hero h1 .accent {
    color: var(--blue);
    font-style: italic;
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--grey-500);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--cta);
    color: white;
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px var(--cta-glow);
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--cta-glow);
  }

  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.9rem 1.8rem;
    border: 2px solid var(--grey-200);
    border-radius: 8px;
    transition: all 0.3s;
    background: white;
  }

  .btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-wash);
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 3px solid var(--navy);
  }

  .hero-stat {
    text-align: left;
  }

  .hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }

  .hero-stat-number .blue { color: var(--blue); }

  .hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-400);
    font-weight: 600;
    margin-top: 0.25rem;
  }

  .hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  /* ─── BEFORE/AFTER COMPARISON SLIDER ─── */
  .comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
  }

  .comparison-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    pointer-events: none;
  }

  .comparison-before-layer {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
  }

  .comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: white;
    z-index: 5;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    pointer-events: none;
  }

  .comparison-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .comparison-slider:hover .comparison-handle,
  .comparison-slider.dragging .comparison-handle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  }

  .comparison-handle svg {
    color: var(--navy);
  }

  .comparison-label {
    position: absolute;
    top: 16px;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
  }

  .comparison-label-before {
    right: 16px;
    background: rgba(15, 33, 55, 0.75);
    color: white;
    backdrop-filter: blur(4px);
  }

  .comparison-label-after {
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, var(--blue-wash) 0%, var(--blue-pale) 40%, var(--blue-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    border: 2px dashed var(--blue-light);
  }

  .placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border: 2px dashed var(--blue-light);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-wash) 0%, rgba(190,227,248,0.3) 100%);
    color: var(--blue-deep);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--blue-light);
    margin-bottom: 0.75rem;
  }

  .placeholder-text {
    max-width: 260px;
    font-size: 0.78rem;
    color: var(--blue);
    opacity: 0.8;
  }

  .hero-image-float {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15,33,55,0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
  }

  .float-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-wash);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
  }

  .float-text {
    display: flex;
    flex-direction: column;
  }

  .float-text strong {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 700;
  }

  .float-text span {
    font-size: 0.68rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  /* ─── TRUST STRIP ─── */
  .trust-strip {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .trust-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey-400);
    font-weight: 700;
    white-space: nowrap;
  }

  .trust-divider {
    width: 1px;
    height: 28px;
    background: var(--grey-200);
  }

  .trust-logo {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    filter: grayscale(0.15);
    transition: all 0.3s;
  }

  .trust-logo:hover {
    opacity: 1;
    filter: grayscale(0);
  }

  .trust-logo-placeholder {
    height: 40px;
    padding: 0 1rem;
    background: var(--grey-100);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--grey-400);
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border: 1px dashed var(--grey-300);
  }

  /* ─── SECTIONS ─── */
  .section {
    padding: 6rem 3rem;
    position: relative;
  }

  .section-inner {
    max-width: 1320px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .section-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
  }

  .section-title .accent {
    color: var(--blue);
    font-style: italic;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--grey-500);
    max-width: 560px;
    line-height: 1.75;
  }

  /* ─── SERVICES ─── */
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    background: white;
    border: 1px solid var(--grey-200);
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,33,55,0.1);
  }

  .service-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 2px solid var(--blue);
    box-shadow: 0 8px 32px rgba(49, 130, 206, 0.12);
  }

  .service-card-image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
  }

  .service-card.featured .service-card-image {
    min-height: 360px;
  }

  .service-card-image .placeholder {
    height: 100%;
    min-height: 260px;
    border-radius: 0;
    border: none;
    border-bottom: 2px dashed var(--blue-light);
  }

  .service-card.featured .service-card-image .placeholder {
    min-height: 360px;
    border-bottom: none;
    border-right: 2px dashed var(--blue-light);
  }

  .service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-card.featured .service-card-body {
    padding: 3rem;
  }

  .service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.75rem;
  }

  .service-tag-featured {
    background: var(--cta);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .service-card.featured h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cta);
    transition: gap 0.3s;
    text-decoration: none;
  }

  .service-card:hover .service-link { gap: 0.7rem; }

  /* ─── ABOUT ─── */
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-image {
    position: relative;
  }

  .about-image .placeholder {
    min-height: 480px;
    border-radius: 16px;
  }

  .about-stat-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    background: var(--navy);
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 33, 55, 0.25);
    z-index: 3;
  }

  .about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1;
    color: white;
    font-weight: 900;
  }

  .about-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    margin-top: 0.2rem;
  }

  .about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--navy);
    font-weight: 600;
  }

  .about-text p {
    color: var(--grey-500);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .about-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--blue-wash);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .about-feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--blue);
  }

  .about-feature span {
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 600;
  }

  /* ─── GALLERY ─── */
  .gallery-strip {
    overflow: hidden;
    background: var(--grey-50);
    position: relative;
  }

  .gallery-heading-bar {
    padding: 4rem 3rem 2rem;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .gallery-scroll {
    display: flex;
    gap: 6px;
    padding-bottom: 4rem;
  }

  .gallery-item {
    flex: 0 0 25%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
  }

  .gallery-item .placeholder {
    height: 100%;
    border-radius: 4px;
    border: none;
    font-size: 0.7rem;
  }

  .gallery-item:hover .placeholder {
    background: linear-gradient(135deg, var(--blue-wash) 0%, var(--blue-pale) 100%);
  }

  /* ─── GALLERY GRID (for gallery page) ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
  }

  .gallery-grid-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
  }

  .gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

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

  .gallery-grid-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(15,33,55,0.7));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  /* ─── GALLERY FILTER ─── */
  .gallery-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--grey-200);
    border-radius: 100px;
    background: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--grey-500);
    cursor: pointer;
    transition: all 0.3s;
  }

  .gallery-filter-btn:hover,
  .gallery-filter-btn.active {
    background: var(--cta);
    color: white;
    border-color: var(--cta);
  }

  /* ─── WHY US ─── */
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .offer-card {
    background: white;
    border: 1px solid var(--grey-200);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    opacity: 1;
    transition: opacity 0.3s;
  }

  .offer-card:hover {
    border-color: var(--blue-pale);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,33,55,0.08);
  }

  .offer-card:hover::before { opacity: 1; }

  .offer-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-wash);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--blue);
  }

  .offer-icon svg {
    width: 22px;
    height: 22px;
  }

  .offer-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }

  .offer-card p {
    font-size: 0.88rem;
    color: var(--grey-500);
    line-height: 1.7;
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    position: relative;
    padding: 6rem 3rem;
    text-align: center;
    overflow: hidden;
    background: var(--navy);
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
  }

  .cta-content .section-eyebrow {
    color: var(--blue-light);
    justify-content: center;
  }

  .cta-content .section-eyebrow::before {
    background: var(--blue-light);
  }

  .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
  }

  .cta-content h2 .accent {
    color: var(--blue-light);
    font-style: italic;
  }

  .cta-content p {
    color: var(--grey-400);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .cta-phone {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
  }

  .cta-phone:hover { color: var(--blue-light); }

  .cta-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
  }

  /* ─── CONTACT ─── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    color: var(--navy);
    font-weight: 600;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .contact-detail-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-wash);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-detail-icon svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
  }

  .contact-detail-text {
    display: flex;
    flex-direction: column;
  }

  .contact-detail-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-400);
    font-weight: 600;
    margin-bottom: 0.15rem;
  }

  .contact-detail-value {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }

  a.contact-detail-value:hover { color: var(--blue); }

  .contact-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .contact-social {
    width: 40px;
    height: 40px;
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-500);
    text-decoration: none;
    transition: all 0.3s;
  }

  .contact-social:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-wash);
    transform: translateY(-2px);
  }

  .contact-social svg {
    width: 17px;
    height: 17px;
  }

  /* ─── FORM ─── */
  .contact-form {
    background: var(--grey-50);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--grey-200);
  }

  .contact-form h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.75rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .form-group {
    margin-bottom: 0.85rem;
  }

  .form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-500);
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: white;
    border: 1px solid var(--grey-200);
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-wash);
  }

  .form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

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

  .form-submit {
    width: 100%;
    background: var(--cta);
    color: white;
    border: none;
    padding: 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 0.25rem;
    box-shadow: 0 4px 16px var(--cta-glow);
  }

  .form-submit:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--cta-glow);
  }

  .form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }

  .form-status {
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .form-status.success {
    background: #f0fff4;
    color: #22543d;
    border: 1px solid #c6f6d5;
  }

  .form-status.error {
    background: #fff5f5;
    color: #9b2c2c;
    border: 1px solid #fed7d7;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 4rem 3rem 2rem;
    color: white;
  }

  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .footer-brand-text {
    font-size: 0.88rem;
    color: var(--grey-400);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-300);
    margin-bottom: 1.25rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    color: var(--grey-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: white; }

  .footer-links li {
    color: var(--grey-400);
    font-size: 0.85rem;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
  }

  .footer-bottom p {
    font-size: 0.72rem;
    color: var(--grey-500);
  }

  .footer-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-payment-badge {
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--grey-400);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* ─── SERVICE PAGE SPECIFIC ─── */
  .service-hero {
    position: relative;
    padding: 10rem 3rem 5rem;
    overflow: hidden;
    background: var(--grey-50);
  }

  .service-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .service-hero h1 .accent {
    color: var(--blue);
    font-style: italic;
  }

  .service-hero-desc {
    font-size: 1.1rem;
    color: var(--grey-500);
    max-width: 600px;
    line-height: 1.75;
  }

  .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .service-detail-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .service-detail-text p {
    color: var(--grey-500);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .service-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  .service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.6;
  }

  .service-feature-list li svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .service-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15,33,55,0.1);
  }

  .service-image-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ─── LIGHTBOX ─── */
  .lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    cursor: zoom-out;
  }

  .lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    cursor: default;
  }

  .lightbox-img-wrap img {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .lightbox-img-wrap img.loaded {
    opacity: 1;
  }

  .lightbox-caption {
    text-align: center;
    padding: 0.75rem 0 0;
    color: rgba(255,255,255,0.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .lightbox-counter {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-top: 0.25rem;
  }

  .lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    z-index: 2001;
    transition: all 0.25s;
  }

  .lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
  }

  .lightbox-prev,
  .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    z-index: 2001;
    transition: all 0.25s;
  }

  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%) scale(1.05);
  }

  @media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
      width: 38px;
      height: 38px;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-close { top: 0.75rem; right: 0.75rem; width: 38px; height: 38px; }
  }

  /* ─── GALLERY GRID ITEM — clickable cursor ─── */
  .gallery-grid-item[data-lightbox] {
    cursor: zoom-in;
  }

  /* ─── ANIMATIONS ─── */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-content > * {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge { animation-delay: 0.2s; }
  .hero h1 { animation-delay: 0.35s; }
  .hero-desc { animation-delay: 0.5s; }
  .hero-actions { animation-delay: 0.65s; }
  .hero-stats { animation-delay: 0.8s; }

  .hero-image {
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-image { max-width: 600px; }
    .services-layout { grid-template-columns: 1fr; }
    .service-card.featured { grid-template-columns: 1fr; }
    .service-card.featured .service-card-image .placeholder { border-right: none; border-bottom: 2px dashed var(--blue-light); }
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-hero { padding: 8rem 1.25rem 3rem; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 72px 1.25rem 0; }
    .section { padding: 4rem 1.25rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .offers-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-item { flex: 0 0 70%; }
    .gallery-heading-bar { padding: 3rem 1.25rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .trust-strip { gap: 1.5rem; padding: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 4rem 1.25rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .comparison-slider { min-height: unset; }
    .comparison-slider img { min-height: unset; }
    .btn-outline { white-space: nowrap; }
    .hero-stats { gap: 1rem; }
    .hero-stat-number { font-size: 2rem; }
  }
