:root {
  /* PREMIUM PASTEL PINK PALETTE - DIKEMASKINI */
  --blush-pink: #ffeef5;
  --cotton-candy: #ffd6e8;
  --rose-quartz: #ffc2d6;
  --bubblegum: #ffafcc;
  --magenta-dream: #ff97c1;
  --velvet-rose: #ff85b3;
  --deep-rose: #ff6ba8;
  
  /* BACKGROUND COLORS - DIKEMASKINI */
  --bg-primary: #fff5f9;
  --bg-secondary: #ffecf3;
  --bg-tertiary: #ffe3ee;
  
  /* HEADER & FOOTER UNIFIED COLORS */
  --header-bg: linear-gradient(135deg, 
    rgba(255, 245, 249, 0.95) 0%, 
    rgba(255, 236, 243, 0.98) 100%);
  --footer-bg: linear-gradient(135deg, 
    rgba(255, 245, 249, 0.95) 0%, 
    rgba(255, 236, 243, 0.98) 100%);
  
  /* SHIMMER BLACK ACCENTS */
  --shadow-velvet: rgba(255, 182, 193, 0.15);
  --shadow-silk: rgba(255, 182, 193, 0.25);
  --shadow-satin: rgba(255, 182, 193, 0.35);
  --shadow-charmeuse: rgba(255, 182, 193, 0.45);
  
  /* METALLIC ACCENTS */
  --rose-gold: #e8b4bc;
  --pink-diamond: #ffc8dd;
  --crystal-shine: rgba(255, 255, 255, 0.8);
  --pearl-glow: rgba(255, 255, 255, 0.6);
  
  /* TEXT COLORS */
  --text-velvet: #5a2c40;
  --text-rose: #7a4a5c;
  --text-muted: #9c7a8a;
  --text-light: #ffffff;
  
  /* EFFECTS */
  --soft-glow: 0 8px 32px rgba(255, 182, 193, 0.25);
  --premium-shadow: 0 20px 60px rgba(255, 182, 193, 0.2);
  --inner-glow: inset 0 0 30px rgba(255, 255, 255, 0.4);
  --shimmer-effect: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
}

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

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-velvet);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
}

:root {
    --header-bg: rgba(255, 250, 252, 0.95);
    --rose-gold: #e8b4b8;
    --deep-rose: #d46a6a;
    --blush-pink: #f8d7da;
    --pink-diamond: #f9c2c7;
    --rose-quartz: #f2a2a8;
    --bubblegum: #f48fb1;
    --text-velvet: #5a4a4a;
    --shadow-silk: rgba(212, 106, 106, 0.15);
    --shadow-satin: rgba(212, 106, 106, 0.25);
    --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shimmer-effect: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    --soft-glow: 0 8px 25px rgba(212, 106, 106, 0.1);
    --premium-shadow: 0 15px 40px rgba(212, 106, 106, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff5f9 0%, #fff0f6 100%);
    color: var(--text-velvet);
    min-height: 200vh;
    padding-top: 100px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: var(--soft-glow);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: linear-gradient(135deg, 
        rgba(255, 245, 249, 0.98) 0%, 
        rgba(255, 236, 243, 0.99) 100%);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.4);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--rose-gold);
    box-shadow: 
        0 8px 25px var(--shadow-silk),
        var(--inner-glow);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blush-pink), var(--pink-diamond));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-rose);
    font-size: 1.5rem;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--shimmer-effect);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.logo:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px var(--shadow-satin),
        0 0 30px rgba(255, 182, 193, 0.5),
        var(--inner-glow);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left a {
    text-decoration: none;
    color: var(--text-velvet);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.4s ease;
    padding: 12px 0;
    text-transform: uppercase;
}

.nav-left a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-rose), var(--rose-gold));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-left a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-left a:hover {
    color: var(--deep-rose);
    transform: translateY(-2px);
}

.nav-left a:hover::before {
    width: 100%;
}

.nav-left a:hover::after {
    opacity: 1;
}

.nav-left a.active {
    color: var(--deep-rose);
}

.nav-left a.active::before {
    width: 100%;
}

