/* ============================================
   WARUNG SAMBAL BAKAR - STYLE.CSS (DESKTOP ONLY)
   ============================================ */

/* ========== 1. CSS VARIABLES ========== */
:root {
    /* Primary Colors - Coklat Tua Premium */
    --primary-color: #5D2906;
    --primary-light: #8B4513;
    --primary-lighter: #A0522D;
    --primary-dark: #3A1A04;
    --primary-gradient: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    
    /* Secondary Colors - Orange Hangat */
    --secondary-color: #D2691E;
    --secondary-light: #E67E22;
    --secondary-dark: #B3540C;
    --secondary-gradient: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    
    /* Background Colors */
    --bg-dark: #1A0F0A;
    --bg-light: #2C1810;
    --bg-section: #3A1A04;
    --bg-card: rgba(255, 255, 255, 0.12);
    
    /* Text Colors */
    --text-dark: #FFFFFF;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.9);
    --text-bold: #FFFFFF;
    --text-orange: #FFA726;
    
    /* Accent Colors */
    --accent-success: #4CAF50;
    --accent-warning: #FFC107;
    --accent-danger: #F44336;
    --accent-info: #2196F3;
    
    /* Social Media Colors */
    --social-yt: #FF0000;
    --social-tt: #000000;
    --social-ig: #E4405F;
    --social-fb: #1877F2;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 25px;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ========== 2. CSS RESET & GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--bg-light) !important;
}

