* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure all images are responsive and don't overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: Verdana, sans-serif;
    background-color: #0f1419;
    color: #e6edf3;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    /* Page transition animation */
    animation: fadeInPage 0.5s ease-in-out;
}

/* UI Switcher Base Styles */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Desktop UI Styles */
body.desktop-ui .desktop-only {
    display: block;
}

body.desktop-ui .mobile-only {
    display: none !important;
}

/* Mobile UI Styles */
body.mobile-ui .desktop-only {
    display: none !important;
}

body.mobile-ui .mobile-only {
    display: block;
}

/* Home page: always use desktop layout (same as first SS) on all viewports */
body.home-page.mobile-ui .desktop-only {
    display: block !important;
}
body.home-page.mobile-ui .mobile-only {
    display: none !important;
}

/* Website: one Book Now screen only – hide desktop hero (wireframe + slogan + Book Now), show the other hero */
@media (min-width: 769px) {
    body.home-page .hero.desktop-only {
        display: none !important;
    }
    body.home-page .hero-mobile.mobile-only {
        display: block !important;
    }
    /* Book Now above scroll-down: scroll indicator at bottom of section */
    body.home-page .hero-mobile {
        padding-bottom: 5rem;
        transform: translateY(-2cm);
    }
    body.home-page .hero-mobile .hero-scroll-down {
        bottom: 1.5rem;
    }

    /* Website only: top nav exactly like screenshot – dark bar, CARSFINITY left (silver), links right, active blue */
    .navbar {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        background: #121417;
        border: none;
        box-shadow: none;
    }
    .navbar .nav-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .navbar .nav-container .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    .navbar .logo-image {
        height: 1.75rem;
        width: auto;
        max-width: 200px;
        object-fit: contain;
        object-position: left center;
        filter: none;
        opacity: 1;
    }
    .navbar .nav-menu {
        flex-wrap: nowrap;
        gap: 1.75rem;
    }
    .navbar .nav-link {
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        padding: 0.4rem 0;
        color: #9ca3af;
        background: transparent;
        border-radius: 0;
        transition: color 0.2s ease;
    }
    .navbar .nav-link:hover {
        color: #d1d5db;
        background: transparent;
    }
    .navbar .nav-link.active {
        color: #4a9eff;
        transform: none;
    }
    .navbar .nav-link.active::after,
    .navbar .nav-link.active::before {
        display: none;
    }
}

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

html {
    scroll-behavior: smooth;
    background-color: #0f1419;
    /* Optimize scroll performance */
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 70px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Page content fade-in animation */
.container,
section {
    animation: fadeInContent 0.6s ease-out 0.2s both;
}

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

body {
    /* Optimize scroll performance */
    will-change: scroll-position;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background-color: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding-top: clamp(0.25rem, 1vw, 0.5rem);
    padding-bottom: 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 1.5vw, 2rem);
    padding-left: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: transparent;
}

.navbar .logo {
    background: transparent;
    padding: 0;
    overflow: visible;
}

/* Navbar logo: website only = web_300_35.svg, mobile = 170X45.svg */
.navbar .logo-image.logo-mobile {
    display: block;
}
.navbar .logo-image.logo-desktop {
    display: none;
}
@media (min-width: 769px) {
    .navbar .logo-image.logo-mobile {
        display: none;
    }
    .navbar .logo-image.logo-desktop {
        display: block;
    }
}

.navbar .logo-image {
    height: clamp(4rem, 12vw, 6.5rem);
    width: auto;
    margin-left: 0;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    filter: brightness(1.12) contrast(1.1) drop-shadow(0 0 10px rgba(255,255,255,0.4)) drop-shadow(0 0 20px rgba(255,255,255,0.2));
    transition: filter 0.25s ease;
    transform: scale(1.5);
    transform-origin: left center;
}

.navbar .logo-image:hover {
    filter: brightness(1.2) contrast(1.12) drop-shadow(0 0 14px rgba(255,255,255,0.5)) drop-shadow(0 0 28px rgba(255,255,255,0.25));
    transform: scale(1.5);
    transform-origin: left center;
}

.logo-image {
    height: clamp(4rem, 12vw, 6.5rem);
    width: auto;
    margin-left: 0;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
    filter: brightness(1.12) contrast(1.1) drop-shadow(0 0 10px rgba(255,255,255,0.4)) drop-shadow(0 0 20px rgba(255,255,255,0.2));
    transform: scale(1.5);
    transform-origin: left center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.25rem, 1.5vw, 2rem);
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0;
    list-style: none;
}

.nav-link {
    color: #e6edf3;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.7rem, 1.8vw, 1.2rem);
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.4rem, 1vw, 1rem);
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.nav-link:hover {
    color: #4a9eff;
}

.nav-link:active {
    transform: translateY(2px) scale(0.98);
    transition: transform 0.1s ease;
}

.nav-link.active {
    transform: scale(1.15);
}

.nav-link.active::before {
    display: none;
}

