/**
 * Pempek Tenda Biru - Main Stylesheet
 * Version: 2.0
 * Last updated: 2025
 *
 * Table of Contents:
 * 1. CSS Variables & Reset
 * 2. Animations
 * 3. Typography & Base
 * 4. Header & Navigation
 * 5. Buttons
 * 6. Hero Section
 * 7. Social Proof Bar
 * 8. Section Styles
 * 9. Why Us Section
 * 10. Menu Sections
 * 11. B2B Section
 * 12. Media Coverage
 * 13. Instagram Section
 * 14. Order Section
 * 15. Locations Section
 * 16. Testimonials Section
 * 17. Story Section
 * 18. Footer
 * 19. Floating Elements
 * 20. Responsive (Tablet)
 * 21. Responsive (Mobile)
 * 22. Accessibility
 */

/* ===========================================
   1. CSS VARIABLES & RESET
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --navy: #1e3a5f;
    --royal-blue: #2563eb;
    --teal: #0d9488;
    --gold: #f59e0b;
    --cream: #fef3c7;

    /* Neutral Colors */
    --white: #ffffff;
    --dark-gray: #374151;
    --light-gray: #f3f4f6;

    /* Spacing */
    --section-padding: 3rem 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s ease;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    /* Card Styling */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-bg-dark: rgba(30, 58, 95, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --glass-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --glass-blur: blur(12px);
    --glass-blur-heavy: blur(20px);
}

/* ===========================================
   2. ANIMATIONS
   =========================================== */

/* Page enter animation */
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    animation: pageEnter 0.5s ease-out;
}

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

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

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===========================================
   2B. GLASS MORPHISM UTILITIES (iOS Style)
   =========================================== */
.glass {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-dark {
    background: rgba(30, 58, 95, 0.85);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-heavy {
    background: rgba(255, 255, 255, 0.95);
}

.glass:hover,
.glass-dark:hover {
    box-shadow: var(--glass-shadow-hover);
}

/* ===========================================
   3. TYPOGRAPHY & BASE
   =========================================== */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .header {
        padding-left: max(1.5rem, calc(1.5rem + env(safe-area-inset-left)));
        padding-right: max(1.5rem, calc(1.5rem + env(safe-area-inset-right)));
    }

    .sticky-mobile-cta {
        padding-bottom: max(1rem, calc(1rem + env(safe-area-inset-bottom)));
        padding-left: max(1rem, calc(1rem + env(safe-area-inset-left)));
        padding-right: max(1rem, calc(1rem + env(safe-area-inset-right)));
    }

    .floating-wa-fab {
        bottom: max(2rem, calc(2rem + env(safe-area-inset-bottom)));
        right: max(2rem, calc(2rem + env(safe-area-inset-right)));
    }
}

/* ===========================================
   4. HEADER & NAVIGATION
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all var(--transition-fast), transform 0.3s ease;
}

/* Smart header: hide on scroll down */
.header.header-hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    padding: 0.3rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    transition: transform var(--transition-fast);
}

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

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--teal);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--teal);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    padding: 0.5rem;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-fast);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    min-height: 44px;
}

/* ===========================================
   5. BUTTONS
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    min-height: 44px;
}

.btn:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), #0f766e);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #d97706);
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-whatsapp {
    background: white;
    color: var(--navy);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.5);
    background: var(--cream);
}

/* ===========================================
   6. HERO SECTION - BACKDROP STYLE
   =========================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Backdrop - Full Background Image */
.hero-backdrop {
    background: var(--navy);
}

.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    will-change: auto;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(100%) scale(1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-bg-slide.slide-out-left {
    transform: translateX(-100%) scale(1);
    opacity: 0;
}

.hero-bg-slide.slide-out-right {
    transform: translateX(100%) scale(1);
    opacity: 0;
}

.hero-bg-slide.slide-in-left {
    transform: translateX(-100%) scale(1);
    opacity: 0;
}

.hero-bg-slide.slide-in-right {
    transform: translateX(100%) scale(1);
    opacity: 0;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Gradient Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.92) 0%,
        rgba(30, 58, 95, 0.75) 40%,
        rgba(30, 58, 95, 0.5) 70%,
        rgba(30, 58, 95, 0.3) 100%
    );
    z-index: 1;
}