body {
    padding-top: 80px !important;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== 3. TYPOGRAPHY & UTILITIES ========== */
.text-light {
    color: var(--text-light) !important;
}

.text-white-50 {
    color: var(--text-muted) !important;
}

/* Font Weight untuk semua judul */
h1, h2, h3, h4, h5, h6,
.section-title, .section-title-light,
.creator-promo-title, .video-banner-title,
.menu-title, .testimonial-name,
.location-name, .gallery-info h5,
.video-title, .benefits-title,
.works-title, .platform-title,
.hero-greeting, .nav-link,
.btn-orange-here {
    font-weight: 700 !important;
}

/* Badge Custom */
.badge-custom {
    display: inline-block;
    background: var(--secondary-gradient);
    color: var(--text-light);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: none;
}

.badge-custom-light {
    display: inline-block;
    background: var(--bg-card);
    color: var(--text-light);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section Titles */
.section-title,
.section-title-light {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: var(--text-dark);
}

.section-title-light {
    color: var(--text-light);
}

/* Section Subtitles */
.section-subtitle,
.section-subtitle-light {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.section-subtitle {
    color: var(--text-muted);
}

.section-subtitle-light {
    color: var(--text-muted);
}

/* ============================================
   4. NAVIGATION BAR (DESKTOP ONLY - min-width: 992px)
   ============================================ */

/* Navbar Container - Fixed Position */
/* =============================================
   NAVBAR - WARUNG BAKAKAK
   ============================================= */

/* Base Navbar */
nav.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    height: 80px;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid var(--secondary-color);
}

/* Container */
nav.navbar .container {
    max-width: 1200px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =============================================
   LOGO
   ============================================= */

.navbar-brand {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-fast);
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* =============================================
   NAV COLLAPSE & LIST
   ============================================= */

/* Posisikan nav di tengah halaman (desktop) */
@media (min-width: 992px) {
    .navbar-collapse {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex !important;
        justify-content: center;
    }
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

/* =============================================
   NAV LINK
   ============================================= */

.nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: 44px;
    text-decoration: none !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link:focus {
    color: #FFFFFF !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(210, 105, 30, 0.4);
}

/* Active - tombol Wilujeng Sumping & halaman aktif */
.nav-link.active,
.nav-link.active:hover,
.nav-link.active:focus {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #FF8C00, var(--secondary-color));
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(210, 105, 30, 0.5);
}

/* Sembunyikan toggler di desktop */
.navbar-toggler {
    display: none;
}

/* =============================================
   DROPDOWN - TOGGLE & ARROW
   ============================================= */

/* Panah dropdown - orange */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    content: "";
    border-top: 0.35em solid #FF8C00;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    transition: transform var(--transition-fast);
}

/* Panah rotate & nav link highlight saat dropdown terbuka */
.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
    border-top-color: #FFA500;
}

.dropdown.show .nav-link {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    box-shadow:
        inset 0 2px 6px rgba(255, 255, 255, 0.3),
        0 6px 12px rgba(255, 140, 0, 0.7);
}

/* =============================================
   DROPDOWN - MENU BOX
   ============================================= */

.dropdown-menu {
    display: none;
    background: linear-gradient(135deg, #8B4513 0%, #5D2906 100%);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 250px;
    margin-top: 12px;
    position: absolute;
    z-index: 1000;
    box-shadow:
        0 20px 40px rgba(93, 41, 6, 0.9),
        inset 0 5px 20px rgba(255, 140, 0, 0.3);
}

.dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.25s ease-out;
}

/* =============================================
   DROPDOWN - ITEMS
   ============================================= */

.dropdown-item {
    color: #FFFFFF;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-left: 3px solid transparent;
    border-radius: 8px;
    margin: 3px 8px;
    background: transparent;
    transition: all var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.dropdown-item:hover {
    color: #FFFFFF;
    background: rgba(255, 140, 0, 0.15);
    border-left-color: #FF8C00;
    padding-left: 26px;
    transform: translateX(4px);
}

.dropdown-item:active,
.dropdown-item.active {
    background: rgba(255, 140, 0, 0.25);
    border-left-color: #FFA500;
    color: #FFD700;
}

/* =============================================
   DROPDOWN - IKON WARNA MENCERLANG
   ============================================= */

/* Base ikon */
.dropdown-item i.bi {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
}

/* Warna ikon normal */
.dropdown-item i.bi-calendar-event { color: #00FF7F; box-shadow: 0 0 8px rgba(0, 255, 127, 0.4); }
.dropdown-item i.bi-envelope       { color: #00CED1; box-shadow: 0 0 8px rgba(0, 206, 209, 0.4); }
.dropdown-item i.bi-briefcase      { color: #FFD700; box-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
.dropdown-item i.bi-graph-up       { color: #32CD32; box-shadow: 0 0 8px rgba(50, 205, 50, 0.4); }
.dropdown-item i.bi-newspaper      { color: #FF6347; box-shadow: 0 0 8px rgba(255, 99, 71, 0.4); }

/* Hover - ikon scale & glow lebih terang */
.dropdown-item:hover i.bi {
    transform: scale(1.15);
}

.dropdown-item:hover i.bi-calendar-event { color: #00FF00; background: rgba(0, 255, 0, 0.15);   box-shadow: 0 0 16px #00FF00; }
.dropdown-item:hover i.bi-envelope       { color: #00BFFF; background: rgba(0, 191, 255, 0.15); box-shadow: 0 0 16px #00BFFF; }
.dropdown-item:hover i.bi-briefcase      { color: #FFA500; background: rgba(255, 165, 0, 0.15); box-shadow: 0 0 16px #FFA500; }
.dropdown-item:hover i.bi-graph-up       { color: #7FFF00; background: rgba(127, 255, 0, 0.15); box-shadow: 0 0 16px #7FFF00; }
.dropdown-item:hover i.bi-newspaper      { color: #FF4500; background: rgba(255, 69, 0, 0.15);  box-shadow: 0 0 16px #FF4500; }

/* =============================================
   DROPDOWN - DIVIDER & HEADER
   ============================================= */

.dropdown-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.5), transparent);
    margin: 8px 16px;
}

.dropdown-header {
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* =============================================
   ANIMASI
   ============================================= */

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   SCROLL EFFECT
   ============================================= */

.navbar-scrolled {
    height: 70px;
    background: linear-gradient(135deg,
        rgba(93, 41, 6, 0.98),
        rgba(139, 69, 19, 0.95));
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
}

.navbar-scrolled .navbar-brand img {
    height: 45px;
}

.navbar-scrolled .nav-link {
    padding: 10px 16px;
    height: 42px;
    font-size: 0.92rem;
}


/* ============================================
   5. FIXED SOCIAL CONTAINER & MUSIC PLAYER
   ============================================ */

.fixed-social-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.music-player-wrapper {
    position: relative;
}

/* Music Player Button */
.music-player-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    outline: none;
}

.music-player-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(145deg, #ff6b6b, #e74c3c);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

.music-player-btn.playing {
    background: linear-gradient(145deg, #2ecc71, #27ae60);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

/* Music Wave Animation */
.music-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.music-player-btn.playing .music-wave {
    opacity: 1;
}

.music-wave span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: musicWave 1.5s linear infinite;
}

.music-wave span:nth-child(2) { 
    animation-delay: 0.5s; 
}

.music-wave span:nth-child(3) { 
    animation-delay: 1s; 
}

.music-wave span:nth-child(4) { 
    animation-delay: 1.5s; 
}

@keyframes musicWave {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.8); 
        opacity: 0; 
    }
}

/* Tooltip */
.music-tooltip {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

.music-player-btn:hover .music-tooltip {
    opacity: 1;
    visibility: visible;
    top: -55px;
}

/* ========== 6. HERO BANNER SECTION ========== */
/* ============================================
   HERO SECTION - RAPIH & ESTETIK
   ============================================ */

#hero.hero-video-section {
    margin-top: -80px !important;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background - Optimal */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.85) contrast(1.2) saturate(1.1);
    pointer-events: none;
}

/* Overlay dengan Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Hero Content - Center Vertikal & Horizontal */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Judul - Font Size Dikurangi, Warna Gradient */
.hero-greeting {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: bold !important;
    letter-spacing: 1px;
    background: linear-gradient(
        135deg,
        #FFFFFF 100%,
        #FFE5D0 100%,
        #ffffff 100%,
        #e6dfdb 100%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    animation: fadeInDown 1s ease-out;
}

/* Logo Container - Perkecil Margin */
.hero-logo-container {
    margin: 20px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Logo - Perkecil Ukuran */
.hero-logo-text {
    max-width: 400px;
    width: 80%;
    height: auto;
    filter: 
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 20px rgba(210, 105, 30, 0.3));
    transition: transform 0.5s ease;
}

.hero-logo-text:hover {
    transform: scale(1.03);
}

/* Hero Buttons - Rapi & Seimbang */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-weight: 700 !important;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Primary Button dengan Glow Effect */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 
        0 5px 20px rgba(210, 105, 30, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(210, 105, 30, 0.6),
        0 0 30px rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

/* Scroll Indicator - Modern */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 3;
    animation: bounce 2s infinite;
    background: rgba(93, 41, 6, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background: rgba(210, 105, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

/* Optional: Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-decoration-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(210, 105, 30, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    bottom: 30%;
    right: 10%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Adjustments for Desktop */
@media (min-width: 1200px) {
    .hero-content {
        padding: 140px 20px 120px;
    }
    
    .hero-greeting {
        font-size: 2rem;
    }
    
    .hero-logo-text {
        max-width: 450px;
    }
}

/* Subtle Text Below Logo */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.9s both;
}



/* ========== 7. TENTANG KAMI SECTION ========== */
#about.about-3d-section {
    background-color: var(--bg-section);
    padding: var(--section-padding);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

#about .container {
    position: relative;
    z-index: 2;
}

.rotating-image-container {
    position: relative;
    perspective: 1000px;
    width: 80%;
    height: 400px;
    margin: 0 auto 0 0;
    transform: translateX(-20px);
}

.rotating-3d-image {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
    transform-origin: center center;
}

@keyframes rotate3d {
    0% { transform: rotateY(0deg) rotateX(5deg); }
    25% { transform: rotateY(90deg) rotateX(5deg); }
    50% { transform: rotateY(180deg) rotateX(5deg); }
    75% { transform: rotateY(270deg) rotateX(5deg); }
    100% { transform: rotateY(360deg) rotateX(5deg); }
}

.image-3d-card {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    backface-visibility: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.image-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-back {
    transform: rotateY(180deg) translateZ(100px);
}

.image-side {
    transform: rotateY(90deg) translateZ(100px);
}

.image-side-2 {
    transform: rotateY(-90deg) translateZ(100px);
}

.image-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.rotating-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.02); }
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    z-index: 10;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.elem-1 {
    top: 15%;
    right: 5%;
    animation: float1 6s infinite ease-in-out;
}

.elem-2 {
    bottom: 25%;
    left: 5%;
    animation: float2 7s infinite ease-in-out;
}

.elem-3 {
    top: 65%;
    right: -5%;
    animation: float3 8s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(15px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-10px) translateX(8px); }
    66% { transform: translateY(8px) translateX(-10px); }
}

.rotating-image-container:hover .rotating-3d-image {
    animation-play-state: paused;
}

.rotating-image-container:hover .image-3d-card img {
    transform: scale(1.05);
}

#about .col-lg-6:last-child {
    padding-left: 30px;
}

.section-title-light {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title-light::after {
    display: none;
}

#about .text-light {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-orange-here {
    background: linear-gradient(135deg, #FF8C00, #FFA500) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-orange-here:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.6) !important;
    background: linear-gradient(135deg, #FFA500, #FF8C00) !important;
    color: white !important;
}

.btn-orange-here:hover i {
    transform: translateX(5px) !important;
}



/* ========== 8. HAPPY SECTION ========== */
/* ============================================
   HAPPY SECTION - CAROUSEL HORIZONTAL FIX
   ============================================ */

.happy-section {
    position: relative;
    padding: 90px 0 60px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.video-background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.happy-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1) saturate(1.1);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(20,8,0,0.75) 100%
    );
    z-index: 2;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* ========== HEADER ========== */
.happy-section .text-center {
    margin-bottom: 50px;
}

.happy-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 14px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    position: relative;
}

.happy-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF8C00, transparent);
    border-radius: 2px;
}

.happy-section .section-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9) !important;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.75;
}

/* ========== SCROLL WRAPPER ========== */
.happy-scroll-wrapper {
    position: relative;
    width: 100%;
}

/* Track: horizontal scroll, tanpa tombol navigasi */
.happy-scroll-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 16px 8px 28px;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;

    /* Sembunyikan scrollbar tapi tetap bisa scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.happy-scroll-track::-webkit-scrollbar {
    display: none;
}

.happy-scroll-track:active {
    cursor: grabbing;
}

/* ========== CARD ========== */
.hcard {
    flex: 0 0 280px;
    min-height: 370px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    user-select: none;
}

/* Garis aksen atas */
.hcard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9F1C, #FF6B35);
    border-radius: 20px 20px 0 0;
}

/* Shimmer hover */
.hcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,140,0,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 20px;
}

.hcard:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,140,0,0.25);
}