.nav-link.active::after {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link:hover::after {
    display: none;
}

.book-btn-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.book-btn-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.book-btn-nav::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #0f1419 0%, #151b23 50%, #1a2129 100%);
    padding-top: clamp(60px, 8vw, 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 2vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    gap: clamp(1rem, 3vw, 2rem);
    padding-top: clamp(4rem, 8vw, 8rem);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    z-index: 3;
    position: relative;
}

.hero-headline {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.4;
    color: #e8ecf0;
    margin: 0;
    white-space: nowrap;
    transition: text-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: Verdana, sans-serif;
    text-shadow:
        0 0 20px rgba(192, 200, 212, 0.5),
        0 0 40px rgba(180, 190, 205, 0.35),
        0 0 60px rgba(160, 172, 190, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-headline.glow {
    /* Keep same style */
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #8b949e;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.hero-tagline {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #8b949e;
    line-height: 1.6;
    margin: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(1rem, 3vw, 2rem) 0;
    opacity: 0.85;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
    max-width: 55%;
    z-index: 3;
    min-height: clamp(200px, 40vw, 450px);
}

.hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    min-height: clamp(200px, 35vw, 380px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: visible;
    padding: clamp(1rem, 2.5vw, 2rem);
}

.hero-logo-image {
    width: 100%;
    height: auto;
    max-width: min(85vw, 720px);
    max-height: min(75vh, 680px);
    display: block;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    opacity: 1;
    visibility: visible;
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-logo-image:hover {
    transform: translateZ(0) scale(1.05);
}

/* Scroll-down indicator: prompts user to scroll to Instagram journey */
.hero-scroll-down {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.hero-scroll-down:hover {
    color: #fff;
    transform: translateX(-50%) translateY(4px);
}
.hero-scroll-down svg {
    display: block;
    animation: hero-scroll-bounce 2s ease-in-out infinite;
}
@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Mobile Hero Section - Completely Different Design */
.hero-mobile {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #0f1419 0%, #151b23 50%, #1a2129 100%);
    padding-top: calc(clamp(50px, 7vw, 80px) + 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-mobile-container {
    width: 100%;
    max-width: 100%;
    padding: clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.hero-mobile-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
    overflow: visible;
}

.hero-mobile-logo {
    width: 100%;
    height: auto;
    max-width: min(88vw, 420px);
    max-height: min(50vh, 380px);
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-mobile-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: #e8ecf0;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: Verdana, sans-serif;
    text-shadow:
        0 0 20px rgba(192, 200, 212, 0.5),
        0 0 40px rgba(180, 190, 205, 0.35),
        0 0 60px rgba(160, 172, 190, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-mobile-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 300;
    color: #8b949e;
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-mobile .hero-scroll-down {
    bottom: clamp(5rem, calc(5vw + 3rem), 7rem);
}

.book-button-mobile {
    display: inline-block;
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    border: 2px solid rgba(74, 158, 255, 0.35);
    transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: expert-btn-glow 2.2s ease-in-out infinite;
    min-height: 50px;
    min-width: 160px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 1rem;
    letter-spacing: 0.1em;
    font-family: Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
}

.book-button-mobile:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(74, 158, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 28px rgba(74, 158, 255, 0.45), 0 0 40px rgba(74, 158, 255, 0.25), 0 0 0 1px rgba(74, 158, 255, 0.3), 0 8px 28px rgba(255, 255, 255, 0.2);
    animation: none;
}

.book-button-mobile:active {
    transform: translateY(-1px) scale(0.96);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.2);
    transition-duration: 0.1s;
}

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

/* ============================================
   Instagram Journey: 0 → 25k (cinematic reel)
   ============================================ */
.instagram-journey {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 10vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(180deg, #0f1419 0%, #151b23 50%, #1a2129 100%);
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.ig-journey-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: translateZ(0);
}
.ig-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.6;
}
.ig-sweep {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: translateZ(0);
}
.ig-sweep::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.03) 45%, transparent 55%);
    animation: igSweep 8s ease-in-out infinite;
    will-change: transform;
}
@keyframes igSweep {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(200%); }
}
.ig-journey-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.ig-counter-block {
    text-align: center;
    flex: 0 1 auto;
    min-width: 280px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.ig-tagline {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.5rem;
    opacity: 0;
    transform: translateY(10px) translateZ(0);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateY(10px) translateZ(0);
}
.instagram-journey.ig-active .ig-tagline-1,
.instagram-journey.ig-active .ig-tagline-2 { opacity: 1; transform: translateY(0); }
.ig-tagline-2 { transition-delay: 0.3s; }
.ig-counter-wrap {
    margin: 0.5rem 0 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15em;
}
.ig-counter {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.ig-counter-suffix {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}
.ig-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin: clamp(1.5rem, 4vw, 2.5rem) auto;
    max-width: 520px;
}
/* Single-thumb carousel: one visible at a time, circular rotate in/out (original IGT image size) */
.ig-thumb-carousel {
    position: relative;
    width: 100%;
    flex: 1 1 0;
    min-width: 0;
    max-width: min(55vw, 580px);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    aspect-ratio: 1;
    max-height: min(82vh, 580px);
    min-height: min(70vh, 420px);
    border-radius: 16px;
    overflow: hidden;
    perspective: 1200px;
}
.ig-thumb-carousel .ig-thumb-slide {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: rotateY(90deg) translateZ(0);
    transform-origin: center center;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.ig-thumb-carousel .ig-thumb-slide.ig-thumb-active {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0);
    pointer-events: auto;
    z-index: 2;
}
.ig-thumb-carousel .ig-thumb-slide.ig-thumb-exit {
    opacity: 0;
    transform: rotateY(-90deg) translateZ(0);
    z-index: 1;
}
.ig-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    transform: translateZ(0);
}
.ig-thumb-carousel .ig-thumb {
    height: 100%;
    width: 100%;
    border-radius: 16px;
}
.ig-thumb-img {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.ig-thumb:hover .ig-thumb-img { transform: scale(1.08); }
.ig-play {
    display: none;
}
.ig-play::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    border: 6px solid transparent;
    border-left-color: #fff;
    border-width: 6px 0 6px 10px;
    margin-left: 2px;
}
.ig-micro {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin: 0.25rem 0;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
}
.instagram-journey.ig-active .ig-micro { opacity: 1; }
.ig-cta-line {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: clamp(1rem, 3vw, 1.5rem) 0 0;
    max-width: 420px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}
.instagram-journey.ig-active .ig-cta-line { opacity: 1; }

/* Journey active: lock scroll, fullscreen feel */
body.ig-journey-lock {
    overflow: hidden;
    height: 100vh;
}
.instagram-journey.ig-fixed {
    position: fixed;
    inset: 0;
    z-index: 100;
    min-height: 100vh;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: clamp(2rem, 6vw, 3.5rem);
}
.instagram-journey.ig-completed {
    pointer-events: auto;
}
/* Completion block: thank you + Instagram page (replaces counter + carousel when story ends) */
.ig-complete-block {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s;
}
.instagram-journey.ig-completed .ig-complete-block {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.ig-thank-you {
    font-family: inherit;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-align: center;
    flex: 0 1 auto;
    min-width: 260px;
    max-width: 420px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 50%, rgba(200,220,255,0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.2));
}
@supports not (background-clip: text) {
    .ig-thank-you { color: #fff; background: none; -webkit-text-fill-color: #fff; }
}
.ig-insta-page-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: min(55vw, 520px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    aspect-ratio: 9 / 8;
    position: relative;
}
.ig-insta-page-wrap a {
    display: block;
    position: absolute;
    inset: 0;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
}
.ig-insta-page-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.instagram-journey.ig-completed .ig-counter-block,
.instagram-journey.ig-completed .ig-thumb-carousel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s;
}
.instagram-journey.ig-completed .ig-journey-inner {
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {
    .ig-journey-inner { flex-direction: column; }
    .ig-thumb-carousel {
        max-width: 100%;
        min-height: min(50vh, 360px);
    }
    .ig-complete-block {
        flex-direction: column;
        justify-content: center;
    }
    .ig-thank-you { max-width: 100%; }
    .ig-insta-page-wrap { max-width: 100%; aspect-ratio: 9 / 8; }
}
@media (max-width: 600px) {
    .ig-thumbnails:not(.ig-thumbnails-strip) { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .ig-counter { font-size: clamp(2.5rem, 14vw, 4rem); }
    .ig-thank-you { font-size: clamp(1.5rem, 6vw, 2rem); min-width: 0; }
}

.book-button {
    display: inline-block;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    background: #f0f6fc;
    color: #0f1419;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    border: 1px solid rgba(74, 158, 255, 0.35);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, text-shadow 0.2s ease;
    animation: expert-btn-glow 2.2s ease-in-out infinite;
    width: fit-content;
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: Verdana, sans-serif;
    min-height: 44px;
    min-width: clamp(120px, 20vw, 140px);
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.book-button:hover {
    background: #ffffff;
    border-color: rgba(74, 158, 255, 0.6);
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 0 28px rgba(74, 158, 255, 0.45), 0 0 40px rgba(74, 158, 255, 0.25), 0 0 0 1px rgba(74, 158, 255, 0.3), 0 8px 28px rgba(0, 0, 0, 0.3);
    text-shadow: none;
    animation: none;
}

.book-button:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition-duration: 0.1s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: none;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) clamp(0.75rem, 2vw, 2rem);
}

/* Section Titles */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    color: #1a1a1a;
    position: relative;
    padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
    text-shadow: none;
    opacity: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4a9eff 0%, #0066cc 100%);
}


/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #151b23 0%, #0f1419 100%);
}

.services-main-title {
    font-size: clamp(2rem, 6vw, 4rem);
    text-align: center;
    margin: clamp(1rem, 3vw, 2rem) 0 clamp(0.25rem, 0.8vw, 0.5rem) 0;
    color: #f0f6fc;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-align: center;
    margin: 0 0 clamp(1.5rem, 4vw, 3rem) 0;
    color: #8b949e;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-category-title {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    text-align: center;
    margin: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 2.5vw, 2rem) 0;
    color: #c9d1d9;
    font-weight: 400;
    position: relative;
    padding-bottom: clamp(0.75rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: Verdana, sans-serif;
    line-height: 1.4;
}

.service-category-title:first-of-type {
    margin-top: 2rem;
}

.service-category-title::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.service-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #4a9eff 0%, #0066cc 100%);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.6);
    border-radius: 2px;
}

/* Same aspect ratio and size for every service card; single cards centered */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
}

.service-card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
    overflow: visible;
    min-height: 0;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
    width: 280px;
    max-width: 100%;
    flex-shrink: 0;
}