/* ===== GEMPAK PROFILE MENU ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-menu {
    position: relative;
}

.profile-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush-pink), var(--rose-quartz));
    border: 1.5px solid var(--rose-gold);
    color: var(--text-velvet);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px var(--shadow-silk);
    position: relative;
    overflow: hidden;
}

.profile-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--shimmer-effect);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.profile-icon:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(15%, 15%);
}

.profile-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-satin);
    background: linear-gradient(135deg, var(--rose-quartz), var(--bubblegum));
}

.dropdown-profile {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 182, 193, 0.4);
    border-radius: 16px;
    box-shadow: var(--premium-shadow);
    min-width: 180px;
    padding: 12px 0;
    margin-top: 12px;
    animation: dropdownSlide 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
}

.dropdown-profile a {
    display: block;
    padding: 14px 24px;
    color: var(--text-velvet);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-profile a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.2), transparent);
    transition: left 0.5s ease;
}

.dropdown-profile a:hover::before {
    left: 100%;
}

.dropdown-profile a:hover {
    background: linear-gradient(90deg, 
        rgba(255, 182, 193, 0.1), 
        transparent);
    border-left-color: var(--deep-rose);
    color: var(--deep-rose);
    transform: translateX(8px);
}

.profile-menu:hover .dropdown-profile {
    display: block;
}

/* ===== RESPONSIVE BURGER MENU ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 35px;
    height: 35px;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
    position: relative;
    transition: all 0.3s ease;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background: var(--text-velvet);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

/* Burger Menu Animation States */
.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--deep-rose);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--deep-rose);
}

/* Burger Menu Hover Effects */
.burger-menu:hover .burger-bar {
    background: var(--deep-rose);
    box-shadow: 0 0 8px rgba(255, 107, 168, 0.6);
}

.burger-menu:hover {
    transform: scale(1.1);
}

/* Animasi dropdown */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

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

/* Demo Content Styles */
.content {
    padding: 40px 20px;
    text-align: center;
}