.hcard:hover::after {
    opacity: 1;
}

/* ========== CARD ICON ========== */
.hcard-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9F1C, #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255,107,53,0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hcard:hover .hcard-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(255,140,0,0.6);
}

/* ========== CARD NUMBER ========== */
.hcard-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255,140,0,0.6);
    letter-spacing: 1px;
    line-height: 1;
}

/* ========== CARD TITLE ========== */
.hcard-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* ========== CARD DESC ========== */
.hcard-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    flex-grow: 1;
    margin: 0;
}

/* ========== SCROLL HINT ========== */
.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    animation: fadeHint 3s ease-in-out infinite;
}

.scroll-hint i {
    font-size: 0.9rem;
    color: #FF8C00;
}

@keyframes fadeHint {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50%       { opacity: 1;   transform: translateX(4px); }
}

/* ========== DRAG-TO-SCROLL JS ========== */
/* (handled by JS below) */


/* ========== RESPONSIVE TABLET (768–1024px) ========== */
@media (max-width: 1024px) and (min-width: 768px) {
    .happy-section {
        padding: 70px 0 50px;
    }

    .happy-section .section-title {
        font-size: 2.1rem;
    }

    .happy-section .section-subtitle {
        font-size: 0.98rem;
    }

    .happy-section .text-center {
        margin-bottom: 35px !important;
    }

    .happy-scroll-track {
        gap: 18px;
        padding: 14px 4px 24px;
    }

    .hcard {
        flex: 0 0 260px;
        min-height: 350px;
        padding: 28px 20px 24px;
    }

    .hcard-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .hcard-title {
        font-size: 1.05rem;
    }

    .hcard-desc {
        font-size: 0.87rem;
    }
}