/* Floating Mascot - Single, Subtle */
.floating-mascot {
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.mascot-hero {
    bottom: 10%;
    left: 3%;
    width: 140px;
    animation: float 5s ease-in-out infinite;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Legacy mascot positions (if needed elsewhere) */
.mascot-1 {
    top: 15%;
    right: 5%;
    width: 120px;
    animation: float 4s ease-in-out infinite;
}

.mascot-2 {
    bottom: 10%;
    left: 3%;
    width: 100px;
    animation: float 5s ease-in-out infinite 1s;
}

.mascot-3 {
    top: 60%;
    right: 2%;
    width: 80px;
    animation: bounce 3s ease-in-out infinite;
}

/* Scattered Maskots across sections */
.mascot-menu {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 110px;
    opacity: 0.85;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.mascot-story {
    position: absolute;
    bottom: 5%;
    right: 3%;
    width: 130px;
    opacity: 0.8;
    animation: float 5.5s ease-in-out infinite 0.5s;
    pointer-events: none;
    z-index: 1;
}

.mascot-b2b {
    position: absolute;
    top: 15%;
    left: 3%;
    width: 100px;
    opacity: 0.75;
    animation: bounce 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.mascot-order {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 95px;
    opacity: 0.8;
    animation: float 5s ease-in-out infinite 1s;
    pointer-events: none;
    z-index: 1;
}

.mascot-footer {
    position: absolute;
    top: -60px;
    right: 10%;
    width: 120px;
    opacity: 0.9;
    animation: bounce 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.mascot-locations {
    position: absolute;
    top: 20%;
    right: 7%;
    width: 105px;
    opacity: 0.8;
    animation: float 5.5s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: 1;
}

.mascot-media {
    position: absolute;
    bottom: 12%;
    left: 4%;
    width: 115px;
    opacity: 0.75;
    animation: bounce 4.5s ease-in-out infinite 0.5s;
    pointer-events: none;
    z-index: 1;
}

.mascot-instagram {
    position: absolute;
    top: 8%;
    left: 6%;
    width: 100px;
    opacity: 0.8;
    animation: float 5s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 1;
}

.mascot-fullmenu {
    position: absolute;
    bottom: 8%;
    right: 5%;
    width: 120px;
    opacity: 0.85;
    animation: bounce 4s ease-in-out infinite 1s;
    pointer-events: none;
    z-index: 1;
}

.mascot-video-testimonials {
    position: absolute;
    top: 15%;
    left: 4%;
    width: 105px;
    opacity: 0.75;
    animation: float 5.5s ease-in-out infinite 0.8s;
    pointer-events: none;
    z-index: 1;
}

.mascot-video-gallery {
    position: absolute;
    bottom: 10%;
    right: 6%;
    width: 110px;
    opacity: 0.8;
    animation: bounce 4.2s ease-in-out infinite 1.2s;
    pointer-events: none;
    z-index: 1;
}

/* Hero Container - Backdrop style (single column, centered left) */
.hero-backdrop .hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: block;
    position: relative;
    z-index: 3;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-backdrop .hero-content {
    max-width: 600px;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}

.counter-value {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero .btn-gold {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.trust-badge .check {
    color: var(--gold);
}

.trust-badge-logo {
    gap: 0.4rem;
}

.trust-badge-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.1);
}

/* Hero Slide Indicators (Dots) */
.hero-indicators {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.hero-dot:hover,
.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.hero-dot:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Hero Carousel Arrow Controls (Glass Style) */
.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 5;
    pointer-events: none;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    pointer-events: auto;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-arrow:hover {
    background: rgba(245, 158, 11, 0.8);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.hero-arrow:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.hero-arrow:active {
    transform: scale(0.95);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s both;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.carousel-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5/4;
    object-fit: cover;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

/* Carousel Indicators/Dots */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.carousel-dot:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Legacy hero-image support (if used elsewhere) */
.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.hero-mascot {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* ===========================================
   7. SOCIAL PROOF BAR
   =========================================== */
.social-proof-bar {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    overflow: hidden;
}

.social-proof-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-fast);
}

.proof-item:hover {
    transform: translateY(-3px);
}

.proof-icon {
    font-size: 1.8rem;
}

.proof-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--navy);
}

.proof-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* ===========================================
   8. SECTION STYLES
   =========================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   9. WHY US SECTION
   =========================================== */
.why-us {
    background: var(--light-gray);
    position: relative;
}

.why-us-mascot {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    opacity: 0.15;
    pointer-events: none;
}

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

.usp-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow-hover);
    background: rgba(255, 255, 255, 0.85);
}

.usp-card:hover::before {
    transform: scaleX(1);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), #0f766e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform var(--transition-medium);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(10deg);
}

.usp-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.usp-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===========================================
   10. MENU SECTIONS
   =========================================== */
.menu-favorit {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    overflow: hidden;
}

/* Featured Card (Kapal Selam) */
.menu-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.menu-card.featured .menu-card-image {
    height: 100%;
    min-height: 350px;
    aspect-ratio: auto;
}

.menu-card.featured .menu-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%);
    position: relative;
    z-index: 2;
}