.service-card:hover {
    transform: scale(1.05) !important;
    z-index: 10 !important;
}

.service-overlay {
    display: none;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Same aspect ratio (1:1) and size for all service images */
.service-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    display: block;
    background: transparent;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

.service-card h3 {
    display: none;
}

/* CarsFinity Signature Soft Servicing – same image and size as other services */
.signature-soft-grid {
    grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 32vw, 320px), 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
}

.signature-soft-grid .service-card::before {
    display: none;
}

/* Service Info Button */
.service-info-btn {
    position: absolute;
    top: clamp(0.5rem, 1vw, 0.75rem);
    right: clamp(0.5rem, 1vw, 0.75rem);
    width: clamp(28px, 3.5vw, 32px);
    height: clamp(28px, 3.5vw, 32px);
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.2);
    border: clamp(1px, 0.15vw, 2px) solid rgba(74, 158, 255, 0.5);
    color: #4a9eff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 100;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    box-sizing: border-box;
    transform: none !important;
    will-change: background, border-color;
}

.service-info-btn svg {
    width: clamp(16px, 2vw, 18px);
    height: clamp(16px, 2vw, 18px);
    stroke-width: 2.5;
    pointer-events: none;
}

.service-info-btn:hover {
    background: rgba(74, 158, 255, 0.4);
    border-color: rgba(74, 158, 255, 0.8);
}

.service-info-btn:active {
    transform: scale(0.95);
}

.service-info-btn.active {
    background: rgba(74, 158, 255, 0.5);
    border-color: rgba(74, 158, 255, 1);
}

/* Prevent card hover effect when hovering info button */
.service-info-btn:hover,
.service-info-btn.active {
    transform: none !important;
}

/* Service Tooltip */
.service-tooltip {
    position: fixed;
    width: clamp(220px, 45vw, 300px);
    max-width: calc(100vw - clamp(2rem, 4vw, 3rem));
    background: rgba(0, 3, 8, 0.98);
    color: #ffffff;
    padding: clamp(0.75rem, 1.5vw, 1rem);
    border-radius: clamp(8px, 1.5vw, 12px);
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    line-height: 1.6;
    box-shadow: 0 clamp(4px, 1vw, 8px) clamp(12px, 3vw, 20px) rgba(0, 0, 0, 0.8);
    border: clamp(1px, 0.2vw, 2px) solid rgba(74, 158, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 10000;
    text-align: left;
    backdrop-filter: blur(10px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    will-change: opacity, transform;
}

.service-info-btn:hover .service-tooltip,
.service-info-btn.active .service-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Tooltip arrow */
.service-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: clamp(1rem, 2vw, 1.5rem);
    width: 0;
    height: 0;
    border-left: clamp(6px, 1vw, 8px) solid transparent;
    border-right: clamp(6px, 1vw, 8px) solid transparent;
    border-bottom: clamp(6px, 1vw, 8px) solid rgba(74, 158, 255, 0.3);
    pointer-events: none;
}

/* ============================================
   Premium Services Page (cinematic, luxury)
   ============================================ */
body.services-page-premium {
    background: #000000;
}

body.services-page-premium .service-card {
    width: 100%;
    max-width: none;
}

.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
body.services-page-premium .services-hero:hover .services-hero-bg {
    transform: scale(1.03);
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(10,12,15,0.7) 50%, #0a0c0f 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(2rem, 10vw, 6rem);
    max-width: 100%;
    box-sizing: border-box;
}

.services-hero-title {
    font-size: clamp(1.1rem, 2.8vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.services-hero-sub {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    font-weight: 400;
}

.services-hero-accent {
    display: block;
    width: 160px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), rgba(255,255,255,0.95), rgba(255,255,255,0.5), transparent);
    box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(255,255,255,0.15);
    animation: servicesAccentGlow 1s ease-in-out infinite;
}

@keyframes servicesAccentGlow {
    0%, 100% { opacity: 0.85; box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(255,255,255,0.15); }
    50% { opacity: 1; box-shadow: 0 0 28px rgba(255,255,255,0.6), 0 0 56px rgba(255,255,255,0.35), 0 0 80px rgba(255,255,255,0.2); }
}

/* Our Services intro – Mercedes/Porsche tone */
/* Cinematic intro – metallic, dramatic spacing */
.services-intro {
    position: relative;
    text-align: center;
    padding: clamp(5rem, 14vw, 8rem) 1.5rem;
    background: #000000;
    overflow: hidden;
}

.services-intro-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(140, 140, 150, 0.06), transparent 60%);
    pointer-events: none;
}