.hero-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-velvet);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-velvet), var(--deep-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-velvet);
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 10px 3%;
    }
    
    .nav-left {
        gap: 25px;
    }
    
    .nav-left a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-left {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(255, 245, 249, 0.98) 0%, 
            rgba(255, 236, 243, 0.99) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        box-shadow: 20px 0 50px rgba(255, 182, 193, 0.3);
        border-right: 1px solid rgba(255, 182, 193, 0.2);
        gap: 0;
    }

    .nav-left.active {
        transform: translateX(0);
    }

    .nav-left li {
        width: 100%;
        margin: 5px 0;
    }

    .nav-left a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        margin: 4px 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-left a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 182, 193, 0.15), 
            transparent);
        transition: left 0.5s ease;
    }

    .nav-left a:hover::before {
        left: 100%;
    }

    .nav-left a:hover,
    .nav-left a.active {
        background: linear-gradient(135deg, 
            rgba(255, 182, 193, 0.15), 
            rgba(255, 107, 168, 0.1));
        transform: translateX(10px);
        color: var(--deep-rose);
    }

    .nav-left a::after {
        display: none;
    }

    .nav-right {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .profile-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .dropdown-profile {
        right: -50%;
        transform: translateY(-10px) translateX(50%);
        min-width: 160px;
    }

    .profile-menu:hover .dropdown-profile {
        transform: translateY(0) translateX(50%);
    }

    /* Brand logo adjustment for mobile */
    .brand {
        order: 1;
    }

    .brand .logo {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-left {
        width: 250px;
        padding: 70px 25px 25px;
    }

    .nav-left a {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .burger-menu {
        width: 32px;
        height: 32px;
    }

    .burger-bar {
        height: 2.5px;
    }

    .profile-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .dropdown-profile {
        min-width: 140px;
        right: -60%;
    }

    .brand .logo {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-left {
        gap: 25px;
    }

    .nav-left a {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .brand .logo {
        width: 70px;
        height: 70px;
    }
}

/* Smooth transitions for all interactive elements */
.nav-left a,
.burger-menu,
.profile-icon,
.dropdown-profile a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Enhanced focus states for accessibility */
.burger-menu:focus {
    outline: 2px solid var(--deep-rose);
    outline-offset: 2px;
}

.nav-left a:focus {
    outline: 2px solid var(--deep-rose);
    outline-offset: 2px;
    background: rgba(255, 182, 193, 0.1);
}

/* Loading animation for menu items */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-left.active li {
    animation: slideInFromLeft 0.4s ease forwards;
}

.nav-left.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-left.active li:nth-child(2) { animation-delay: 0.15s; }
.nav-left.active li:nth-child(3) { animation-delay: 0.2s; }
.nav-left.active li:nth-child(4) { animation-delay: 0.25s; }
.nav-left.active li:nth-child(5) { animation-delay: 0.3s; }
.nav-left.active li:nth-child(6) { animation-delay: 0.35s; }

.hero > div[style*="background:rgba(0,0,0"] {
  background: rgba(0,0,0,0.14) !important; /* much lighter */
  z-index: 2; /* still sits between image & text */
}

/* ===== GEMPAK HERO SECTION - PINK LUXURY ===== */
.hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
                        url('../image/wallpaper1.png') no-repeat center center/cover;
            color: white;
            margin-top: 0;
            padding-top: 80px;
            isolation: isolate;
        }

        /* Luxury Overlay dengan PINK effect */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(219, 112, 147, 0.25) 0%, transparent 50%);
            z-index: 1;
        }

        /* Animated PINK glitter particles */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.9) 1px, transparent 2px),
                radial-gradient(circle at 80% 70%, rgba(255, 105, 180, 0.7) 1px, transparent 2px),
                radial-gradient(circle at 40% 80%, rgba(219, 112, 147, 0.8) 1px, transparent 2px),
                radial-gradient(circle at 60% 20%, rgba(255, 20, 147, 0.9) 1px, transparent 2px);
            background-size: 300px 300px, 400px 400px, 500px 500px, 600px 600px;
            animation: sparkle 8s linear infinite;
            z-index: 2;
            opacity: 0.4;
        }

        @keyframes sparkle {
            0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px; }
            100% { background-position: 300px 300px, 400px 400px, 500px 500px, 600px 600px; }
        }

        /* Hero text container */
        .hero-text {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 60px 40px;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            animation: heroEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
        }

        @keyframes heroEntrance {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-text h1 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(2rem, 7vw, 4rem);
            line-height: 1;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            
            /* PINK Diamond Text Effect */
            background: linear-gradient(135deg,
                #ffffff 0%,
                #ffeef5 20%,
                #ffd6e8 40%,
                #ffafcc 60%,
                #ff8fab 80%,
                #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
            /* PINK Shadow Glow */
            text-shadow: 
                0 0 50px rgba(255, 107, 168, 0.9),
                0 0 90px rgba(255, 107, 168, 0.7),
                0 0 130px rgba(255, 107, 168, 0.5),
                0 6px 12px rgba(0, 0, 0, 0.8);
            
            animation: titleShimmer 3s ease-in-out infinite;
        }

        @keyframes titleShimmer {
            0%, 100% {
                background-position: 0% 50%;
                filter: brightness(1);
            }
            50% {
                background-position: 100% 50%;
                filter: brightness(1.4);
            }
        }

        .hero-text h1 span {
            display: block;
            font-size: 0.60em;
            letter-spacing: 6px;
            margin-top: 15px;
            background: linear-gradient(135deg, #ffffff, #ffd6e8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 300;
            text-shadow: 
                0 0 40px rgba(255, 214, 232, 0.8),
                0 0 80px rgba(255, 214, 232, 0.6),
                0 6px 10px rgba(0, 0, 0, 0.6);
        }

        /* GAYA KAMI - SUPER PINK MENONJOL */
        .hero-text h2 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin: 20px 0 30px 0;
            text-transform: uppercase;
            letter-spacing: 4px;
            
            /* PREMIUM PINK GRADIENT */
            background: linear-gradient(135deg,
                #ffffff 0%,
                #ffeef5 15%,
                #ffd6e8 30%,
                #ffafcc 50%,
                #ff8fab 70%,
                #ffeef5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
            /* INTENSE PINK GLOW */
            text-shadow: 
                0 0 60px rgba(255, 107, 168, 1),
                0 0 100px rgba(255, 107, 168, 0.8),
                0 0 150px rgba(255, 107, 168, 0.6),
                0 8px 16px rgba(0, 0, 0, 0.9);
            
            animation: gayaKamiGlow 2.5s ease-in-out infinite alternate;
            position: relative;
        }

        @keyframes gayaKamiGlow {
            0% {
                filter: brightness(1) contrast(1);
                text-shadow: 
                    0 0 50px rgba(255, 107, 168, 0.8),
                    0 0 90px rgba(255, 107, 168, 0.6),
                    0 0 130px rgba(255, 107, 168, 0.4),
                    0 6px 12px rgba(0, 0, 0, 0.8);
            }
            100% {
                filter: brightness(1.5) contrast(1.3);
                text-shadow: 
                    0 0 70px rgba(255, 107, 168, 1),
                    0 0 120px rgba(255, 107, 168, 0.9),
                    0 0 180px rgba(255, 107, 168, 0.7),
                    0 8px 20px rgba(0, 0, 0, 1);
            }
        }

        /* Elegant Subtitle dengan Pink Touch */
        .hero-text p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 
                0 2px 20px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(255, 107, 168, 0.6),
                0 4px 8px rgba(0, 0, 0, 0.4);
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
        }

        .hero-text p::after {
            content: '✨'; /* Pink sparkles */
            position: absolute;
            right: -35px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.4em;
            animation: twinkle 2s ease-in-out infinite;
            filter: drop-shadow(0 0 12px rgba(255, 107, 168, 0.8));
        }

        @keyframes twinkle {
            0%, 100% { 
                opacity: 0.8; 
                transform: translateY(-50%) scale(1) rotate(0deg);
            }
            50% { 
                opacity: 1; 
                transform: translateY(-50%) scale(1.4) rotate(180deg);
            }
        }

        .hero-actions {
            margin-top: 40px;
            position: relative;
        }

        .book-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 50px;
            background: linear-gradient(135deg, 
                #ff6ba8 0%,
                #ff2f7a 50%,
                #ff0066 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            
            /* Shadow yang clean */
            box-shadow: 
                0 10px 30px rgba(255, 107, 168, 0.4),
                0 5px 15px rgba(0, 0, 0, 0.2);
            
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 15px 40px rgba(255, 107, 168, 0.6),
                0 8px 25px rgba(0, 0, 0, 0.3);
            
            background: linear-gradient(135deg, 
                #ff2f7a 0%,
                #ff0066 50%,
                #ff6ba8 100%);
            
            border-color: rgba(255, 255, 255, 0.5);
        }

        .book-btn:active {
            transform: translateY(-1px);
            box-shadow: 
                0 8px 25px rgba(255, 107, 168, 0.5),
                0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .book-btn i {
            font-size: 1em;
            transition: transform 0.3s ease;
        }

        .book-btn:hover i {
            transform: translateX(5px);
        }

        /* PINK Floating stars decoration */
        .floating-star {
            position: absolute;
            width: 5px;
            height: 5px;
            background: linear-gradient(135deg, #ff6ba8, #ff2f7a);
            border-radius: 50%;
            animation: floatStar 6s ease-in-out infinite;
            z-index: 2;
            box-shadow: 
                0 0 15px rgba(255, 107, 168, 0.8),
                0 0 30px rgba(255, 107, 168, 0.4);
        }

        .floating-star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-star:nth-child(2) { top: 80%; left: 15%; animation-delay: 1s; }
        .floating-star:nth-child(3) { top: 40%; left: 85%; animation-delay: 2s; }
        .floating-star:nth-child(4) { top: 60%; left: 90%; animation-delay: 3s; }
        .floating-star:nth-child(5) { top: 10%; left: 50%; animation-delay: 4s; }
        .floating-star:nth-child(6) { top: 30%; left: 70%; animation-delay: 1.5s; }
        .floating-star:nth-child(7) { top: 70%; left: 30%; animation-delay: 2.5s; }

        @keyframes floatStar {
            0%, 100% {
                transform: translateY(0) scale(1) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-25px) scale(1.8) rotate(180deg);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-text {
                padding: 40px 25px;
                margin: 0 20px;
            }
            
            .hero-text h1 {
                font-size: clamp(2.5rem, 10vw, 4rem);
            }
            
            .hero-text h2 {
                font-size: clamp(1.6rem, 6vw, 3rem);
            }
            
            .book-btn {
                padding: 18px 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text {
                padding: 30px 20px;
            }
            
            .hero-text h1 {
                letter-spacing: 2px;
            }
            
            .hero-text h1 span {
                letter-spacing: 3px;
                font-size: 0.4em;
            }
            
            .hero-text h2 {
                letter-spacing: 3px;
                margin: 15px 0 25px 0;
            }
            
            .book-btn {
                padding: 16px 35px;
                font-size: 0.95rem;
                gap: 10px;
            }
        }

/* ===== GEMPAK SERVICES SECTION ===== */
.services {
  padding: 100px 5%;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  animation: backgroundFloat 25s linear infinite;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(135deg, 
    var(--text-velvet) 0%, 
    var(--deep-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 70px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-item {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9), 
    rgba(255, 248, 251, 0.95));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 182, 193, 0.3);
  box-shadow: var(--premium-shadow);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, 
    var(--deep-rose), 
    var(--rose-gold), 
    var(--deep-rose));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 25px 50px var(--shadow-satin),
    0 0 30px rgba(255, 182, 193, 0.4);
}

.service-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-pink), var(--pink-diamond));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px var(--shadow-silk),
    var(--inner-glow);
  transition: all 0.5s ease;
  position: relative;
  border: 2px solid var(--rose-gold);
}

.service-img::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, 
    var(--deep-rose), 
    var(--rose-gold), 
    var(--deep-rose));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-item:hover .service-img::before {
  opacity: 1;
}

