:root {
    --primary: #1e40af; /* Dark Blue Accent */
    --accent: #ffffff; /* White base */
    --secondary: #000c1d; /* Deep Navy Background */
    --text-dark: #000c1d;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --text-dim-dark: rgba(0, 12, 29, 0.6);
    --card-bg-dark: rgba(255, 255, 255, 0.02);
    --card-border-dark: rgba(255, 255, 255, 0.05);
    --nav-height: 80px;
    --star-gold: #fbbf24;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/** Lock page scroll while modal/menu overlay is intended to capture gestures (paired with JS .modal-open). */
html.modal-open,
body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

/** Grouped CTAs wrap cleanly on phones without horizontal cramming. */
.section-inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: clamp(28px, 6vw, 50px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-inline-cta .btn {
    flex: 0 1 auto;
    min-height: 44px;
}

@media (max-width: 480px) {
    .section-inline-cta.stack-on-narrow .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    width: 100%;
}

/* Navigation Bar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 1;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.logo-text .accent {
    color: var(--primary);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    width: auto;
    padding: 8px;
    margin: -8px -8px -8px 0;
    box-sizing: content-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    align-items: center;
    position: relative;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background: white;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin-top: 0;
    aspect-ratio: 2400 / 1400;
    background: url('Assets/heroBackground.jpeg') no-repeat;
    background-size: 100% auto;
    background-position: center -150px;
    background-color: var(--secondary);
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero-content-overlay {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    background: linear-gradient(to right, rgba(0, 12, 29, 0.9) 0%, rgba(0, 12, 29, 0.2) 60%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: clamp(18px, 6vw, 10%);
    padding-right: clamp(18px, 6vw, 10%);
    padding-top: 170px;
    transition: all 0.5s ease;
}

.hero-text-block {
    width: 100%;
    max-width: min(600px, 100%);
    box-sizing: border-box;
    text-align: left;
    animation: slideInLeft 1s ease-out;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(3.2rem, 7.1vmin, 6.8rem);
    font-weight: 900;
    line-height: 1.06;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    hyphens: auto;
    max-width: 100%;
}

.hero-title br {
    display: block;
}

.hero-title .accent {
    color: var(--primary);
}

/* Keep internal page headers bold but not as oversized as home hero text */
.page-header .hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
}

.hero-subtitle {
    font-size: clamp(1.28rem, 3vw, 1.85rem);
    color: var(--text-dim);
    margin-bottom: 35px;
    max-width: 36rem;
    width: 100%;
    font-weight: 400;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px clamp(28px, 6vw, 45px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.btn-primary {
    background-color: #ffffff;
    color: var(--secondary);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 35px rgba(255, 255, 255, 0.8),
        0 0 50px rgba(255, 255, 255, 0.4);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Headers & Typography */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: clamp(0.02em, 0.4vw, 2px);
    margin-bottom: 15px;
    text-align: center;
    overflow-wrap: anywhere;
    line-height: 1.12;
    max-width: 100%;
}

.section-title .accent {
    color: var(--primary);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

/* Color Overrides for White Background Sections */
.offers-section, .transform-section, .shop-section {
    color: var(--text-dark);
}

.offers-section .section-title, 
.transform-section .section-title, 
.shop-section .section-title {
    color: var(--text-dark);
}

.offers-section .section-subtitle,
.transform-section .section-subtitle,
.shop-section .section-subtitle {
    color: var(--text-dim-dark);
}

/* Offers Section */
.offers-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.offers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

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

.offer-card.side {
    height: 380px;
}

.offer-card.main {
    height: 480px;
    flex: 1.2;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    text-align: left;
    color: white;
}

.offer-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--text-dim);
}

.offer-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Creative Vehicle Transformations */
.transform-section {
    background-color: #ffffff;
    padding: 120px 0;
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.transform-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

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

.transform-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 12, 29, 0.95) 0%, rgba(0, 12, 29, 0.7) 60%, transparent 100%);
    color: white;
    transform: translateY(10px);
    transition: all 0.5s ease;
    overflow-wrap: anywhere;
}

.transform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(30, 64, 175, 0.2);
}

.transform-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (hover: hover) {
    .transform-card:hover .transform-content {
        transform: translateY(0);
    }
}