.services-intro-title {
    position: relative;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    animation: servicesIntroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.services-intro-accent {
    position: relative;
    display: block;
    width: 96px;
    height: 2px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: servicesIntroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.services-intro-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: servicesShimmer 2.5s ease-in-out 1s infinite;
}

@keyframes servicesShimmer {
    0%, 100% { transform: translateX(-100%); opacity: 0.6; }
    50% { transform: translateX(100%); opacity: 1; }
}

.services-intro-tagline {
    position: relative;
    margin: 1.75rem 0 0;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
    animation: servicesIntroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

/* Category sections: full viewport, left title, right tiles */
.services-category {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 4rem);
    background: #000000;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-category.in-view {
    opacity: 1;
    transform: translateY(0);
}

.services-category.in-view .services-tile {
    opacity: 1;
    transform: translateY(0);
}

.services-tile {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.services-category.in-view .services-tile:nth-child(1) { transition-delay: 0.05s; }
.services-category.in-view .services-tile:nth-child(2) { transition-delay: 0.12s; }
.services-category.in-view .services-tile:nth-child(3) { transition-delay: 0.19s; }
.services-category.in-view .services-tile:nth-child(4) { transition-delay: 0.26s; }
.services-category.in-view .services-tile:nth-child(5) { transition-delay: 0.33s; }
.services-category.in-view .services-tile:nth-child(6) { transition-delay: 0.4s; }
.services-category.in-view .services-tile:nth-child(7) { transition-delay: 0.47s; }

.services-category-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
}

/* Split layout: title left (large, two lines), tagline right, tiles full width below */
.services-category-split {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    row-gap: clamp(2.5rem, 5vw, 4rem);
    column-gap: clamp(2rem, 4vw, 3rem);
}

.services-category-split .services-category-title {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.services-category-split .services-category-tagline {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    max-width: none;
}

.services-category-split .services-tiles {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.services-category-title {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #f0f6fc;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.services-category-tagline {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.06em;
    margin: 0.5rem 0 0 0;
    max-width: 32ch;
    line-height: 1.5;
}

.services-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 1.2vw, 0.85rem);
}

/* Service card fills grid cell — image and card are one unified component */
.services-tiles .service-card.services-tile {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    flex-shrink: 1;
    box-sizing: border-box;
}
.services-tiles .service-card.services-tile:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Grid items: no extra gap, consistent sizing */
.services-tiles > * {
    min-width: 0;
    min-height: 0;
}

.services-tiles-single {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.services-tiles-soft {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

/* Signature Soft Servicing — distinctive card design */
.services-tile-text {
    aspect-ratio: auto;
    min-height: 88px;
    padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    padding-left: clamp(2rem, 4vw, 2.75rem);
    padding-bottom: 1.5rem;
    background: linear-gradient(145deg, #1e2228 0%, #181b21 40%, #14171b 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
/* Left accent bar — soft blue glow */
.services-tile-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 65%;
    min-height: 28px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, rgba(74, 158, 255, 0.85) 0%, rgba(74, 158, 255, 0.4) 50%, rgba(100, 180, 255, 0.25) 100%);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.35);
    transition: height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
/* Subtle shine overlay on hover */
.services-tile-text::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.02) 45%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.services-tile-text:hover {
    background: linear-gradient(145deg, #252a32 0%, #1c2028 40%, #181c23 100%);
    border-color: rgba(74, 158, 255, 0.2);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px -16px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(74, 158, 255, 0.12), 0 0 32px -8px rgba(74, 158, 255, 0.15);
}
.services-tile-text:hover::before {
    height: 80%;
    box-shadow: 0 0 24px rgba(74, 158, 255, 0.5), 0 0 12px rgba(74, 158, 255, 0.25);
    background: linear-gradient(180deg, rgba(100, 180, 255, 0.9) 0%, rgba(74, 158, 255, 0.5) 50%, rgba(74, 158, 255, 0.3) 100%);
}
.services-tile-text:hover::after {
    opacity: 1;
}

.services-tile-text .services-tile-name {
    position: relative;
    z-index: 1;
    bottom: auto;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.services-tile-text:hover .services-tile-name {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.services-tile-text .services-tile-desc {
    display: none;
}

/* ─── SERVICE CARD DIMENSIONS (change here) ─────────────────────────────
 * Aspect ratio: 448 / 249 (width : height). Card width comes from grid
 * (e.g. 3 columns = ~1/3 of container minus gap). Height = width × (249/448).
 * To use fixed size instead, add to .services-tile e.g.:
 *   width: 448px; height: 249px; aspect-ratio: unset;
 * Grid: .services-tiles (columns, gap) controls how many cards per row.
 * ───────────────────────────────────────────────────────────────────── */
.services-tile {
    --tile-radius: 1rem;
    position: relative;
    aspect-ratio: 448 / 249;
    border-radius: var(--tile-radius);
    overflow: hidden;
    cursor: pointer;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    border: none;
    isolation: isolate;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.services-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
}

/* Image: same radius as card, bleeds 1px so no strip shows; clipped by parent */
.services-tile-bg {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin: 0;
    padding: 0;
    border: none;
    border-radius: var(--tile-radius);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fill card with image; scale height so bottom text bar is cropped out */
.services-tile-bg-crop {
    background-position: center top !important;
    background-size: 100% 165% !important;
}

.services-tile:hover .services-tile-bg {
    transform: scale(1.12);
}

/* Overlay: fills tile, clipped by parent — no separate radius */
.services-tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 40%, transparent 100%);
    transition: background 0.4s ease;
}

.services-tile:hover .services-tile-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

/* Content overlay: service name centered at same position */
.services-tile-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1rem, 2vw, 1.5rem);
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.services-tile-name,
.services-tile-desc {
    position: absolute;
    left: clamp(1rem, 2vw, 1.5rem);
    right: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
    z-index: 2;
    transition: transform 0.4s ease;
}

.services-tile-content .services-tile-name,
.services-tile-content .services-tile-desc {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
}

.services-tile-name {
    bottom: clamp(2rem, 4vw, 2.5rem);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.services-tile-tagline {
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.services-tile-content .services-tile-name {
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
}

.services-tile-cta {
    margin-top: 0.25rem;
    align-self: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f1419;
    background: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.services-tile-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.03);
}

.services-tile-cta:active {
    transform: scale(0.98);
}

.services-tile-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-tile:hover .services-tile-name::after {
    transform: scaleX(1);
}

.services-tile-desc {
    bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
}

.services-tile:hover .services-tile-name {
    transform: translateY(-3px);
}

/* CTA Section */
.services-cta {
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    background: #000000;
    text-align: center;
}

.services-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.services-cta-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.5rem;
    letter-spacing: 0.04em;
}

@keyframes expert-btn-glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(74, 158, 255, 0.35), 0 0 0 1px rgba(74, 158, 255, 0.25), 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 24px rgba(74, 158, 255, 0.5), 0 0 32px rgba(74, 158, 255, 0.2), 0 0 0 1px rgba(74, 158, 255, 0.35), 0 4px 20px rgba(0, 0, 0, 0.2);
    }
}

.services-cta-btn,
.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.95rem, 1.6vw, 1.2rem) clamp(2rem, 4vw, 2.75rem);
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    color: #fff;
    border: 1px solid rgba(74, 158, 255, 0.35);
    border-radius: 50px;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: expert-btn-glow 2.2s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, background 0.35s ease, color 0.3s ease;
}
.services-cta-btn::before,
.premium-cta-btn::before {
    content: '✦';
    font-size: 0.75em;
    opacity: 0.9;
    letter-spacing: 0;
}
.services-cta-btn::after,
.premium-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.services-cta-btn:hover,
.premium-cta-btn:hover {
    border-color: rgba(74, 158, 255, 0.6);
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.12) 0%, rgba(255,255,255,0.06) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 28px rgba(74, 158, 255, 0.45), 0 0 40px rgba(74, 158, 255, 0.25), 0 0 0 1px rgba(74, 158, 255, 0.3), 0 8px 28px rgba(0, 0, 0, 0.3);
    color: #fff;
    animation: none;
}
.services-cta-btn:hover::after,
.premium-cta-btn:hover::after {
    opacity: 1;
}
.services-cta-btn:active,
.premium-cta-btn:active {
    transform: translateY(-1px) scale(0.99);
}