.menu-card.featured h3 {
    color: var(--white);
    font-size: 2rem;
}

.menu-card.featured p {
    color: rgba(255,255,255,0.9);
}

.menu-card.featured .menu-price {
    color: var(--gold);
    font-size: 1.8rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--glass-shadow-hover);
}

/* Featured card (Kapal Selam) - elevation only, no background change */
.menu-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: var(--glass-shadow-hover);
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%);
}

.menu-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease-out-expo);
}

.menu-card:hover .menu-card-image {
    transform: scale(1.03);
}

.menu-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.menu-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
}

.menu-card .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Full Menu Styles */
.full-menu {
    background: var(--light-gray);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-size: 0.9rem;
    min-height: 44px;
    box-shadow: var(--glass-shadow);
}

.menu-tab:hover, .menu-tab.active {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.menu-tab:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.menu-category {
    display: none;
    animation: fadeIn 0.3s ease;
}

.menu-category.active {
    display: block;
}

.menu-category-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--dark-gray);
}

.menu-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.menu-table {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border-collapse: collapse;
}

.menu-table thead {
    background: var(--navy);
    color: var(--white);
}

.menu-table th, .menu-table td {
    padding: 1rem 1.25rem;
    text-align: left;
}

.menu-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
    transition: background 0.2s;
}

.menu-table tbody tr:hover {
    background: var(--cream);
}

.menu-item-name {
    font-weight: 600;
    color: var(--navy);
}

.menu-item-price {
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}

.packaging-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--glass-shadow);
}

.packaging-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* ===========================================
   11. B2B SECTION
   =========================================== */
.b2b-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
}

.b2b-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.b2b-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-fast);
}

.b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
    background: rgba(255, 255, 255, 0.85);
}

.b2b-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.b2b-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.b2b-card .hook {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.b2b-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.b2b-benefits {
    list-style: none;
}

.b2b-benefits li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.b2b-benefits li::before {
    content: '✓';
    color: var(--teal);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Collaboration */
.collab-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--glass-shadow);
}

.collab-section h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.collab-section p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

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

.collab-logo-item {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collab-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.collab-logo-item img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.collab-logo-item:hover img {
    filter: grayscale(0%);
}

/* B2B Form */
.b2b-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.b2b-form-container h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.b2b-form-container > p {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1rem 3rem;
}

.form-alternative {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-gray);
}

.form-alternative a {
    color: var(--teal);
    font-weight: 600;
}

/* B2B CTA Container */
.b2b-cta-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    text-align: center;
}

.b2b-cta-container h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.b2b-cta-container > p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.b2b-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lg svg {
    width: 20px;
    height: 20px;
}

/* B2B Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-container {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.modal-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark-gray);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--navy);
}

.modal-body {
    padding: 2rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .modal-container {
        max-height: 85vh;
        margin: 0;
    }
    .modal-header {
        padding: 1rem 1.5rem;
    }
    .modal-body {
        padding: 1.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .b2b-cta-buttons {
        flex-direction: column;
    }
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   12. MEDIA COVERAGE
   =========================================== */
.media-coverage-section {
    background: var(--white);
}

.media-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.media-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.9);
}

.media-card:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.media-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.media-card h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.media-title {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    color: var(--dark-gray);
}

.media-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
}

.media-card:hover .media-link {
    text-decoration: underline;
}