/* ===== MENU SECTION ===== */
.menu-section {
    position: relative;
    padding: 5rem 0;
    background: var(--bg-section) !important;
    overflow: hidden;
}

.menu-section .text-center {
    margin-bottom: 3rem;
    position: relative;
}

.menu-label {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-menu-label {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(5px);
    font-family: 'Poppins', sans-serif;
}

.menu-section .section-title-light {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.menu-section .section-title-light::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF8C00 50%, 
        transparent 100%);
    border-radius: 2px;
}

.menu-section .section-subtitle-light {
    color: rgba(255, 248, 220, 0.95);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== MENU SLIDER CONTAINER ===== */
.menu-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.menu-slider-container input[type="radio"] {
    display: none;
}

.menu-cards-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.menu-slide {
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ===== MENU PHOTO CARD ===== */
.menu-photo-card {
    width: 30%;
    height: 450px;
    position: relative;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(40, 20, 5, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.menu-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 140, 0, 0.2);
}

.menu-photo-card.placeholder {
    visibility: hidden;
    pointer-events: none;
}

.photo-container {
    width: 100%;
    height: 100%;
    position: relative;
    border: 3px solid rgba(210, 105, 30, 0.5);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.photo-container:hover {
    border-color: #FF8C00;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-container:hover img {
    transform: scale(1.05);
}

/* ===== PHOTO INFO OVERLAY (Awalnya tersembunyi) ===== */
.photo-info-overlay {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 94% !important;
    height: auto !important;
    max-height: none !important;
    background: linear-gradient(
        to bottom,
        rgba(40, 20, 5, 0.88) 0%,
        rgba(40, 20, 5, 0.94) 50%,
        rgba(40, 20, 5, 0.97) 100%
    );
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 30px 22px !important;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
    overflow: visible !important;
    box-sizing: border-box;
}

/* Styling untuk judul */
.photo-info-overlay .menu-title {
    margin: 0 0 12px 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    line-height: 1.3 !important;
    width: 100%;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-overflow: clip !important; /* DITAMBAH: HAPUS ellipsis */
    -webkit-line-clamp: unset !important; /* DITAMBAH: HAPUS line clamp */
    -webkit-box-orient: unset !important; /* DITAMBAH: HAPUS box orient */
    display: block !important; /* DIUBAH: dari -webkit-box ke block */
}

/* Styling untuk deskripsi - TAMPILKAN SEMUA TEKS! */
.photo-info-overlay .menu-desc {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    color: #ffffff !important;
    margin: 0 !important;
    width: 100%;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    overflow: visible !important;
    max-height: none !important;
    text-overflow: clip !important; /* DITAMBAH: HAPUS ellipsis */
    -webkit-line-clamp: unset !important; /* DITAMBAH: HAPUS line clamp */
    -webkit-box-orient: unset !important; /* DITAMBAH: HAPUS box orient */
    display: block !important; /* DIUBAH: dari -webkit-box ke block */
}

/* Saat hover */
.menu-photo-card:hover .photo-info-overlay {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Pastikan photo-container tidak clip */
.photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

/* DITAMBAH: Pastikan menu-photo-card juga tidak clip */
.menu-photo-card {
    overflow: visible !important;
}

.photo-container:hover .photo-info-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* ===== MENU BADGE (DI TENGAH ATAS) ===== */
.menu-badge {
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
    max-width: 80%;
}

/* ===== MENU TITLE (DI TENGAH) ===== */
.menu-title {
    font-size: 1.6rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

/* ===== MENU DESCRIPTION (DI TENGAH) ===== */
.menu-desc {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ===== MENU FOOTER (DI TENGAH BAWAH) ===== */
.menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 140, 0, 0.3);
    text-align: center;
    gap: 15px;
}

.menu-price {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.btn-order {
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.95) 0%, 
        rgba(255, 140, 0, 0.95) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
    min-width: 150px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-order:hover {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 1) 0%, 
        rgba(255, 165, 0, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.btn-order i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* ===== SLIDE TRANSITION ===== */
#menu-slide-1:checked ~ .menu-cards-wrapper {
    transform: translateX(0%);
}

#menu-slide-2:checked ~ .menu-cards-wrapper {
    transform: translateX(-100%);
}

#menu-slide-3:checked ~ .menu-cards-wrapper {
    transform: translateX(-200%);
}

#menu-slide-4:checked ~ .menu-cards-wrapper {
    transform: translateX(-300%);
}

/* ===== NAVIGATION BUTTONS ===== */
.menu-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
}

.menu-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(210, 105, 30, 0.9);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 51;
}