/* Premium Services: responsive */
@media (max-width: 900px) {
    .services-category-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .services-category-split {
        grid-template-rows: auto auto auto;
    }
    .services-category-split .services-category-title {
        grid-column: 1;
        grid-row: 1;
    }
    .services-category-split .services-category-tagline {
        grid-column: 1;
        grid-row: 2;
    }
    .services-category-split .services-tiles {
        grid-column: 1;
        grid-row: 3;
    }
    .services-category-title {
        margin-bottom: 1rem;
    }
    /* Category titles on one line from tablet/mobile down */
    .services-category-title br {
        display: none;
    }
    .services-category-title {
        white-space: nowrap;
        font-size: clamp(1.2rem, 3.5vw, 1.75rem);
        letter-spacing: 0.12em;
        word-spacing: 0.2em;
    }
    .services-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-tiles-single {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .services-tiles {
        grid-template-columns: 1fr;
    }
    .services-tiles-soft {
        grid-template-columns: 1fr;
    }
    .services-hero-title {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
        letter-spacing: 0.05em;
        white-space: nowrap;
    }
    /* Category titles (Premium Protection, Essential Services, etc.) on one line on mobile */
    .services-category-title br {
        display: none;
    }
    .services-category-title {
        white-space: nowrap;
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        letter-spacing: 0.1em;
        word-spacing: 0.2em;
    }
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2vw, 2rem);
    box-sizing: border-box;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.service-modal-content {
    position: relative;
    background: #ffffff;
    border: clamp(1px, 0.2vw, 2px) solid rgba(74, 158, 255, 0.3);
    border-radius: clamp(12px, 2vw, 20px);
    padding: clamp(2rem, 4vw, 3rem);
    max-width: clamp(400px, 90vw, 600px);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 clamp(8px, 2vw, 20px) clamp(20px, 5vw, 40px) rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.service-modal-close {
    position: absolute;
    top: clamp(1rem, 2vw, 1.5rem);
    right: clamp(1rem, 2vw, 1.5rem);
    width: clamp(36px, 4vw, 40px);
    height: clamp(36px, 4vw, 40px);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: clamp(1px, 0.15vw, 2px) solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.service-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 158, 255, 0.5);
    transform: rotate(90deg);
}

.service-modal-close svg {
    width: clamp(20px, 2.5vw, 24px);
    height: clamp(20px, 2.5vw, 24px);
}

.service-modal-body {
    text-align: center;
}

.service-modal-title {
    color: #1a1a1a;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow-wrap: break-word;
    max-width: 100%;
}

.service-modal-description {
    color: #4a4a4a;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: left;
}

/* Booking Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.booking-form label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select {
    padding: clamp(0.75rem, 1.5vw, 1rem);
    background: #ffffff;
    border: clamp(1px, 0.15vw, 2px) solid rgba(0, 0, 0, 0.2);
    border-radius: clamp(8px, 1.5vw, 12px);
    color: #1a1a1a;
    font-family: inherit;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: clamp(44px, 5vw, 50px);
    -webkit-tap-highlight-color: transparent;
}

.booking-form input[type="text"]:focus,
.booking-form input[type="tel"]:focus,
.booking-form input[type="date"]:focus,
.booking-form select:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 clamp(2px, 0.4vw, 3px) rgba(74, 158, 255, 0.2);
}

.booking-form input[type="text"]::placeholder,
.booking-form input[type="tel"]::placeholder {
    color: #999999;
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right clamp(0.75rem, 1.5vw, 1rem) center;
    background-size: clamp(12px, 1.5vw, 16px);
    padding-right: clamp(2.5rem, 4vw, 3rem);
}

.booking-form select option {
    background: #ffffff;
    color: #1a1a1a;
    padding: clamp(0.5rem, 1vw, 0.75rem);
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    filter: brightness(0);
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.booking-form .whatsapp-booking-btn {
    margin-top: clamp(0.5rem, 1vw, 1rem);
    width: 100%;
    border: none;
    cursor: pointer;
}

.whatsapp-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: clamp(25px, 3vw, 50px);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 clamp(4px, 1vw, 8px) rgba(37, 211, 102, 0.4);
    min-height: clamp(44px, 5vw, 50px);
    -webkit-tap-highlight-color: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.whatsapp-booking-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 clamp(6px, 1.5vw, 12px) rgba(37, 211, 102, 0.6);
}

.whatsapp-booking-btn:active {
    transform: translateY(0);
}

.whatsapp-booking-btn svg {
    width: clamp(20px, 2.5vw, 24px);
    height: clamp(20px, 2.5vw, 24px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Mobile tooltip positioning */
@media (max-width: 768px) {
    .service-modal-content {
        padding: clamp(1.5rem, 3vw, 2rem);
        max-width: 95vw;
    }
    
    .service-modal-close {
        top: clamp(0.75rem, 1.5vw, 1rem);
        right: clamp(0.75rem, 1.5vw, 1rem);
    }
}

/* Removed all glow effects - clean, professional look */

.service-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* Staff Section (Crew page) – dark theme to match Services/About */
.staff {
    padding: 5rem 0;
    background: linear-gradient(180deg, #151b23 0%, #0f1419 100%);
}

body.crew-page {
    background-color: #0f1419;
}

.staff-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.staff-founder-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.staff-crew-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    max-width: 900px;
    width: 100%;
}

.staff-card {
    background: #ffffff;
    padding: clamp(1rem, 2.5vw, 2rem);
    border-radius: clamp(10px, 2vw, 15px);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: clamp(0.5px, 0.1vw, 1px) solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 clamp(2px, 0.5vw, 4px) clamp(8px, 2vw, 15px) rgba(0, 0, 0, 0.1);
}

.staff-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #4a9eff;
    box-shadow: 0 clamp(4px, 1vw, 8px) clamp(12px, 3vw, 20px) rgba(74, 158, 255, 0.2);
}

/* Founder card - removed glow effects */
.founder-card {
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.founder-card:hover {
    border-color: rgba(255, 215, 0, 0.8);
}

/* Instagram link styling */
.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(0.5rem, 1.5vw, 1rem);
    width: clamp(35px, 5vw, 40px);
    height: clamp(35px, 5vw, 40px);
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 clamp(2px, 0.5vw, 4px) clamp(8px, 2vw, 15px) rgba(225, 48, 108, 0.4);
}

.instagram-link:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 clamp(3px, 0.8vw, 6px) clamp(10px, 2.5vw, 20px) rgba(225, 48, 108, 0.6);
}

.instagram-link svg {
    width: clamp(18px, 2.5vw, 20px);
    height: clamp(18px, 2.5vw, 20px);
    filter: brightness(0) invert(1);
}

.staff-avatar {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.staff-photo {
    width: clamp(120px, 25vw, 180px);
    height: clamp(120px, 25vw, 180px);
    object-fit: cover;
    border-radius: 50%;
    border: clamp(2px, 0.4vw, 3px) solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 clamp(4px, 1vw, 8px) clamp(12px, 3vw, 20px) rgba(0, 0, 0, 0.5);
}

.staff-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(0.25rem, 0.8vw, 0.5rem);
    color: #1a1a1a;
}

.staff-role {
    color: #4a9eff;
    font-weight: 600;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.staff-bio {
    color: #666666;
    line-height: 1.8;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* ============================================
   Crew Section - Alternating scroll layout
   ============================================ */
.crew-section {
    padding: clamp(9rem, 16vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
    background: linear-gradient(180deg, #0d1117 0%, #161b22 30%, #0d1117 100%);
    min-height: 100vh;
}

.crew-intro {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.crew-section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #f0f6fc;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.crew-section-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: #8b949e;
    margin: 0;
}

/* One row per member – compact spacing */
.crew-member {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2rem);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.crew-member--in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Unified block: image + text in one container */
.crew-member-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    min-height: min(55vh, 420px);
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(74, 158, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Shared vertical divider between image and content */
.crew-member--image-left .crew-member-inner {
    grid-template-areas: "image content";
}

.crew-member--image-right .crew-member-inner {
    grid-template-areas: "content image";
}

.crew-member-image {
    grid-area: image;
    position: relative;
    min-height: 280px;
}

.crew-member-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.crew-member-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3rem);
    border-left: 1px solid rgba(74, 158, 255, 0.15);
}

.crew-member--image-right .crew-member-content {
    border-left: none;
    border-right: 1px solid rgba(74, 158, 255, 0.15);
}

.crew-member-role {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4a9eff;
    margin-bottom: 0.35rem;
}

.crew-member-name {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #f0f6fc;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.crew-member-story {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: #8b949e;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    max-width: 52ch;
}

.crew-member-link {
    font-size: clamp(0.85rem, 1.2vw, 0.9rem);
    font-weight: 600;
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.crew-member-link:hover {
    color: #6bb3ff;
}

/* Mobile: stack image on top, then content */
@media (max-width: 768px) {
    .crew-member {
        min-height: 0;
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 2vw, 1.25rem);
    }

    .crew-member-inner {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "content";
        min-height: 0;
    }

    .crew-member--image-left .crew-member-inner,
    .crew-member--image-right .crew-member-inner {
        grid-template-areas: "image" "content";
    }

    .crew-member-image {
        min-height: 260px;
    }

    .crew-member-content {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(74, 158, 255, 0.15);
    }

    .crew-member--image-right .crew-member-content {
        border-top: 1px solid rgba(74, 158, 255, 0.15);
    }
}

/* Contact Section */
.contact {
    padding: clamp(9rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 4rem);
    background: linear-gradient(180deg, #151b23 0%, #0f1419 100%);
    min-height: auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    /* Uncomment and add your background image path here */
    /* background-image: url('path-to-your-tech-background-image.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Engraved Tech Background Pattern - Creates circuit board effect */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 150, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 20% 30%, rgba(0, 150, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, transparent 48%, rgba(0, 150, 255, 0.05) 49%, rgba(0, 150, 255, 0.05) 51%, transparent 52%),
        linear-gradient(-135deg, transparent 48%, rgba(0, 150, 255, 0.05) 49%, rgba(0, 150, 255, 0.05) 51%, transparent 52%);
    background-size: 
        50px 50px,
        50px 50px,
        400px 400px,
        400px 400px,
        200px 200px,
        200px 200px;
    background-position: 0 0, 0 0, 0 0, 100% 100%, 0 0, 100% 100%;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    /* Engraved effect using inset shadow */
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8), inset 0 0 200px rgba(0, 0, 0, 0.5);
    filter: blur(0.3px);
}

/* Additional depth layer for engraving effect */
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(0, 150, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 150, 255, 0.08) 0%, transparent 60%);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    /* Deep engraving shadow */
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.9), inset 0 -2px 20px rgba(0, 0, 0, 0.9);
    mix-blend-mode: overlay;
}

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