/* ===========================================
   13. INSTAGRAM SECTION
   =========================================== */
.instagram-section {
    background: var(--light-gray);
    padding: 3rem 0 !important;
}

.instagram-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.instagram-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.instagram-username {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.instagram-follower-count {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.btn-follow {
    padding: 0.75rem 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.instagram-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.instagram-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Instagram Real Embed Carousel */
.instagram-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.instagram-embed-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.instagram-embed-carousel::-webkit-scrollbar {
    display: none;
}

.instagram-embed-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    width: max-content;
}

/* PATCH: Instagram embed - Remove fixed height to prevent black bars */
.instagram-embed-item {
    flex-shrink: 0;
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.instagram-embed-item iframe {
    width: 100%;
    border: none;
}

.instagram-embed-item .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.instagram-embed-item .instagram-media {
    min-width: 328px !important;
    max-width: 328px !important;
    margin: 0 !important;
}

.instagram-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(20, 42, 72, 0.15);
    color: var(--navy);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-arrow:hover {
    background: white;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.instagram-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.instagram-arrow-prev {
    left: 0;
}

.instagram-arrow-next {
    right: 0;
}

.instagram-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.instagram-cta .btn-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-cta .btn-follow svg {
    width: 20px;
    height: 20px;
}

/* Scroll snap for Instagram embeds */
@supports (scroll-snap-type: x mandatory) {
    .instagram-embed-carousel {
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
    }
    .instagram-embed-item {
        scroll-snap-align: start;
    }
}

/* Mobile adjustments for Instagram embeds */
/* PATCH: Remove fixed height on mobile too */
@media (max-width: 768px) {
    .instagram-carousel-wrapper {
        padding: 0 2.5rem;
    }

    .instagram-embed-item {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
    }

    .instagram-embed-item .instagram-media {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .instagram-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ===========================================
   14. ORDER SECTION
   =========================================== */
.order-section {
    background: var(--white);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.order-main {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.95), rgba(15, 118, 110, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.order-main h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.order-main p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    min-height: 44px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.order-phone {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.order-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.platform-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow-hover);
}

.platform-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.platform-card:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.platform-card img {
    height: 40px;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.platform-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.shipping-info {
    grid-column: 1 / -1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.shipping-info h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.shipping-info p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* ===========================================
   15. LOCATIONS SECTION
   =========================================== */
.locations-section {
    background: var(--light-gray);
}

.locations-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.location-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.location-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.location-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.location-arrow-prev {
    left: 0;
}

.location-arrow-next {
    right: 0;
}

.location-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-fast);
    position: relative;
    box-shadow: var(--glass-shadow);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
    background: rgba(255, 255, 255, 0.85);
}

.location-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
    transition: transform 0.2s var(--ease-out-expo);
}

.location-card:hover .location-image {
    transform: scale(1.03);
}

.location-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.2));
}

.location-content {
    padding: 1.5rem;
}

.location-card.new {
    border: 3px solid var(--gold);
}

.location-new-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.location-name {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.location-address {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.location-rating {
    color: var(--gold);
}

.location-feature {
    background: var(--cream);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    display: inline-block;
}

.location-card .btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem;
    font-size: 0.85rem;
}

/* ===========================================
   16. TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
    background: var(--navy);
    color: var(--white);
}

.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonial-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.testimonial-arrow-prev {
    left: 0;
}

.testimonial-arrow-next {
    right: 0;
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-3px);
}

.testimonial-flag {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-info {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===========================================
   16.5 FOTO PRODUK GALLERY - Auto Slideshow
   =========================================== */
.foto-produk-section {
    background: var(--cream);
    padding: 0;
    overflow: hidden;
}

.foto-produk-slideshow {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.foto-produk-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: slideshow-scroll 60s linear infinite;
}

.foto-produk-track:hover {
    animation-play-state: paused;
}

.foto-produk-track img {
    flex-shrink: 0;
    height: 250px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto-produk-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

@keyframes slideshow-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .foto-produk-slideshow {
        padding: 1.5rem 0;
    }
    .foto-produk-track img {
        height: 180px;
    }
}

/* ===========================================
   17. STORY SECTION
   =========================================== */
.story-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%);
    color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.story-text {
    font-size: 1rem;
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 1rem;
}

.story-quote {
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.timeline {
    margin-top: 3rem;
}

.timeline-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.timeline-items {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.timeline-item {
    flex: 0 0 180px;
    scroll-snap-align: start;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.timeline-desc {
    font-size: 0.8rem;
    opacity: 0.9;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge-card {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-fast);
}

.badge-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.badge-card p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===========================================
   17B. VIDEO SECTIONS
   =========================================== */

/* Video Testimonials */
.video-testimonials-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%);
    color: var(--white);
    overflow: hidden;
}

.video-carousel-container {
    position: relative;
    margin-top: 2rem;
}

.video-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0 2rem;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-fast);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
}

.video-embed {
    position: relative;
    width: 100%;
    background: white;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.video-embed:hover {
    transform: none;
}

.video-embed iframe[data-src] {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-embed .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.video-embed blockquote.instagram-media {
    background: white;
}

.video-embed iframe.loaded,
.video-embed iframe.instagram-media-rendered {
    display: block;
}

/* Video Thumbnail */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-fast);
}

.video-embed.playing .video-thumbnail {
    opacity: 0;
    pointer-events: none;
}

/* Play Button Overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--navy);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-embed:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--gold);
    border-color: var(--white);
}

.video-embed:hover .video-play-btn::after {
    border-left-color: var(--white);
}

.video-embed.playing .video-play-btn {
    display: none;
}

/* Instagram logo watermark */
.video-ig-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.video-ig-badge::before {
    content: '📸';
    font-size: 1rem;
}

.video-embed.playing .video-ig-badge {
    display: none;
}

.video-info {
    padding: 1.25rem;
}

.video-author {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.video-role {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.video-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

/* Video Gallery with Tabs */
.video-gallery-section {
    background: var(--light-gray);
}

.video-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.video-tab {
    padding: 0.875rem 1.75rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-size: 0.95rem;
    min-height: 48px;
    box-shadow: var(--glass-shadow);
}

.video-tab:hover,
.video-tab.active {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--teal);
}

.video-gallery-content {
    display: none;
}

.video-gallery-content.active {
    display: block;
}

.video-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
    margin-bottom: 2rem;
}

/* PATCH: Video grid spacing - Reduced gap for tighter layout */
.video-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.video-grid::-webkit-scrollbar {
    display: none;
}

/* PATCH: Video card background - More opaque for better text readability */
/* PATCH: Video card width - Adjusted for 1rem gap (3rem total for 4 cards) */
.video-gallery-card {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-width: calc((100% - 3rem) / 4);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-fast);
}

.video-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
}