.service-item:hover .service-img {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 
    0 12px 35px var(--shadow-satin),
    0 0 25px rgba(255, 182, 193, 0.5),
    var(--inner-glow);
}

.service-img img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px var(--shadow-velvet));
}

.service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-velvet);
  margin-bottom: 18px;
  font-weight: 600;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== GEMPAK ABOUT SECTION ===== */
.about-section {
  padding: 100px 8%;
  background: var(--bg-tertiary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1600px; /* tambah lebar */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.08)" points="0,0 1000,1000 0,1000"/></svg>');
  background-size: cover;
  animation: backgroundFloat 20s linear infinite reverse;
}

.about-text h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  background: linear-gradient(135deg, 
    var(--text-velvet) 0%, 
    var(--deep-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-rose);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.8;
  opacity: 0.9;
}

.about-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, 
    var(--deep-rose), 
    var(--magenta-dream));
  color: var(--text-light);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 25px rgba(255, 107, 168, 0.4),
    0 0 15px rgba(255, 107, 168, 0.2);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(255, 107, 168, 0.6),
    0 0 20px rgba(255, 107, 168, 0.3);
}

.slideshow-about {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  border: 2px solid var(--rose-gold);
}

.slideshow-about img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  filter: brightness(0.95);
}

.slideshow-about img.active {
  opacity: 1;
  filter: brightness(1);
}