.menu-btn:hover {
    background: #FF8C00;
    transform: scale(1.1);
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.menu-btn {
    display: none;
}

#menu-slide-1:checked ~ .menu-navigation .btn-slide-1,
#menu-slide-2:checked ~ .menu-navigation .btn-slide-2,
#menu-slide-3:checked ~ .menu-navigation .btn-slide-3,
#menu-slide-4:checked ~ .menu-navigation .btn-slide-4 {
    display: flex;
}

/* ===== PAGINATION DOTS ===== */
.menu-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.menu-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: #FF8C00;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.menu-dot:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
    transform: scale(1.2);
}

#menu-slide-1:checked ~ .menu-pagination .dot-1,
#menu-slide-2:checked ~ .menu-pagination .dot-2,
#menu-slide-3:checked ~ .menu-pagination .dot-3,
#menu-slide-4:checked ~ .menu-pagination .dot-4 {
    background: transparent;
    border-color: #FF8C00;
    transform: scale(1.3);
}

#menu-slide-1:checked ~ .menu-pagination .dot-1::before,
#menu-slide-2:checked ~ .menu-pagination .dot-2::before,
#menu-slide-3:checked ~ .menu-pagination .dot-3::before,
#menu-slide-4:checked ~ .menu-pagination .dot-4::before {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== BUTTON LIHAT SEMUA ===== */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.9) 0%, 
        rgba(255, 140, 0, 0.9) 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.7s ease;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.95) 0%, 
        rgba(255, 165, 0, 0.95) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE (Desktop Only) ===== */
@media (max-width: 1199px) {
    .menu-slider-container {
        max-width: 1000px;
        height: 450px;
    }
    
    .menu-photo-card {
        height: 400px;
    }
    
    .menu-title {
        font-size: 1.4rem;
    }
    
    .menu-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .menu-price {
        font-size: 1.5rem;
    }
    
    .btn-order {
        padding: 10px 25px;
        font-size: 0.95rem;
        min-width: 140px;
    }
}

@media (min-width: 992px) {
    .menu-slide {
        padding: 0 30px;
    }
    
    .menu-photo-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}


/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7) sepia(0.3);
    -webkit-filter: brightness(0.7) sepia(0.3);
}

.testimonial-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="2"/><path d="M30,30 L70,30 L70,70 L30,70 Z" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="1.5"/></svg>');
    opacity: 0.3;
}

.testimonial-section .text-center {
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-section .section-title-light {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.testimonial-section .section-title-light::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF8C00 50%, 
        transparent 100%);
    border-radius: 2px;
}

.testimonial-section .section-subtitle-light {
    color: rgba(255, 248, 220, 0.95);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== TESTIMONIAL SLIDER CONTAINER ===== */
.testimonial-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 500px;
    overflow: hidden;
    z-index: 3;
}

.testimonial-slider-container input[type="radio"] {
    display: none;
}