/* PATCH: Arrow button visibility - Navy color with solid background for light sections */
.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(20, 42, 72, 0.15);
    color: var(--navy);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-arrow:hover {
    background: white;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.video-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.video-arrow-prev {
    left: 0;
}

.video-arrow-next {
    right: 0;
}

.video-gallery-card .video-embed {
    min-height: 0;
}

.video-gallery-card .video-info {
    padding: 1rem;
}

.video-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.video-description {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* ===========================================
   PRESS WALL (Media Coverage Visual)
   =========================================== */
.press-wall {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.press-wall-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ===========================================
   MEDIA LOGO (replaces emoji icons)
   =========================================== */
.media-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.media-logo-text {
    background: var(--navy);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===========================================
   ORDER PLATFORMS - LOGO ONLY (centered)
   =========================================== */
.order-platforms-centered {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.platform-logo-only {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo-only img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* ===========================================
   GMAPS REVIEWS GALLERY
   =========================================== */
.gmaps-reviews-section {
    background: var(--cream);
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
}

.gmaps-slideshow {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 2rem;
}

.gmaps-track {
    display: flex;
    gap: 1rem;
    animation: gmaps-scroll 40s linear infinite;
    width: max-content;
}

.gmaps-track img {
    height: 220px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes gmaps-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===========================================
   INSTAGRAM EMBED FIX (remove black bars)
   =========================================== */
.instagram-embed-item {
    background: white !important;
}

.instagram-embed-item iframe {
    min-height: 500px;
    background: white;
}

/* PATCH: Video Hub section spacing - Reduce top padding for better flow */
/* PATCH: Video Hub background - Light background for better contrast with navy text */
.video-hub-section {
    padding-top: 2rem !important;
    background: var(--white);
}

/* PATCH: Video Hub header spacing - Tighter vertical rhythm */
.video-hub-section .section-header {
    margin-bottom: 2rem;
}

.video-hub-section .section-eyebrow {
    margin-bottom: 0.5rem;
}

.video-hub-section .section-title {
    margin-bottom: 0.75rem;
}

.video-hub-section .section-subtitle {
    margin-bottom: 0;
}

/* Video carousel navigation arrows */
.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.video-nav:hover {
    background: rgba(245, 158, 11, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.video-nav-prev {
    left: -24px;
}

.video-nav-next {
    right: -24px;
}

/* ===========================================
   18. FOOTER
   =========================================== */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-tagline {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-links a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-certs {
    margin-top: 0.4rem;
    font-size: 0.75rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

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

/* ===========================================
   19. FLOATING ELEMENTS
   =========================================== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 998;
}

.sticky-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Floating WhatsApp FAB - Enhanced with Glass */
.floating-wa-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(18, 140, 126, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.floating-wa-fab .fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-wa-fab .fab-icon svg {
    width: 24px;
    height: 24px;
}

.floating-wa-fab .fab-text {
    white-space: nowrap;
}

/* Pulse animation behind the FAB */
.floating-wa-fab .fab-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: fabPulse 2s ease-out 3;
}

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

.floating-wa-fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, rgba(18, 140, 126, 1) 0%, rgba(7, 94, 84, 1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-wa-fab:hover .fab-pulse {
    animation: none;
}

.floating-wa-fab:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.floating-wa-fab:active {
    transform: translateY(-2px) scale(1.02);
}

/* Legacy floating-wa (if used elsewhere) */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: all var(--transition-fast);
}

.floating-wa:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* ===========================================
   20. RESPONSIVE (TABLET)
   =========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 { font-size: 2.5rem; }
    .hero-cta { justify-content: center; }
    .trust-badges { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 400px; }
    .hero-mascot { width: 120px; right: -20px; bottom: -20px; }
    .menu-card.featured { grid-column: span 1; display: block; }
    .menu-card.featured .menu-card-image { min-height: 220px; }
    .b2b-cards { grid-template-columns: 1fr; }

    /* Hero Backdrop Tablet */
    .hero-backdrop .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-indicators {
        justify-content: center;
    }
    .mascot-hero {
        width: 100px;
        bottom: 5%;
        left: 2%;
        opacity: 0.7;
    }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(30, 58, 95, 0.85) 0%,
            rgba(30, 58, 95, 0.7) 50%,
            rgba(30, 58, 95, 0.85) 100%
        );
    }
}

/* ===========================================
   21. RESPONSIVE (MOBILE)
   =========================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 2rem 0;
    }

    /* Better mobile font sizes for readability */
    body {
        font-size: 16px;
        line-height: 1.7;
    }

    .nav-links, .nav .btn { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-menu { display: block; }

    .section-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }

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

    .hero h1 {
        font-size: 2.3rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    /* Better mobile spacing */
    .section-container {
        padding: 0 1.25rem;
    }

    .usp-card,
    .b2b-card,
    .menu-card {
        padding: 1.75rem;
    }

    /* Larger touch targets on mobile */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .menu-tab {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Hero Backdrop Mobile */
    .hero-backdrop {
        min-height: 100vh;
        padding-top: 70px;
    }
    .hero-backdrop .hero-container {
        padding: 2rem 1.25rem 3rem;
    }
    .hero-backdrop .hero-content {
        text-align: center;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .trust-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    .hero-indicators {
        justify-content: center;
    }
    .mascot-hero {
        display: none;
    }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(30, 58, 95, 0.9) 0%,
            rgba(30, 58, 95, 0.75) 40%,
            rgba(30, 58, 95, 0.9) 100%
        );
    }
    .hero-arrows {
        display: none;
    }

    /* Hide scattered maskots on mobile for cleaner UI */
    .mascot-menu,
    .mascot-story,
    .mascot-b2b,
    .mascot-order,
    .mascot-footer,
    .mascot-locations,
    .mascot-media,
    .mascot-instagram,
    .mascot-fullmenu,
    .mascot-video-testimonials,
    .mascot-video-gallery,
    .why-us-mascot {
        display: none;
    }

    /* Floating WhatsApp FAB Mobile - Icon only */
    .floating-wa-fab {
        bottom: 5.5rem;
        right: 1rem;
        padding: 0.875rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    .floating-wa-fab .fab-text { display: none; }
    .floating-wa-fab .fab-icon svg { width: 28px; height: 28px; }

    .floating-wa { bottom: 5rem; }
    .sticky-mobile-cta { display: block; }

    .order-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .testimonial-card { flex: 0 0 85%; min-width: 85%; }
    .testimonials-carousel-wrapper { padding: 0 2rem; }
    .order-platforms-centered { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .badges-grid { grid-template-columns: 1fr; }

    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .instagram-feed-header { flex-direction: column; gap: 1rem; }
    .instagram-preview { padding: 1.5rem; }
    .btn-follow { width: 100%; justify-content: center; }

    .story-content { grid-template-columns: 1fr; }
    .menu-tabs { flex-direction: column; }
    .form-grid { grid-template-columns: 1fr; }

    /* Video sections mobile */
    .video-card {
        flex: 0 0 280px;
    }

    .video-carousel-wrapper {
        padding: 0 2.5rem;
    }

    .video-grid {
        gap: 0.75rem;
    }

    /* PATCH: Mobile video card width - Adjusted for 0.75rem gap (1 gap for 2 cards) */
    .video-gallery-card {
        flex: 0 0 calc((100% - 0.75rem) / 2);
        min-width: calc((100% - 0.75rem) / 2);
    }

    .video-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .video-tabs {
        flex-direction: column;
        width: 100%;
    }

    .video-tab {
        width: 100%;
        justify-content: center;
    }

    .video-nav {
        display: none;
    }

    .video-carousel {
        padding: 1rem 0.5rem 2rem;
    }
}

/* ===========================================
   22. ACCESSIBILITY & MOBILE OPTIMIZATIONS
   =========================================== */

/* Better tap highlighting for mobile */
* {
    -webkit-tap-highlight-color: rgba(13, 148, 136, 0.2);
    -webkit-touch-callout: none;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(13, 148, 136, 0.3);
}

/* Touch feedback for mobile */
.btn.touching,
.menu-tab.touching,
.platform-card.touching,
.location-card.touching,
.menu-card.touching {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Prevent text selection on UI elements */
.btn, .menu-tab, .carousel-btn, .hero-arrow, .hero-dot, .carousel-dot {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improve touch scrolling performance */
.hero-bg-slideshow,
.instagram-grid,
.timeline-items {
    -webkit-overflow-scrolling: touch;
}

/* Prevent overscroll bounce on iOS */
body {
    overscroll-behavior-y: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .menu-card,
    .usp-card,
    .b2b-card,
    .location-card {
        border: 2px solid var(--navy);
    }
}

/* Focus visible for keyboard users */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===========================================
   23. MULTI-PAGE STYLES
   =========================================== */

/* Simple Hero for sub-pages */
.hero-simple {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2744 100%);
    padding: 8rem 1.5rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-simple h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}

.hero-simple p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.hero-simple .btn {
    margin-top: 1.5rem;
    position: relative;
}

/* Active nav state per page */
.page-beranda .nav-links a[href="index-v2.html"],
.page-menu .nav-links a[href="menu.html"],
.page-review .nav-links a[href="review.html"],
.page-galeri .nav-links a[href="galeri.html"],
.page-lokasi .nav-links a[href="lokasi.html"],
.page-b2b .nav-links a[href="b2b.html"] {
    color: var(--gold) !important;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.page-beranda .mobile-menu-links a[href="index-v2.html"],
.page-menu .mobile-menu-links a[href="menu.html"],
.page-review .mobile-menu-links a[href="review.html"],
.page-galeri .mobile-menu-links a[href="galeri.html"],
.page-lokasi .mobile-menu-links a[href="lokasi.html"],
.page-b2b .mobile-menu-links a[href="b2b.html"] {
    color: var(--gold) !important;
    font-weight: 700;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Location map embed */
.location-map {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 12px;
    margin-top: 1rem;
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hours-table th,
.hours-table td {
    padding: 0.75rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.hours-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-card h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* B2B inline form */
.b2b-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.b2b-form-section h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Locations static grid for lokasi.html */
.locations-static-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .locations-static-grid {
        grid-template-columns: 1fr;
    }

    .hero-simple {
        padding: 7rem 1rem 2rem;
    }

    .b2b-form-section {
        padding: 1.5rem;
    }

    .back-to-top {
        bottom: 5rem;
        right: 1rem;
    }
}

/* Menu item thumbnails */
.menu-item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .menu-item-thumb {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        margin-right: 0.4rem;
    }
}

/* ===========================================
   24. MOBILE OPTIMIZATION FIXES
   =========================================== */
@media (max-width: 768px) {

    /* FIX 1: Remove sticky CTA bar — keep only WhatsApp FAB icon */
    .sticky-mobile-cta {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    /* FAB position without sticky bar */
    .floating-wa-fab {
        bottom: 1.5rem;
        right: 1rem;
    }

    .floating-wa {
        bottom: 1.5rem;
    }

    .back-to-top {
        bottom: 5rem;
        right: 1rem;
    }

    /* FIX 2: Smart header — stays fixed, JS hides on scroll down */
    .header {
        position: fixed;
    }

    /* FIX 3: Instagram embeds single column on mobile (review.html + galeri.html) */
    .video-gallery-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .video-carousel-wrapper {
        padding: 0 0.5rem;
    }

    .video-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .video-arrow-prev {
        left: -2px;
    }

    .video-arrow-next {
        right: -2px;
    }

    /* FIX 4: Reduce USP card size on mobile */
    .usp-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .usp-card {
        padding: 1.25rem;
        text-align: center;
    }

    .usp-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .usp-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* FIX 5: Social proof stats — consistent 2-col grid on mobile */
    .social-proof-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        justify-items: stretch;
    }

    .proof-item {
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .proof-icon {
        font-size: 1.4rem;
    }

    .proof-text strong {
        font-size: 1rem;
    }

    .proof-text {
        font-size: 0.75rem;
    }

    /* FIX 6: Prevent heading truncation by FAB */
    .section-title {
        padding-right: 0;
    }

    .why-us .section-title,
    .section-header .section-title {
        font-size: 1.6rem;
        line-height: 1.25;
        word-wrap: break-word;
    }

    /* FIX 7: Center footer social icons + tighten spacing */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-grid {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-title {
        margin-bottom: 0.5rem;
    }

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

    .footer-bottom {
        padding-top: 1rem;
    }

    /* FIX 8: Testimonial carousel arrows — smaller and outside cards */
    .testimonials-carousel-wrapper {
        padding: 0 2.5rem;
    }

    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .testimonial-arrow-prev {
        left: 0;
    }

    .testimonial-arrow-next {
        right: 0;
    }

    .testimonial-card {
        flex: 0 0 90%;
        min-width: 90%;
    }

    /* FIX 9: Timeline — center and horizontal scroll on mobile */
    .timeline {
        margin-top: 2rem;
    }

    .timeline-items {
        justify-content: flex-start;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
    }

    .timeline-item {
        flex: 0 0 160px;
    }

    /* FIX 10: Platform logo consistency */
    .platform-card.platform-logo-only img {
        width: 48px !important;
        height: 48px !important;
        object-fit: contain !important;
    }
}

/* ===========================================
   25. LAYOUT SHIFT PREVENTION
   =========================================== */

/* Prevent CLS on image containers */
.menu-card-image {
    aspect-ratio: 16 / 10;
}

.menu-card-v2__img {
    aspect-ratio: 16 / 10;
}

.menu-card-v2__placeholder {
    aspect-ratio: 16 / 10;
}

/* Reserve space for counter values */
.counter-value {
    display: inline-block;
    min-width: 2.5ch;
}

/* Standardize carousel arrow sizes */
.carousel-btn,
.video-arrow,
.testimonial-arrow {
    transition: all 0.3s var(--ease-out-expo);
}

/* Apply better easing to card hovers */
.usp-card,
.menu-card,
.menu-card-v2,
.b2b-card,
.location-card,
.platform-card,
.media-card,
.testimonial-card,
.badge-card,
.video-card,
.video-gallery-card,
.contact-card {
    transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s var(--ease-out-expo);
}