.contact .container {
    padding: clamp(0.5rem, 2vw, 0.5rem) clamp(0.75rem, 2vw, 2rem);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Contact Premium - two-card dark automotive layout */
.contact-premium .contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info-card {
    background: linear-gradient(180deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.contact-info-card-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #f0f6fc;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.contact-info-card-sub {
    font-size: clamp(0.88rem, 1.3vw, 0.95rem);
    color: #8b949e;
    line-height: 1.5;
    margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-info-label {
    display: block;
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(184, 192, 204, 0.9);
    margin-bottom: 0.25rem;
}
.contact-info-value {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: #f0f6fc;
    margin: 0;
    line-height: 1.5;
}
.contact-info-value strong { font-weight: 600; }
.contact-landmark {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9em;
    color: rgba(184, 192, 204, 0.95);
}
.contact-info-link {
    color: #f0f6fc;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(74, 158, 255, 0.4);
}
.contact-info-link:hover {
    color: #4a9eff;
    border-bottom-color: #4a9eff;
}
.contact-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.contact-cta-directions {
    background: rgba(255, 255, 255, 0.08);
    color: #f0f6fc;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-cta-directions:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
.contact-cta-call {
    background: #4a9eff;
    color: #fff;
    border: 1px solid transparent;
}
.contact-cta-call:hover {
    background: #3d8ae6;
    transform: translateY(-1px);
}
.contact-cta-whatsapp {
    background: #25D366;
    color: #fff;
    border: 1px solid transparent;
}
.contact-cta-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-1px);
}
.contact-trust {
    font-size: clamp(0.8rem, 1.1vw, 0.85rem);
    color: rgba(139, 148, 158, 0.9);
    margin: 0;
    font-style: italic;
}
.contact-map-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
}
.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
}
.contact-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.92), transparent);
    color: #000;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    text-align: center;
}
@media (max-width: 768px) {
    .contact-premium .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-map-wrap,
    .contact-map-wrap iframe {
        min-height: 260px;
    }
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
    margin-top: 0;
    padding: 0;
    margin-bottom: clamp(0.25rem, 0.8vw, 0.5rem);
    align-content: start;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

.contact-map-section {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 1rem);
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

.contact-info-wrapper {
    width: 100%;
    min-height: clamp(200px, 40vw, 358px);
    aspect-ratio: 561 / 358;
    background-color: #ffffff;
    border-radius: clamp(10px, 2vw, 15px);
    padding: clamp(0.75rem, 2vw, 2rem);
    box-shadow: 0 clamp(4px, 1vw, 8px) clamp(12px, 3vw, 25px) rgba(0, 0, 0, 0.5);
    border: clamp(1px, 0.2vw, 2px) solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-sizing: border-box;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 0.8vw, 0.5rem);
    min-height: 100%;
    justify-content: flex-start;
    width: 100%;
    overflow: visible;
}


.contact-section-title {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #888888;
    font-weight: 400;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    font-family: Verdana, sans-serif;
    line-height: 1.4;
    height: auto;
}

.contact-category {
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    width: 100%;
    overflow: visible;
}

.category-label {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    color: #666666;
    margin-bottom: clamp(0.2rem, 0.5vw, 0.3rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
}

.contact-info-wrapper .category-label {
    color: #666666;
}

.contact-email {
    color: #333333;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.contact-info-wrapper .contact-email {
    color: #333333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.founder-contacts {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-item:last-child {
    border-bottom: none;
}

.founder-name {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.founder-title {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.founder-email,
.founder-phone {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0.3rem 0;
}

.contact-branding-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.branding-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-brand-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.2));
}


.map-title-small {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #888888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    line-height: 1.4;
    height: auto;
    width: 100%;
}

.map-container-small {
    width: 100%;
    min-height: clamp(200px, 40vw, 358px);
    aspect-ratio: 561 / 358;
    border-radius: clamp(10px, 2vw, 15px);
    overflow: hidden;
    box-shadow: 0 clamp(4px, 1vw, 8px) clamp(12px, 3vw, 25px) rgba(0, 0, 0, 0.5);
    border: clamp(1px, 0.2vw, 2px) solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.map-container-small iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    display: block;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 30vw, 250px), 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1rem, 2.3vw, 1.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: clamp(10px, 2vw, 15px);
    text-align: center;
    border: clamp(0.5px, 0.1vw, 1px) solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 clamp(2px, 0.5vw, 4px) clamp(8px, 2vw, 15px) rgba(0, 0, 0, 0.3);
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.info-icon {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    filter: drop-shadow(0 clamp(1px, 0.3vw, 2px) clamp(4px, 1vw, 8px) rgba(0, 0, 0, 0.5));
}

.info-card h3 {
    color: #4a9eff;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-card p {
    color: #ffffff;
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.contact-link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-wrapper .contact-link {
    color: #333333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-link:hover {
    color: #4a9eff;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-title {
    color: #4a9eff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.services-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.services-selection::-webkit-scrollbar {
    width: 6px;
}

.services-selection::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.services-selection::-webkit-scrollbar-thumb {
    background: rgba(74, 158, 255, 0.5);
    border-radius: 3px;
}

.services-selection::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 158, 255, 0.7);
}

.service-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4a9eff;
}

.service-option label {
    color: #cccccc;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.service-option:hover label {
    color: #ffffff;
}

.service-checkbox:checked + label {
    color: #4a9eff;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form select option {
    background: #000308;
    color: #ffffff;
}

.contact-form select:focus {
    outline: none;
    border-color: #4a9eff;
}

.contact-form input[type="date"],
.contact-form input[type="time"] {
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

/* Date and time input styling */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 clamp(1px, 0.3vw, 2px) clamp(5px, 1.3vw, 10px) rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #4a9eff 0%, #0066cc 100%);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.6);
    border-radius: 2px;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: clamp(300px, 50vw, 500px);
    border: none;
    border-radius: clamp(10px, 2vw, 15px);
    display: block;
}

.submit-button {
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 2.5vw, 2rem);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    border-radius: clamp(6px, 1vw, 8px);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 clamp(2px, 0.5vw, 4px) clamp(8px, 2vw, 15px) rgba(37, 211, 102, 0.3);
    margin-top: clamp(0.25rem, 0.8vw, 0.5rem);
    min-height: 44px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive adjustments for booking form - proportional scaling only */
.form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.services-selection {
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 25vw, 200px), 1fr));
    max-height: clamp(200px, 40vw, 300px);
    gap: clamp(0.25rem, 0.8vw, 0.75rem);
}

.service-checkbox {
    width: clamp(18px, 2.5vw, 20px);
    height: clamp(18px, 2.5vw, 20px);
    min-width: 18px;
    min-height: 18px;
}

.service-option label {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* Footer */
.footer {
    background-color: #0f1419;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer p {
    color: #8b949e;
}

.footer-enhanced {
    background-color: #E8ECF1;
    padding: 1rem 0;
    border-top: none;
    margin-top: 49px;
    position: relative;
}


.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 57px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    width: 100%;
}

.footer-location {
    position: absolute;
    top: 0;
    right: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-style: italic;
}