.testimonial-cards-wrapper {
    display: flex;
    width: 400%; /* DIUBAH: 400% untuk 4 slide */
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    width: 25%; /* DIUBAH: 25% untuk 4 slide */
    min-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ===== TESTIMONIAL PHOTO CARD ===== */
.testimonial-photo-card {
    width: 30%;
    height: 450px;
    position: relative;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(58, 26, 5, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 140, 0, 0.2);
}

.photo-container {
    width: 100%;
    height: 100%;
    position: relative;
    border: 3px solid rgba(210, 105, 30, 0.5);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.photo-container:hover {
    border-color: #FF8C00;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-container:hover img {
    transform: scale(1.05);
}

/* ===== PHOTO INFO OVERLAY (Awalnya tersembunyi) ===== */
.photo-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(93, 41, 6, 0) 0%,
        rgba(93, 41, 6, 0.7) 40%,
        rgba(93, 41, 6, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.photo-container:hover .photo-info-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* ===== TESTIMONIAL RATING ===== */
.testimonial-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.rating-star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: all 0.3s ease;
}

.rating-star.active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-score {
    color: #FFF8DC;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 10px;
    background: rgba(255, 215, 0, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ===== TESTIMONIAL TEXT ===== */
.testimonial-text {
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2.5rem;
    color: rgba(255, 140, 0, 0.3);
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -15px;
    left: 0;
}

.testimonial-text::after {
    bottom: -30px;
    right: 0;
}

/* ===== TESTIMONIAL NAME & ROLE ===== */
.testimonial-name {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-role {
    font-size: 1rem;
    color: #FFA500;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* ===== SLIDE TRANSITION - DIUBAH UNTUK 4 SLIDE ===== */
#testimonial-slide-1:checked ~ .testimonial-cards-wrapper {
    transform: translateX(0%);
}

#testimonial-slide-2:checked ~ .testimonial-cards-wrapper {
    transform: translateX(-25%);
}

#testimonial-slide-3:checked ~ .testimonial-cards-wrapper {
    transform: translateX(-50%);
}

#testimonial-slide-4:checked ~ .testimonial-cards-wrapper {
    transform: translateX(-75%); /* DITAMBAHKAN */
}

/* ===== NAVIGATION BUTTONS - DIUBAH UNTUK 4 SLIDE ===== */
.testimonial-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
}

.testimonial-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(210, 105, 30, 0.9);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 51;
}

.testimonial-btn:hover {
    background: #FF8C00;
    transform: scale(1.1);
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.testimonial-btn {
    display: none;
}

/* DIUBAH: Tambahkan selector untuk slide 4 */
#testimonial-slide-1:checked ~ .testimonial-navigation .btn-slide-1,
#testimonial-slide-2:checked ~ .testimonial-navigation .btn-slide-2,
#testimonial-slide-3:checked ~ .testimonial-navigation .btn-slide-3,
#testimonial-slide-4:checked ~ .testimonial-navigation .btn-slide-4 {
    display: flex;
}

/* ===== PAGINATION DOTS - DIUBAH UNTUK 4 SLIDE ===== */
.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: #FF8C00;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.testimonial-dot:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
    transform: scale(1.2);
}

/* DIUBAH: Tambahkan selector untuk slide 4 */
#testimonial-slide-1:checked ~ .testimonial-pagination .dot-1,
#testimonial-slide-2:checked ~ .testimonial-pagination .dot-2,
#testimonial-slide-3:checked ~ .testimonial-pagination .dot-3,
#testimonial-slide-4:checked ~ .testimonial-pagination .dot-4 {
    background: transparent;
    border-color: #FF8C00;
    transform: scale(1.3);
}

#testimonial-slide-1:checked ~ .testimonial-pagination .dot-1::before,
#testimonial-slide-2:checked ~ .testimonial-pagination .dot-2::before,
#testimonial-slide-3:checked ~ .testimonial-pagination .dot-3::before,
#testimonial-slide-4:checked ~ .testimonial-pagination .dot-4::before {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== RESPONSIVE (Desktop Only) ===== */
@media (max-width: 1199px) {
    .testimonial-slider-container {
        max-width: 1000px;
        height: 450px;
    }
    
    .testimonial-photo-card {
        height: 400px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0 8px;
    }
    
    .testimonial-name {
        font-size: 1.3rem;
    }
    
    .testimonial-role {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    .testimonial-slide {
        padding: 0 30px;
    }
    
    .testimonial-photo-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}



/* ========== 11. GALLERY SECTION ========== */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5D2906 0%, #3D1A04 100%);
}

.gallery-section .text-center {
    margin-bottom: 3rem;
}