.transform-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #3b82f6;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
    overflow-wrap: anywhere;
}

.transform-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .transform-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
    .transform-card {
        height: 330px;
    }
}

@media (max-width: 992px) {
    .transform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .transform-card {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .transform-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .transform-card {
        height: 280px;
    }
}

.transform-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0066ff 0%, #4f46e5 45%, #ff00ff 100%);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    touch-action: manipulation;
}

.transform-link:hover,
.transform-link:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.55);
}

/* Shop Style Accessories Section */
.shop-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444; 
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 45%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    touch-action: manipulation;
}

.product-view-link:hover,
.product-view-link:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.45);
}

.product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 8px;
    margin-bottom: 15px;
}

.star {
    color: var(--star-gold);
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-left: 5px;
    font-weight: 500;
}

.product-price {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
    overflow-wrap: anywhere;
}



/* Footer & Other Styles */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-number {
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 1px;
}

.location-tag {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (prefers-reduced-motion: reduce) {
    .hero-text-block {
        animation: none;
    }
}

@media (max-width: 992px) {
    .hero-text-block {
        animation: none;
    }

    .nav-divider {
        display: none;
    }

    .logo-text {
        font-size: clamp(1rem, 4.2vw, 1.35rem);
        letter-spacing: 0.06em;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .transform-section,
    .shop-section,
    .offers-section,
    .locations-section,
    .testimonials-section {
        padding: 52px 0 64px;
    }

    .footer {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 32px;
    }

    .contact-info {
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        max-height: calc(100vh - var(--nav-height) - env(safe-area-inset-bottom));
        max-height: calc(100dvh - var(--nav-height) - env(safe-area-inset-bottom));
        background: var(--secondary);
        flex-direction: column;
        padding: 32px 24px max(36px, calc(16px + env(safe-area-inset-bottom)));
        text-align: center;
        gap: 24px;
        border-bottom: 1px solid var(--card-border-dark);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        z-index: 1002;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
        padding-top: 24px;
    }
    
    .hero {
        aspect-ratio: auto;
        height: 85vh; /* Taller hero for mobile */
        background-size: cover;
        background-position: center;
    }

    .hero-content-overlay {
        background: linear-gradient(to bottom, rgba(0, 12, 29, 0.8) 0%, rgba(0, 12, 29, 0.6) 50%, rgba(0, 12, 29, 0.9) 100%);
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 58px);
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .hero-text-block {
        text-align: center;
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-title {
        font-size: clamp(2.45rem, 10.4vw, 4.15rem);
        letter-spacing: -0.035em;
        line-height: 1.08;
        padding-inline: 2px;
    }

    .page-header .hero-title {
        font-size: clamp(1.7rem, 8.2vw, 2.55rem);
        letter-spacing: -0.01em;
        line-height: 1.1;
    }

    .hero-subtitle {
        margin: 0 auto clamp(22px, 5vw, 30px);
        font-size: clamp(1.18rem, 5.4vw, 1.55rem);
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero .btn-primary {
        box-shadow:
            0 0 12px rgba(255, 255, 255, 0.4),
            0 12px 32px rgba(0, 0, 0, 0.2);
        font-size: clamp(1rem, 4.4vw, 1.2rem);
    }

    .offers-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .transform-grid {
        grid-template-columns: 1fr;
    }

    .transform-card .transform-content {
        transform: translateY(0);
    }

    .transform-card:hover {
        transform: none;
    }

    .transform-card:active img,
    .transform-card:focus-within img {
        opacity: 0.95;
    }

    .product-card:hover {
        transform: none;
    }

    .offer-card:hover {
        transform: none;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
        gap: clamp(18px, 4vw, 30px);
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        border-radius: 16px;
        max-height: min(96vh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px));
    }

    .modal-media {
        min-height: 240px;
    }

    .modal-info {
        padding: 18px 14px max(22px, calc(14px + env(safe-area-inset-bottom)));
    }

    .modal-package-name {
        padding-right: 40px;
    }

    .media-gallery-split {
        padding: 1rem 0.75rem 1.35rem;
    }

    .media-gallery-card--photo img {
        width: 104px;
        height: 104px;
    }

    .hero {
        min-height: min(82vh, 520px);
    }

    .hero-cta-group .btn {
        max-width: 100%;
    }

    .modal-features-list li {
        align-items: flex-start;
    }

    #modalActionBtn {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
    }

    .locations-section {
        padding: 56px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-top: 28px;
    }

    .location-card {
        border-radius: 18px;
        padding: 22px 16px;
    }

    .location-name {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .location-details {
        margin-bottom: 20px;
    }

    .location-details li {
        gap: 10px;
        margin-bottom: 10px;
        font-size: 0.98rem;
    }

    .map-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom, 0px) + 12px);
    right: max(18px, env(safe-area-inset-right, 0px) + 10px);
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.reviews-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.reviews-main-layout {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Panel: Brand Summary */
.brand-summary-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.brand-logo-container {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.15);
}

.brand-logo-circle img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.brand-title-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.rating-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-value-score {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
}

.rating-stars-list {
    color: #ffb800;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.total-reviews-count {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.powered-by-google {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

.google-logo-styled {
    font-weight: 700;
}
.google-logo-styled .g-blue { color: #4285F4; }
.google-logo-styled .g-red { color: #EA4335; }
.google-logo-styled .g-yellow { color: #FBBC05; }
.google-logo-styled .g-green { color: #34A853; }

.review-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2563eb;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    min-height: 46px;
}

.review-google-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.google-svg-inline {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

/* Right Panel: Reviews Slider/Carousel */
.reviews-slider-section {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
    min-width: 0;
}

.reviews-slider-viewport {
    flex: 1;
    overflow: hidden;
    padding: 10px 5px;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

/* Review Card styling matching the exact design */
.review-card-layout {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #475569;
    text-transform: uppercase;
}

.review-meta-text {
    display: flex;
    flex-direction: column;
}

.review-user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a8a;
}

.review-time-text {
    font-size: 0.8rem;
    color: #94a3b8;
}

.review-google-logo {
    width: 22px;
    height: 22px;
}

.review-card-rating {
    color: #ffb800;
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-card-body-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow buttons */
.reviews-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    flex-shrink: 0;
}

.reviews-slider-arrow:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(255, 0, 85, 0.2);
}

.reviews-slider-arrow:focus {
    outline: none;
}

/* Pagination Dots */
.reviews-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.review-dot.active {
    background-color: #f59e0b;
    transform: scale(1.15);
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    .reviews-main-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .brand-summary-card {
        width: 100%;
        max-width: 450px;
        flex: none;
    }
    
    .review-card-layout {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .reviews-slider-section {
        position: relative;
        width: 100%;
        padding: 0 15px;
    }
    
    .reviews-slider-viewport {
        padding: 10px 0;
    }
    
    .reviews-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        z-index: 10;
        border-color: #e2e8f0;
    }
    
    .reviews-slider-arrow.prev {
        left: -10px;
    }
    
    .reviews-slider-arrow.next {
        right: -10px;
    }
    
    .review-card-body-text {
        font-size: 0.88rem;
        line-height: 1.5;
    }
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: var(--secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.location-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.location-details {
    list-style: none;
    margin-bottom: 30px;
}

.location-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-dim);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.location-details i {
    color: var(--primary);
    margin-top: 5px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #2563eb;
    transform: translateX(5px);
}

/* Modal System */
.modal-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    background: rgba(0, 12, 29, 0.9);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    align-items: safe center;
    z-index: 10001;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    padding-left: max(14px, env(safe-area-inset-left));
    box-sizing: border-box;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    max-height: min(90vh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
    color: var(--text-dark);
    overscroll-behavior: contain;
    touch-action: auto;
}

.modal-close {
    position: absolute;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: color 0.2s ease, transform 0.3s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-close:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    color: var(--primary);
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-media {
    flex: 1.2;
    background: #f1f5f9;
    position: relative;
    min-height: 400px;
}

.modal-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-package-name {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.35rem, 4.2vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary);
    line-height: 1.15;
    padding-right: 48px;
}

.modal-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dim-dark);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.modal-description {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    line-height: 1.75;
    margin-bottom: 30px;
}

.modal-features-list {
    list-style: none;
    margin-bottom: 40px;
}

.modal-features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.modal-features-list li i {
    color: #10b981;
}

.modal-features-list li.modal-feature-heading {
    display: block;
    align-items: unset;
    gap: 0;
    margin-top: 28px;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0066ff;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.modal-features-list .modal-feature-heading:first-child {
    margin-top: 0;
}

.modal-features-list .modal-feature-heading span {
    display: block;
}

.modal-features-list .modal-feature-sub {
    padding-left: 8px;
    font-weight: 500;
    margin-left: 4px;
}

/* Modal Media Gallery — photos & videos in separate rows */
.modal-media {
    flex: 1.2;
    background: #2a2520;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.media-gallery-root {
    flex: 1;
    width: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.media-gallery-split {
    padding: 1.25rem 1rem 2rem;
    background: linear-gradient(180deg, #faf9f7 0%, #f3efe8 48%, #ede8df 100%);
    min-height: 100%;
    box-sizing: border-box;
}

.media-gallery-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.95rem;
    background: linear-gradient(180deg, #0f172a, #020617);
    min-height: 280px;
    line-height: 1.5;
}

.media-gallery-section {
    margin: 0;
}

.media-hero {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.28);
    margin-bottom: 0.9rem;
}

.media-hero--photo {
    aspect-ratio: 16 / 9;
}

.media-hero--video {
    aspect-ratio: 16 / 9;
}

.media-hero-photo,
.media-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-gallery-section-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5c4d3f;
    margin: 0 0 0.9rem;
    font-family: 'Outfit', sans-serif;
}

.media-gallery-section-heading i {
    font-size: 0.95rem;
    opacity: 0.92;
}

.media-gallery-rule {
    border: none;
    border-top: 1px solid rgba(92, 77, 63, 0.25);
    margin: 1.35rem 0 1.5rem;
}

.media-gallery-strip {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.media-gallery-strip::-webkit-scrollbar {
    height: 7px;
}

.media-gallery-strip::-webkit-scrollbar-track {
    background: rgba(92, 77, 63, 0.12);
    border-radius: 8px;
}

.media-gallery-strip::-webkit-scrollbar-thumb {
    background: rgba(92, 77, 63, 0.35);
    border-radius: 8px;
}

.media-gallery-card--photo {
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
}

.media-gallery-card--photo img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    display: block;
    vertical-align: middle;
    touch-action: pan-x;
}

.media-gallery-card--photo:first-child img {
    border-color: #8b7355;
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.5), 0 8px 28px rgba(0, 0, 0, 0.14);
}

.media-gallery-card--photo.is-active img {
    border-color: #8b7355;
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.55), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.media-gallery-card--video {
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    width: min(100%, 340px);
    min-width: 260px;
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    border: 2px solid transparent;
}

.media-gallery-card--video.is-active {
    border-color: #8b7355;
    box-shadow: 0 0 0 1px rgba(139, 115, 85, 0.45), 0 14px 40px rgba(0, 0, 0, 0.28);
}

.media-gallery-video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f8fafc;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 9px;
    border-radius: 6px;
}

.media-gallery-video-frame {
    aspect-ratio: 16 / 9;
    background: #000;
}

.media-gallery-card--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-gallery-video-label {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e2e8f0;
    padding: 10px 10px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
}

/* Legacy single-strip carousel (unused with split gallery) */
.media-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}

.media-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
    z-index: 5;
}

#galleryNav:not(:empty) {
    display: flex;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}


@media (max-width: 992px) {
    .modal-content {
        flex-direction: column;
        max-height: min(95vh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 20px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: auto;
    }
    .modal-body {
        flex-direction: column;
    }
    .modal-media {
        min-height: min(42vh, 380px);
        flex: none;
    }
    .modal-info {
        padding: 28px max(20px, env(safe-area-inset-left)) 32px max(20px, env(safe-area-inset-right));
        padding-bottom: max(32px, calc(24px + env(safe-area-inset-bottom)));
        overflow-y: visible;
        overscroll-behavior: auto;
    }

    .media-gallery-root {
        overflow-y: visible;
        overscroll-behavior: auto;
    }
}

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

#modalActionBtn {
    background: #25d366 !important;
    color: white !important;
    padding: 18px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 15px !important;
    margin-top: 30px;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

#modalActionBtn:hover {
    background: #1eb954 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5) !important;
}

#modalActionBtn i {
    font-size: 1.5rem;
}