/* ===== GEMPAK CONTACT SECTION ===== */
.contact-section {
  padding: 100px 5%;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  animation: backgroundFloat 30s linear infinite;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  border: 2px solid var(--rose-gold);
  transition: all 0.5s ease;
}

.contact-image:hover {
  transform: scale(1.02);
  box-shadow: 
    0 30px 60px var(--shadow-satin),
    0 0 40px rgba(255, 182, 193, 0.4);
}

.contact-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.contact-image:hover img {
  transform: scale(1.08);
}

.contact-info h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  background: linear-gradient(135deg,
    #000000 0%,           /* black base */
    #3a2c0a 25%,          /* deep brownish gold */
    #d4af37 50%,          /* gold highlight */
    #000000 75%,          /* back to black */
    #b8860b 100%);        /* warm golden edge */
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 4s linear infinite;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

/* shine animation */
@keyframes goldShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item {
  padding: 22px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9), 
    rgba(255, 248, 251, 0.95));
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border-left: 4px solid var(--deep-rose);
  box-shadow: var(--soft-glow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 182, 193, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  transform: translateX(12px);
  box-shadow: 
    0 15px 40px var(--shadow-silk),
    0 0 25px rgba(255, 182, 193, 0.3);
  border-left-color: var(--rose-gold);
}

.contact-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-rose);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== GEMPAK SOCIAL BUTTONS ===== */
.social-buttons {
  display: flex;
  gap: 18px;
}

.social-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 6px 20px var(--shadow-silk),
    0 0 12px currentColor;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--shimmer-effect);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.social-btn:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(15%, 15%);
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 
    0 10px 30px var(--shadow-satin),
    0 0 20px currentColor;
}

.whatsapp { 
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.facebook { 
  background: linear-gradient(135deg, #1877f2, #3b5998);
}
.tiktok { 
  background: linear-gradient(135deg, #000000, #69c9d0, #ee1d52);
}

/* ===== GEMPAK FOOTER - MATCHED WITH HEADER ===== */
.footer {
  background: var(--footer-bg);
  backdrop-filter: blur(12px);
  padding: 14px 3%; /* kecik lagi — tinggi dalam 40–50px je */
  text-align: center;
  border-top: 1px solid rgba(255, 182, 193, 0.25);
  box-shadow: 0 -2px 12px rgba(255, 182, 193, 0.12);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,1000 0,1000"/></svg>');
  background-size: cover;
  animation: backgroundFloat 45s linear infinite;
  opacity: 0.4;
}

.footer p {
  color: var(--text-velvet);
  margin-bottom: 4px;
  font-size: 0.85rem; /* kecik lawa, still readable */
  line-height: 1.4;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.footer p:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ===== GEMPAK ANIMATIONS ===== */
@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-25px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes backgroundFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-80px) rotate(360deg);
  }
}

/* ===== GEMPAK RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .about-section,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .slideshow-about {
    height: 400px;
  }
  
  .contact-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-left {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-left a {
    font-size: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.3rem;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-item {
    padding: 35px 25px;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
  }
  
  .contact-info h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .nav-left {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .book-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-img {
    width: 110px;
    height: 110px;
  }
  
  .social-buttons {
    justify-content: center;
  }
}

/* ===== PROMOTION POPUP STYLES - PASTI DI AKHIR FILE ===== */
/* POPUP EFFECT GEMPAK TAPI SIZE KECIL */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7) rotateX(-10deg);
    background: linear-gradient(145deg, #ffffff 0%, #fff5f7 50%, #ffe8ec 100%);
    border-radius: 20px;
    max-width: 380px;
    width: 85%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.475);
    box-shadow: 
        0 25px 60px rgba(255, 107, 147, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.promo-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    animation: popupBounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupBounce {
    0% { transform: translate(-50%, -50%) scale(0.7) rotateX(-10deg); }
    50% { transform: translate(-50%, -50%) scale(1.05) rotateX(2deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotateX(0deg); }
}

.popup-header {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b93 50%, #ff8fab 100%);
    color: white;
    padding: 22px 20px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 35%);
    animation: cosmicFloat 6s ease-in-out infinite;
}

@keyframes cosmicFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(8px, 4px) rotate(0.5deg); }
    66% { transform: translate(-4px, 6px) rotate(-0.3deg); }
}