.gallery-section .section-title-light {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-section .section-subtitle-light {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.gallery-slider-container input[type="radio"] {
    display: none;
}

.gallery-cards-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.gallery-slide {
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.gallery-photo-card {
    width: 30%;
    height: 360px;
    position: relative;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    background: #3a1a05;
}

.photo-container {
    width: 100%;
    height: 100%;
    position: relative;
    border: 3px solid #D2691E;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 41, 6, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-container:hover .photo-info-overlay {
    opacity: 1;
}

.photo-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.photo-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* Slide Transition */
#gallery-slide-1:checked ~ .gallery-cards-wrapper {
    transform: translateX(0%);
}

#gallery-slide-2:checked ~ .gallery-cards-wrapper {
    transform: translateX(-100%);
}

#gallery-slide-3:checked ~ .gallery-cards-wrapper {
    transform: translateX(-200%);
}

/* Navigation Buttons */
.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
}

.gallery-btn {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(210, 105, 30, 0.9);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover {
    background: #D2691E;
    transform: scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.gallery-btn {
    display: none;
}

#gallery-slide-1:checked ~ .gallery-navigation .btn-slide-1,
#gallery-slide-2:checked ~ .gallery-navigation .btn-slide-2,
#gallery-slide-3:checked ~ .gallery-navigation .btn-slide-3 {
    display: flex;
}

/* Pagination Dots */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

#gallery-slide-1:checked ~ .gallery-pagination .dot-1,
#gallery-slide-2:checked ~ .gallery-pagination .dot-2,
#gallery-slide-3:checked ~ .gallery-pagination .dot-3 {
    background: #D2691E;
    border-color: #FFFFFF;
    transform: scale(1.3);
}


/* ========== 12. VIDEO GALLERY SECTION ========== */
.video-doc-section {
    background: linear-gradient(135deg, #5D2906 0%, #3A1A04 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title-light {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-gallery-wrapper {
    position: relative;
    padding: 0 60px;
}

.video-grid-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 10px 40px;
    scrollbar-width: thin;
    scrollbar-color: #FF9800 #3A1A04;
}

.video-grid-scroll::-webkit-scrollbar {
    height: 8px;
}

.video-grid-scroll::-webkit-scrollbar-track {
    background: #3A1A04;
    border-radius: 10px;
}

.video-grid-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FF9800, #E65100);
    border-radius: 10px;
}

.video-item {
    flex: 0 0 auto;
    width: 320px;
}

.video-card {
    background: linear-gradient(145deg, #4A2205 0%, #6B3411 100%);
    border: 2px solid #8B4513;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: #FF9800;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-player-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #000;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 152, 0, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 152, 0, 1);
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.video-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #FFB74D;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-meta i {
    color: #FFB74D;
}

.video-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 152, 0, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: rgba(255, 152, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: #1a0a02;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #FF9800;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #2C1403;
    border-bottom: 2px solid #FF9800;
}

.modal-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #FF9800;
    background: rgba(255, 255, 255, 0.1);
}

.modal-video {
    width: 100%;
    height: 450px;
    background: #000;
}