.footer-location p {
    margin: 0;
    color: #666666;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.social-icon {
    width: 35px;
    height: 35px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Instagram - Gradient colors (handled in SVG) */
.social-icon[aria-label="Instagram"]:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Facebook - Blue */
.social-icon[aria-label="Facebook"] svg {
    fill: #1877F2;
}

.social-icon[aria-label="Facebook"]:hover {
    transform: translateY(-3px) scale(1.1);
}

/* WhatsApp - Green */
.social-icon[aria-label="WhatsApp"] svg {
    fill: #25D366;
}

.social-icon[aria-label="WhatsApp"]:hover {
    transform: translateY(-3px) scale(1.1);
}

/* LinkedIn - Blue */
.social-icon[aria-label="LinkedIn"] svg {
    fill: #0077B5;
}

.social-icon[aria-label="LinkedIn"]:hover {
    transform: translateY(-3px) scale(1.1);
}

/* YouTube - Red */
.social-icon[aria-label="YouTube"] svg {
    fill: #FF0000;
}

.social-icon[aria-label="YouTube"]:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-copyright {
    color: #666666;
    font-size: 0.85rem;
    margin-top: 0;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* Engraved/premium text effect */
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 2px rgba(0, 0, 0, 0.8),
        0 3px 3px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        inset 0 -1px 1px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
}

.footer-copyright p {
    margin: 0;
    color: #666666;
}

/* Mobile UI Specific Styles */
body.mobile-ui .services-grid {
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2rem);
}

body.mobile-ui .staff-grid {
    gap: clamp(1.5rem, 4vw, 2rem);
}

body.mobile-ui .staff-crew-row {
    grid-template-columns: 1fr;
}

body.mobile-ui .contact-layout {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
}

body.mobile-ui .service-card {
    padding: clamp(1.5rem, 3vw, 2rem);
}

body.mobile-ui .staff-card {
    padding: clamp(1.5rem, 3vw, 2rem);
}

/* Desktop UI Specific Styles */
body.desktop-ui .services-grid {
    justify-content: center;
}

body.desktop-ui .staff-crew-row {
    grid-template-columns: repeat(3, 1fr);
}

body.desktop-ui .contact-layout {
    grid-template-columns: 1fr 1fr;
}

/* Responsive Design - Proportional Scaling Only */
/* Navbar always visible - no hamburger menu */