.popup-badge {
    background: linear-gradient(135deg, #ff2d75 0%, #ff4757 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 
        0 6px 20px rgba(255, 45, 117, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 6px 20px rgba(255, 45, 117, 0.6),
            0 0 0 2px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 
            0 8px 25px rgba(255, 45, 117, 0.8),
            0 0 0 3px rgba(255, 255, 255, 0.4);
    }
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ffe8ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-subtitle {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: 3px;
}

.popup-content {
    padding: 22px 20px 18px;
    position: relative;
}

.popup-image-container {
    position: relative;
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #ffe8ec 0%, #ffd6e0 50%, #ffc2d1 100%);
    border-radius: 15px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 30px rgba(255, 107, 147, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.popup-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.6) 0%, transparent 50%);
    animation: matrixBackground 15s linear infinite;
}

@keyframes matrixBackground {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

.popup-image-text {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #ff2d75 0%, 
        #ff6b93 25%, 
        #ffffff 50%, 
        #ff6b93 75%, 
        #ff2d75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    position: relative;
    text-shadow: 
        0 5px 15px rgba(255, 45, 117, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    animation: textShine 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 10px rgba(255, 107, 147, 0.5));
}

@keyframes textShine {
    0%, 100% { 
        background-position: -150% center;
        filter: drop-shadow(0 3px 10px rgba(255, 107, 147, 0.5));
    }
    50% { 
        background-position: 150% center;
        filter: drop-shadow(0 5px 18px rgba(255, 107, 147, 0.7)) 
               brightness(1.1);
    }
}

.popup-content p {
    color: #5a2c40;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.popup-highlight {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b93 100%);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 
        0 8px 25px rgba(255, 45, 117, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(255, 45, 117, 0.5),
            0 0 0 2px rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 10px 30px rgba(255, 45, 117, 0.7),
            0 0 0 3px rgba(255, 255, 255, 0.4),
            0 0 20px rgba(255, 45, 117, 0.3);
    }
}

.popup-highlight i {
    margin-right: 8px;
    font-size: 0.9rem;
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.popup-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 8px;
}

.feature {
    text-align: center;
    flex: 1;
    padding: 0 4px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 248, 249, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    color: #ff2d75;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 5px 15px rgba(255, 107, 147, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b93 100%);
    color: white;
    box-shadow: 
        0 8px 20px rgba(255, 45, 117, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.4);
    transform: rotate(360deg) scale(1.1);
}

.feature-text {
    font-size: 0.7rem;
    color: #7a4a5c;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature:hover .feature-text {
    color: #ff2d75;
    transform: scale(1.05);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 16px 0;
}

.countdown-item {
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b93 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 18px rgba(255, 45, 117, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: countdownFloat 3s ease-in-out infinite;
}

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

.countdown-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: countdownShine 2s infinite;
}

@keyframes countdownShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.countdown-value {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 0.6rem;
    opacity: 0.95;
    margin-top: 1px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.popup-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.cta-button {
    flex: 2;
    background: linear-gradient(135deg, #ff2d75 0%, #ff4757 100%);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 25px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    box-shadow: 
        0 8px 20px rgba(255, 45, 117, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 25px rgba(255, 45, 117, 0.8),
        0 0 0 2px rgba(255, 255, 255, 0.4);
    animation: buttonVibrate 0.3s ease-in-out;
}

@keyframes buttonVibrate {
    0%, 100% { transform: translateY(-3px) scale(1.02) rotate(0deg); }
    25% { transform: translateY(-3px) scale(1.02) rotate(0.5deg); }
    50% { transform: translateY(-3px) scale(1.02) rotate(-0.5deg); }
    75% { transform: translateY(-3px) scale(1.02) rotate(0.3deg); }
}

.close-popup {
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
    color: #6d5d7a;
    border: 1px solid rgba(233, 236, 239, 0.8);
    padding: 12px 15px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.8rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.close-popup:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(240, 240, 240, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #ff2d75;
}

.dont-show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #8b5b66;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 182, 193, 0.4);
    font-weight: 600;
}

.dont-show input[type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: #ff2d75;
    cursor: pointer;
}

.dont-show label {
    cursor: pointer;
    font-weight: 700;
}

/* Floating particles kecil */
.popup-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: particleFloat 5s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0;
    }
    50% { 
        transform: translate(15px, -15px) rotate(180deg); 
        opacity: 1;
    }
}

/* Responsive untuk mobile kecil */
@media (max-width: 480px) {
    .promo-popup {
        max-width: 92%;
        width: 92%;
    }
    
    .popup-header {
        padding: 20px 15px 15px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-content {
        padding: 20px 15px 15px;
    }
    
    .popup-image-container {
        height: 110px;
    }
    
    .popup-image-text {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .countdown-item {
        width: 40px;
        height: 40px;
    }
    
    .countdown-value {
        font-size: 0.9rem;
    }
}

/* === Booking Now Button Styling (Smaller & Classy) === */
.hero-btn,
.btn-primary,
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff4f93, #ff8fbf);
  color: #fff;
  font-weight: 700;
  font-size: 13px !important;       /* smaller text */
  letter-spacing: 0.4px;
  padding: 6px 18px !important;     /* tight inside spacing */
  border: none;
  border-radius: 25px !important;   /* rounded edges */
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 120, 160, 0.25);
  transition: all 0.25s ease;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

/* Hover effect — soft bounce */
.hero-btn:hover,
.btn-primary:hover,
.cta-btn:hover {
  background: linear-gradient(135deg, #ff5ca8, #ff9ed0);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(255, 100, 150, 0.3);
}

/* For mobile */
@media (max-width: 768px) {
  .hero-btn,
  .btn-primary,
  .cta-btn {
    font-size: 12px !important;
    padding: 5px 14px !important;
    border-radius: 20px !important;
  }
}

/* === Booking Now Button (Smaller & Elegant) === */
.book-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e63e8a, #ff75a0);
  color: #fff;
  font-weight: 600;
  font-size: 18px;           /* smaller text */
  padding: 10px 24px;         /* smaller size */
  border: none;
  border-radius: 26px;       /* soft curve */
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(255, 120, 160, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
}

.book-btn:hover {
  background: linear-gradient(135deg, #ff007f, #ff4fa3);
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(255, 50, 150, 0.6), 0 8px 24px rgba(255, 20, 120, 0.5);
}


/* make it even smaller on mobile */
@media (max-width: 768px) {
  .book-btn {
    font-size: 12px;
    padding: 6px 18px;
    border-radius: 24px;
  }
}

/:root {
    --header-bg: rgba(255, 250, 252, 0.95);
    --rose-gold: #e8b4b8;
    --deep-rose: #d46a6a;
    --blush-pink: #f8d7da;
    --pink-diamond: #f9c2c7;
    --rose-quartz: #f2a2a8;
    --bubblegum: #f48fb1;
    --text-velvet: #5a4a4a;
    --shadow-silk: rgba(212, 106, 106, 0.15);
    --shadow-satin: rgba(212, 106, 106, 0.25);
    --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shimmer-effect: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    --soft-glow: 0 8px 25px rgba(212, 106, 106, 0.1);
    --premium-shadow: 0 15px 40px rgba(212, 106, 106, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff5f9 0%, #fff0f6 100%);
    color: var(--text-velvet);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: var(--soft-glow);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: linear-gradient(135deg, 
        rgba(255, 245, 249, 0.98) 0%, 
        rgba(255, 236, 243, 0.99) 100%);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.4);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ===== LOGO ===== */
.brand {
    display: flex;
    align-items: center;
    z-index: 10002;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--rose-gold);
    box-shadow: 
        0 8px 25px var(--shadow-silk),
        var(--inner-glow);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blush-pink), var(--pink-diamond));
    object-fit: cover;
    display: block;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px var(--shadow-satin),
        0 0 30px rgba(255, 182, 193, 0.5),
        var(--inner-glow);
}

/* ===== NAVIGATION MENU ===== */
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left a {
    text-decoration: none;
    color: var(--text-velvet);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.4s ease;
    padding: 12px 0;
    text-transform: uppercase;
}

.nav-left a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-rose), var(--rose-gold));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-left a:hover {
    color: var(--deep-rose);
    transform: translateY(-2px);
}

.nav-left a:hover::before {
    width: 100%;
}

.nav-left a.active {
    color: var(--deep-rose);
}

.nav-left a.active::before {
    width: 100%;
}

/* ===== PROFILE MENU ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10002;
}

.profile-menu {
    position: relative;
}

.profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush-pink), var(--rose-quartz));
    border: 1.5px solid var(--rose-gold);
    color: var(--text-velvet);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px var(--shadow-silk);
    position: relative;
    overflow: hidden;
}

.profile-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-satin);
    background: linear-gradient(135deg, var(--rose-quartz), var(--bubblegum));
}

.dropdown-profile {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 182, 193, 0.4);
    border-radius: 16px;
    box-shadow: var(--premium-shadow);
    min-width: 180px;
    padding: 12px 0;
    margin-top: 12px;
    animation: dropdownSlide 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
}

.dropdown-profile a {
    display: block;
    padding: 14px 24px;
    color: var(--text-velvet);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-profile a:hover {
    background: linear-gradient(90deg, 
        rgba(255, 182, 193, 0.1), 
        transparent);
    border-left-color: var(--deep-rose);
    color: var(--deep-rose);
    transform: translateX(8px);
}

.profile-menu:hover .dropdown-profile {
    display: block;
}

/* ===== BURGER MENU ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 35px;
    height: 35px;
    justify-content: space-between;
    align-items: center;
    z-index: 10002;
    position: relative;
    transition: all 0.3s ease;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background: var(--text-velvet);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--deep-rose);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--deep-rose);
}

.burger-menu:hover .burger-bar {
    background: var(--deep-rose);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

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

/* ===== HERO SECTION ===== */
.content {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    padding: 0 5%;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
    min-height: 80vh;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-velvet);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-velvet), var(--deep-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--deep-rose), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-velvet);
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.hero-actions {
    margin-top: 40px;
}