.modal-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-info {
    padding: 20px;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFB74D;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.modal-info p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========== 13. LOCATION SECTION ========== */
#location-preview.location-orange-section {
    background: linear-gradient(135deg, #3A1A04 0%, #4A2205 100%);
    padding: 100px 0 120px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-title-light {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.section-subtitle-light {
    color: #F5F5F5;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
    padding: 0 20px;
    font-weight: 400;
}

.carousel-3cards {
    width: 100%;
    padding: 0 90px 80px;
    margin: 0 auto;
    position: relative;
}

.carousel-inner .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0;
    gap: 25px;
}

.carousel-inner .col-md-4 {
    flex: 0 0 calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
    width: calc(33.333% - 17px);
    display: flex;
    justify-content: center;
    padding: 0;
}

.location-card-carousel {
    width: 100%;
    height: auto;
    min-height: 580px;
    background: linear-gradient(145deg, #4A2205 0%, #6B3411 100%);
    border: 2px solid #A0522D;
    border-radius: 16px;
    padding: 30px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    margin: 0;
    overflow: visible;
    transition: all 0.3s ease;
}

.location-card-carousel:hover {
    transform: translateY(-6px);
    border-color: #D2691E;
    background: linear-gradient(145deg, #5D2906 0%, #7A3A12 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.location-card-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D2691E, #FF9800);
    border-radius: 16px 16px 0 0;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    min-height: 60px;
    flex-shrink: 0;
}

.location-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #D2691E, #8B4513);
    transition: all 0.3s ease;
}

.flagship ~ .location-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.popular ~ .location-icon {
    background: linear-gradient(135deg, #6BCF7F, #4CAF50);
}

.new ~ .location-icon {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.location-badge:not(.flagship):not(.popular):not(.new) ~ .location-icon {
    background: linear-gradient(135deg, #D2691E, #8B4513);
}

.location-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.location-badge {
    padding: 6px 15px;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid transparent;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    white-space: nowrap;
}

.location-badge.flagship {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border-color: #FFA500;
}

.location-badge.popular {
    background: linear-gradient(135deg, #6BCF7F, #4CAF50);
    color: #FFFFFF;
    border-color: #4CAF50;
}

.location-badge.new {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #FFFFFF;
    border-color: #44A08D;
}

.location-badge:not(.flagship):not(.popular):not(.new) {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #FFFFFF;
    border-color: #A0522D;
}

.location-name {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: visible;
    text-align: center;
    padding: 0 8px;
    flex-shrink: 0;
    word-wrap: break-word;
}

.location-address {
    color: #F5F5F5;
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
    min-height: 95px;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: visible;
    text-align: center;
    padding: 0 8px;
    font-style: italic;
    flex-shrink: 0;
    word-wrap: break-word;
}

.location-info {
    flex-shrink: 0;
    margin-bottom: 20px;
    padding: 0 4px;
    min-height: auto;
}

.location-info p {
    color: #F5F5F5;
    font-size: 0.87rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 9px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border-left: 2px solid #D2691E;
    transition: all 0.2s ease;
    line-height: 1.4;
    min-height: 38px;
    word-wrap: break-word;
}

.location-info p:last-child {
    margin-bottom: 0;
}

.location-info p:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(3px);
}

.location-info i {
    width: 24px;
    font-size: 1rem;
    margin-right: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.location-info .bi-clock {
    color: #FFD93D;
}

.location-info .bi-telephone {
    color: #6BCF7F;
}

.location-info .bi-whatsapp {
    color: #25D366;
}

.location-info p:hover i {
    transform: scale(1.1);
}

.btn-location-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    color: #FFFFFF;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 2px solid #A0522D;
    font-size: 0.92rem;
    min-width: 180px;
    max-width: 220px;
    align-self: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    height: 48px;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-location-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(210, 105, 30, 0.3);
    border-color: #FF9800;
    background: linear-gradient(135deg, #E67E22 0%, #A0522D 100%);
    color: #FFFFFF;
}

.btn-location-detail i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-location-detail:hover i {
    transform: translateX(4px);
}

.carousel-control-prev.location-prev,
.carousel-control-next.location-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D2691E, #8B4513);
    border-radius: 50%;
    border: 2px solid #A0522D;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev.location-prev { 
    left: 30px; 
}

.carousel-control-next.location-next { 
    right: 30px; 
}

.carousel-control-prev.location-prev:hover,
.carousel-control-next.location-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, #E67E22, #A0522D);
    border-color: #FF9800;
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.3);
}

.carousel-indicators.location-pagination {
    bottom: -50px;
    margin: 0;
}

.carousel-indicators.location-pagination button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators.location-pagination button.active {
    background: #D2691E;
    transform: scale(1.4);
}



/* ========== 14. FOOTER SECTION ========== */
.footer-modern {
    background-color: #3A1A04;
    padding: 80px 0 30px;
    color: #FFFFFF;
    position: relative;
    border-top: 2px solid #8B4513;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D2691E 50%, 
        transparent 100%);
}

.footer-modern .container {
    position: relative;
    z-index: 1;
}

.footer-modern .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-modern .col-lg-4,
.footer-modern .col-lg-3,
.footer-modern .col-lg-2,
.footer-modern .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-modern .mb-3 {
    margin-bottom: 1rem !important;
}

.footer-modern img[alt="Logo"] {
    transition: transform 0.3s ease;
    height: 50px;
    width: auto;
}

.footer-modern img[alt="Logo"]:hover {
    transform: scale(1.05);
}

.footer-modern p.text-white-50 {
    color: #FFFFFF !important;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-modern .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-modern .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Instagram */
.footer-modern .social-links a:first-child {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border: none;
}

.footer-modern .social-links a:first-child i.bi-instagram {
    color: #FFFFFF;
}

/* TikTok */
.footer-modern .social-links a:last-child {
    background: #000000;
    border: none;
}

.footer-modern .social-links a:last-child i.bi-tiktok {
    color: #FFFFFF;
    position: relative;
}

.footer-modern .social-links a:last-child i.bi-tiktok::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background: #FF0050;
    border-radius: 50%;
}

.footer-modern .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-modern h5.text-white {
    color: #FFFFFF !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-modern h5.text-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D2691E;
    border-radius: 1px;
}

.footer-modern .footer-links,
.footer-modern .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern .footer-links li,
.footer-modern .footer-contact li {
    margin-bottom: 12px;
}

.footer-modern .footer-links a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-modern .footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #D2691E;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-modern .footer-links a:hover {
    color: #D2691E !important;
    opacity: 1;
    padding-left: 25px;
}

.footer-modern .footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-modern .footer-contact li {
    color: #FFFFFF !important;
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-modern .footer-contact li i {
    color: #D2691E;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-modern .footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 60px 0 30px;
}

.footer-modern .text-center.text-white-50 {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-modern .text-center.text-white-50 p {
    margin-bottom: 0;
}