/* Ensure text wrapping on very small screens (home headline stays one line) */
@media (max-width: 600px) {
    .hero-headline {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    body.home-page .hero-headline,
    body.home-page .hero-mobile-headline {
        white-space: nowrap;
        word-wrap: normal;
        overflow-wrap: normal;
        font-size: clamp(0.9rem, 4vw, 1.4rem);
    }
    
    .contact-email,
    .contact-link {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-info-wrapper {
        aspect-ratio: auto;
        min-height: auto;
        padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .contact-info-section {
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .contact-category {
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }
    
    .map-container-small {
        aspect-ratio: auto;
        min-height: clamp(250px, 60vw, 300px);
    }
    
    .contact-layout {
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .contact .container {
        padding: clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
    }
}

/* ============================================
   About Us — High-impact (Hero, Story, Pillars, Crew, Close)
   ============================================ */
body.about-page { background: #0a0c0f; }

/* 1. Hero Narrative Block */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(9rem, calc(12vw + 5rem), 13rem) clamp(1.5rem, 4vw, 3rem);
    background: #0d1117;
    overflow: hidden;
}
.about-hero .hero-scroll-down {
    bottom: clamp(2rem, 4vw, 4rem);
    z-index: 5;
}
.about-hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.about-hero.about-in-view .about-hero-inner {
    opacity: 1;
    transform: translateY(0);
}
.about-hero-headline {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #f0f6fc;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}
.about-hero-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #8b949e;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}
.about-hero-tagline {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 600;
    color: rgba(184, 192, 204, 0.9);
    letter-spacing: 0.06em;
    margin: 0;
}

/* 2. Story (0 → 1) — two columns */
.about-story {
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(180deg, #0a0c0f 0%, #0d1117 100%);
}
.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-story-inner.about-in-view {
    opacity: 1;
    transform: translateY(0);
}
.about-story-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f0f6fc;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}
.about-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.about-story-step {
    position: relative;
    padding-left: 1.5rem;
}
.about-story-step-marker {
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(184, 192, 204, 0.6);
}
.about-story-step-text {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: #8b949e;
    line-height: 1.65;
    margin: 0;
}
.about-story-visual-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.about-story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 280px;
}

/* 3. Pillars — premium cards */
.about-pillars {
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    background: #0d1117;
}
.about-pillars-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f0f6fc;
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 1200px;
    margin: 0 auto;
}
.about-pillar-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.25s ease;
}
.about-pillar-card.about-in-view {
    opacity: 1;
    transform: translateY(0);
}
.about-pillar-card:hover {
    border-color: rgba(184, 192, 204, 0.15);
}
.about-pillar-heading {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: #f0f6fc;
    margin: 0 0 0.5rem;
}
.about-pillar-text {
    font-size: clamp(0.85rem, 1.2vw, 0.9rem);
    color: #8b949e;
    line-height: 1.6;
    margin: 0;
}

/* 4. Meet the Crew — alternating blocks */
.about-crew-preview {
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(180deg, #0a0c0f 0%, #0d1117 100%);
}
.about-crew-preview-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f0f6fc;
    text-align: center;
    margin: 0 0 0.25rem;
}
.about-crew-preview-sub {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: #8b949e;
    text-align: center;
    margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.about-crew-block {
    max-width: 1000px;
    margin: 0 auto clamp(clamp(1.5rem, 3vw, 2rem), 4vw, 2.5rem);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-crew-block.about-in-view {
    opacity: 1;
    transform: translateY(0);
}
.about-crew-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2rem);
    background: rgba(22, 27, 34, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.about-crew-block--left .about-crew-block-inner {
    grid-template-areas: "img content";
}
.about-crew-block--right .about-crew-block-inner {
    grid-template-areas: "content img";
}
.about-crew-block-image {
    grid-area: img;
    position: relative;
}
.about-crew-block-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.about-crew-block--right .about-crew-block-image img {
    border-radius: 0 12px 12px 0;
}
.about-crew-block--left .about-crew-block-image img {
    border-radius: 12px 0 0 12px;
}
.about-crew-block-content {
    grid-area: content;
    padding: clamp(1.5rem, 3vw, 2rem);
}
.about-crew-block-role {
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(184, 192, 204, 0.9);
    margin-bottom: 0.35rem;
}
.about-crew-block-name {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #f0f6fc;
    margin: 0 0 0.75rem;
}
.about-crew-block-bio {
    font-size: clamp(0.88rem, 1.25vw, 0.95rem);
    color: #8b949e;
    line-height: 1.65;
    margin: 0;
}
.about-crew-cta {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}
.about-crew-cta-link {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.about-crew-cta-link:hover {
    color: #6bb3ff;
}

/* 5. Closing Belief */
.about-close {
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    background: #0d1117;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-close.about-in-view {
    opacity: 1;
    transform: translateY(0);
}
.about-close-line {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #8b949e;
    margin: 0 0 0.35rem;
}
.about-close-line--accent {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #f0f6fc;
}

/* About — Responsive */
@media (max-width: 900px) {
    .about-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-story-visual { order: -1; }
    .about-crew-block-inner {
        grid-template-columns: 1fr !important;
        grid-template-areas: "img" "content" !important;
    }
    .about-crew-block--left .about-crew-block-image img,
    .about-crew-block--right .about-crew-block-image img {
        border-radius: 12px 12px 0 0;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us Section – car-guy aesthetic (legacy) */
.about-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.about-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-label {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #f0f6fc;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-title-accent {
    width: 80px;
    height: 4px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(90deg, #4a9eff, #0066cc);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(74, 158, 255, 0.5);
}

.about-tagline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: #c9d1d9;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: #8b949e;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.about-card {
    background: rgba(22, 27, 34, 0.85);
    border: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 12px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4a9eff, transparent);
    opacity: 0.6;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 158, 255, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(74, 158, 255, 0.08);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.12);
    border: 1px solid rgba(74, 158, 255, 0.25);
    border-radius: 12px;
    color: #4a9eff;
}

.about-card-icon svg {
    width: 26px;
    height: 26px;
}

.about-card-title {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    font-weight: 700;
    color: #f0f6fc;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.about-card-text {
    font-size: clamp(0.88rem, 1.4vw, 0.95rem);
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.about-card-text:last-of-type {
    margin-bottom: 0;
}

.about-card-quote {
    font-style: italic;
    color: #4a9eff;
    font-weight: 500;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.value-item {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid #4a9eff;
}

.value-name {
    display: block;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #f0f6fc;
    margin-bottom: 0.25rem;
}

.value-desc {
    display: block;
    font-size: 0.85rem;
    color: #8b949e;
    line-height: 1.45;
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .about-card {
        padding: 1.5rem;
    }
}

/* ============================================
   SAME LAYOUT AS WEBSITE – responsive scaling (≤768px)
   One layout for all: nav + hero look the same, just scaled.
   ============================================ */
@media (max-width: 768px) {
    /* Home: one hero only – show mobile layout (CARSFINITY + YOUR WHIP OUR OBSESSION + Book Now), hide desktop hero to avoid double scroll */
    body.home-page .hero.desktop-only {
        display: none !important;
    }
    body.home-page .hero-mobile.mobile-only {
        display: block !important;
    }

    /* Same nav as desktop: horizontal links; ~20px shorter on mobile */
    .navbar {
        padding-top: clamp(0.2rem, 4vw, 0.5rem);
        padding-bottom: 0;
    }

    /* Mobile: logo centered on top, nav links in a row below */
    .navbar .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .navbar .nav-container .logo {
        flex: 0 0 auto;
        justify-content: center;
    }

    .navbar .nav-container .logo-image {
        transform-origin: center center;
        height: clamp(3.5rem, 17.5vw, 4.8125rem);
        max-height: 4.8125rem;
        transform: scale(1);
    }
    .navbar .nav-container .logo-image:hover {
        transform: scale(1);
    }

    .navbar .nav-menu {
        flex: 0 0 auto;
        justify-content: center;
        gap: 0.35rem 0.75rem;
        flex-wrap: nowrap;
    }

    .nav-link {
        font-size: clamp(0.7rem, 2.2vw, 0.9rem);
        padding: 0.4rem 0.5rem;
    }

    .logo-image {
        max-height: 6rem;
        height: clamp(4rem, 12vw, 6rem);
    }

    /* Home hero (phone): tighter spacing so Book Now + scroll-down visible without huge gap */
    body.home-page .hero-mobile-container {
        gap: clamp(1.25rem, 4vw, 2rem);
    }
    body.home-page .hero-mobile .hero-mobile-content {
        gap: 0.65rem;
    }
    body.home-page .hero-mobile .hero-scroll-down {
        bottom: 2rem;
    }

    /* Mobile hero SVG: high quality on both iOS and Android */
    body.home-page .hero-mobile-logo {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        image-rendering: -webkit-optimize-contrast;
        min-width: 280px;
    }

    /* Hero: stacked on small screens only for non-home pages */
    body:not(.home-page) .hero-container {
        flex-direction: column;
        padding-top: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    body:not(.home-page) .hero-left {
        order: 1;
        align-items: center;
    }

    body:not(.home-page) .hero-right {
        order: 2;
        max-width: 100%;
        min-height: 180px;
    }

    body:not(.home-page) .hero-headline {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    body:not(.home-page) .hero-image-wrapper {
        min-height: 160px;
    }

    body:not(.home-page) .hero-logo-image {
        max-height: min(45vh, 260px);
    }

    /* ========== Home page: mobile-only layout (≤768px) ==========
       Stack: Logo on top → YOUR WHIP OUR OBSESSION (single line) → Book Now (centred).
       Desktop (wider) keeps left/right split. */
    body.home-page .hero {
        min-height: 100vh;
        padding-top: 15rem;
        padding-bottom: clamp(2rem, 5vw, 3rem);
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: visible;
    }

    body.home-page .hero-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: clamp(1rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1.25rem);
        gap: clamp(1.25rem, 4vw, 2rem);
        max-width: 100%;
        min-width: 0;
    }

    body.home-page .hero-left {
        order: 2;
        align-items: center;
        max-width: 100%;
        min-width: 0;
    }

    body.home-page .hero-right {
        order: 1;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
    }

    body.home-page .hero-headline {
        font-size: clamp(1.1rem, 4.5vw, 1.75rem);
        line-height: 1.3;
        margin: 0 0 0.25em;
        white-space: nowrap;
    }

    body.home-page .hero-mobile-headline {
        white-space: nowrap;
        font-size: clamp(1.1rem, 4.5vw, 1.75rem);
    }

    body.home-page .hero-headline br {
        display: none;
    }

    body.home-page .hero-image-wrapper {
        min-height: 0;
        padding: 0;
        max-width: 85vw;
    }

    body.home-page .hero-logo-image {
        max-height: min(42vh, 220px);
        max-width: 100%;
        image-rendering: -webkit-optimize-contrast;
        transform: translateZ(0);
    }

    body.home-page .book-button {
        padding: clamp(0.55rem, 1.5vw, 0.7rem) clamp(1.25rem, 3vw, 1.5rem);
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        display: inline-block;
    }

    /* Global spacing */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }

    /* ---- Services page: mobile layout ---- */
    body.services-page-premium .services-hero {
        min-height: 60vh;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    body.services-page-premium .services-hero-content {
        padding: 1.5rem 1.25rem;
    }

    body.services-page-premium .services-hero-title {
        font-size: clamp(1.15rem, 5.5vw, 1.6rem);
        letter-spacing: 0.06em;
        white-space: normal;
        line-height: 1.35;
        max-width: none;
    }

    body.services-page-premium .services-category {
        min-height: auto;
        padding: 2rem 1rem 2.5rem;
    }

    body.services-page-premium .services-category-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    body.services-page-premium .services-category-title {
        font-size: 1.35rem;
        letter-spacing: 0.12em;
        word-spacing: 0.2em;
        margin-bottom: 0.25rem;
    }

    body.services-page-premium .services-category-tagline {
        margin: 0 auto 1rem;
        text-align: center;
        max-width: none;
        font-size: 0.8rem;
    }

    body.services-page-premium .services-tiles {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }

    body.services-page-premium .services-tile {
        aspect-ratio: 448 / 249;
        border-radius: 1rem;
    }

    body.services-page-premium .services-tile-name {
        font-size: 0.9rem;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        white-space: normal;
        word-spacing: 0.05em;
    }

    body.services-page-premium .services-tile-desc {
        display: none;
    }

    body.services-page-premium .services-tiles-soft .services-tile-text {
        min-height: 56px;
        padding: 0.9rem 1rem;
    }

    body.services-page-premium .services-tiles-soft .services-tile-name {
        font-size: 0.8rem;
        white-space: normal;
        word-spacing: 0.05em;
    }

    /* Mobile: ensure service names (tiles) show with proper space between words */
    .services-tile-name,
    .services-tile-content .services-tile-name {
        white-space: normal;
        word-spacing: 0.05em;
    }

    body.services-page-premium .services-cta {
        padding: 3rem 1rem;
    }

    body.services-page-premium .services-cta-text {
        font-size: 1rem;
    }

    body.services-page-premium .services-cta-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }

    /* ---- Index: Instagram journey mobile ---- */
    .ig-journey-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ig-counter-block {
        min-width: 0;
    }

    .ig-thumb-carousel {
        max-width: 100%;
        min-height: 280px;
        aspect-ratio: 1;
    }

    .ig-counter {
        font-size: 2.5rem;
    }

    .ig-tagline,
    .ig-micro {
        font-size: 0.8rem;
    }

    /* ---- Contact page mobile ---- */
    .contact-info-card,
    .contact-map-card {
        min-width: 0;
        width: 100%;
    }

    .contact-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* ---- Footer ---- */
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