.booking-btn {
    background: linear-gradient(135deg, var(--deep-rose), var(--rose-quartz));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 106, 106, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 106, 106, 0.4);
    background: linear-gradient(135deg, var(--rose-quartz), var(--deep-rose));
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, var(--blush-pink), var(--pink-diamond));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--deep-rose);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 20px 40px var(--shadow-satin);
    border: 2px solid var(--rose-gold);
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 10px 3%;
    }
    
    .nav-left {
        gap: 25px;
    }
    
    .nav-left a {
        font-size: 1rem;
    }

    .hero-section {
        gap: 40px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .title-highlight {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .placeholder-image {
        width: 350px;
        height: 450px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }
    
    /* Hide regular menu, show burger */
    .burger-menu {
        display: flex;
    }
    
    .nav-left {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(255, 245, 249, 0.98) 0%, 
            rgba(255, 236, 243, 0.99) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        box-shadow: 20px 0 50px rgba(255, 182, 193, 0.3);
        border-right: 1px solid rgba(255, 182, 193, 0.2);
        gap: 0;
    }

    .nav-left.active {
        transform: translateX(0);
    }

    .nav-left li {
        width: 100%;
        margin: 8px 0;
    }

    .nav-left a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    .nav-left a:hover,
    .nav-left a.active {
        background: linear-gradient(135deg, 
            rgba(255, 182, 193, 0.15), 
            rgba(255, 107, 168, 0.1));
        transform: translateX(10px);
    }

    .nav-right {
        margin-right: 15px;
    }

    .profile-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .dropdown-profile {
        right: -50%;
        min-width: 160px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    /* Hero Section Mobile */
    .content {
        margin-top: 90px;
        padding: 0 20px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-highlight {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .booking-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        margin: 0 auto;
        justify-content: center;
    }

    .placeholder-image {
        width: 300px;
        height: 350px;
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-left {
        width: 250px;
        padding: 90px 25px 25px;
    }

    .nav-left a {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .burger-menu {
        width: 32px;
        height: 32px;
    }

    .burger-bar {
        height: 2.5px;
    }

    .profile-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dropdown-profile {
        min-width: 140px;
        right: -60%;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .content {
        margin-top: 80px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-highlight {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .booking-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .placeholder-image {
        width: 250px;
        height: 300px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Loading animation for menu items */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-left.active li {
    animation: slideInFromLeft 0.4s ease forwards;
}

.nav-left.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-left.active li:nth-child(2) { animation-delay: 0.15s; }
.nav-left.active li:nth-child(3) { animation-delay: 0.2s; }
.nav-left.active li:nth-child(4) { animation-delay: 0.25s; }
.nav-left.active li:nth-child(5) { animation-delay: 0.3s; }
.nav-left.active li:nth-child(6) { animation-delay: 0.35s; }