/* ============================================
   Sweet Buzz Bar — Clean, White, Polished
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
    --pink: #F72585;
    --pink-light: #FF87AB;
    --pink-soft: #FFF0F3;
    --blue: #4CC9F0;
    --blue-soft: #EBF8FF;
    --yellow: #FFD60A;
    --yellow-soft: #FFFDE7;
    --purple: #7B2FF7;

    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8F8F8;
    --gray-100: #F0F0F0;
    --gray-200: #E5E5E5;
    --gray-400: #A3A3A3;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --section-pad: 100px;
    --container: 1140px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-pink: 0 4px 20px rgba(247,37,133,0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

.highlight {
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--pink);
    color: white;
    box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(247,37,133,0.3);
    background: #e01e78;
}

.btn-outline {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}
.btn-outline:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-full {
    width: 100%;
    padding: 15px 28px;
    font-size: 1.05rem;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--pink-soft);
    color: var(--pink);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

.section-tag {
    display: inline-block;
    background: var(--pink-soft);
    color: var(--pink);
    padding: 5px 16px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s var(--ease);
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

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

.nav-logo img {
    height: 52px;
    transition: height 0.3s var(--ease);
}
.navbar.scrolled .nav-logo img { height: 42px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links li a {
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: white;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-links li a { color: var(--gray-800); }
.nav-links li a:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .nav-links li a:hover {
    background: var(--pink-soft);
    color: var(--pink);
}

.nav-cta {
    background: var(--pink) !important;
    color: white !important;
    box-shadow: var(--shadow-pink);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(247,37,133,0.3) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 26px; height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--gray-800); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   CANDY RAIN (page load animation)
   ============================================ */
.candy-rain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}
.candy-rain .candy-drop {
    position: absolute;
    top: -60px;
    font-size: var(--drop-size, 2rem);
    left: var(--drop-x, 50%);
    animation: candyFall var(--drop-dur, 3s) var(--drop-delay, 0s) ease-in forwards;
    opacity: 0;
    will-change: transform, opacity;
}
@keyframes candyFall {
    0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(110vh) rotate(var(--drop-spin, 360deg)); opacity: 0; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #1a0a2e 0%,
        #2d1b4e 25%,
        #4a1942 50%,
        #1a0a2e 75%,
        #0f1b3c 100%
    );
    background-size: 300% 300%;
    animation: heroGradient 10s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating candy emojis */
.hero-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.floater {
    position: absolute;
    top: var(--y, 20%);
    left: var(--x, 50%);
    font-size: var(--size, 2rem);
    animation: floatBob 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.35;
    filter: blur(0.5px);
    will-change: transform;
}
.floater:nth-child(odd) { animation-name: floatBob2; }
.floater:nth-child(1) { top: 15%; }
.floater:nth-child(2) { top: 30%; }
.floater:nth-child(3) { top: 55%; }
.floater:nth-child(4) { top: 70%; }
.floater:nth-child(5) { top: 20%; }
.floater:nth-child(6) { top: 45%; }
.floater:nth-child(7) { top: 75%; }
.floater:nth-child(8) { top: 85%; }
.floater:nth-child(9) { top: 40%; }
.floater:nth-child(10) { top: 60%; }

@keyframes floatBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(5deg); }
    75% { transform: translateY(12px) rotate(-5deg); }
}
@keyframes floatBob2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(14px) rotate(-8deg); }
    66% { transform: translateY(-20px) rotate(6deg); }
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: white;
    max-width: 780px;
    padding: 0 24px;
}

.hero-logo {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 30px rgba(247,37,133,0.4));
    animation: logoEntrance 1s var(--ease-bounce) 0.2s both;
}
@keyframes logoEntrance {
    from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Scaled down to support the logo */
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--pink-light), var(--yellow), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 28px;
    animation: fadeInUp 0.8s var(--ease) 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 1.2s both;
}

.btn-hero {
    font-size: 1.05rem;
    padding: 15px 36px;
}

.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 24px; height: 24px;
    border-right: 2.5px solid rgba(255,255,255,0.5);
    border-bottom: 2.5px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
    padding: var(--section-pad) 0;
    background: var(--pink-soft);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.package-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 22px 28px;
    text-align: center;
    border: 1.5px solid var(--gray-200);
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.package-card.featured {
    border-color: var(--pink);
    background: var(--pink-soft);
}
.package-card.featured:hover {
    box-shadow: 0 10px 40px rgba(247,37,133,0.15);
}

.package-badge {
    position: absolute;
    top: -11px;
    left: 50%; transform: translateX(-50%);
    background: var(--pink);
    color: white;
    padding: 3px 16px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
}

.package-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}
.package-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.package-card > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.package-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 18px;
    font-size: 0.88rem;
}

/* ============================================
   EVENTS
   ============================================ */
.events {
    padding: var(--section-pad) 0;
    background: var(--blue-soft);
}

.events-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.event-group {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: all 0.35s var(--ease);
}
.event-group:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.event-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}
.kids-header   { background: var(--blue-soft);  }
.adults-header { background: var(--pink-soft);  }
.special-header { background: var(--yellow-soft); }

.event-group-emoji { font-size: 1.6rem; }
.event-group-header h3 { font-size: 1.15rem; }

.event-list {
    padding: 20px 24px;
}
.event-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
}
.event-list li:last-child { border-bottom: none; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: var(--section-pad) 0;
    background: var(--yellow-soft);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why-card {
    text-align: center;
    padding: 32px 18px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200);
    transition: all 0.35s var(--ease);
}
.why-card:hover {
    border-color: var(--pink);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
}
.why-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.why-card p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--pink-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-column: 1 / -1;
    border-radius: var(--radius-xl);
    height: auto;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.gallery-large img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-large:hover img {
    transform: scale(1.02);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}
.gallery-cta p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}
.social-links-center { justify-content: center; }

.social-link {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.social-link svg {
    width: 20px; height: 20px;
    color: var(--gray-600);
    transition: color 0.3s var(--ease);
}
.social-link:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink);
}
.social-link:hover svg { color: white; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-pad) 0;
    background: var(--blue-soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 36px 20px;
}

.step-number {
    width: 56px; height: 56px;
    background: var(--pink);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-pink);
    position: relative;
    transform: scale(0.6);
    opacity: 0;
    transition: all 0.5s var(--ease-bounce);
}
.step-number.pop {
    transform: scale(1);
    opacity: 1;
}

.step-card:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    right: -100%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    transform: translateY(-50%);
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.step-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================
   BOOK / CONTACT
   ============================================ */
.book {
    padding: var(--section-pad) 0;
    background: var(--yellow-soft);
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.book-info h2 { margin-bottom: 14px; }
.book-info > p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-icon {
    font-size: 1.3rem;
    width: 44px; height: 44px;
    background: var(--pink-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong {
    font-family: var(--font-heading);
    font-weight: 700;
    display: block;
    margin-bottom: 1px;
    font-size: 0.9rem;
}
.contact-item a,
.contact-item span {
    color: var(--gray-600);
    font-size: 0.9rem;
}
.contact-item span:first-child { color: var(--blue); font-weight: bold; }

.book-form-wrapper { width: 100%; max-width: 450px; position: relative; z-index: 2; flex-shrink: 0; box-sizing: border-box; }
.form-title { font-family: var(--font-heading); color: var(--pink); font-size: 1.8rem; text-align: center; margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.contact-item a:hover { color: var(--pink); }

/* Form */
.book-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(247, 37, 133, 0.12);
    border: 3px dashed var(--pink-light);
}
.book-form h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: var(--pink);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pink);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(247,37,133,0.15);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s var(--ease);
    outline: none;
}
.form-group textarea {
    border-radius: 16px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(247,37,133,0.15);
    background: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
/* Hide original selects */
.form-group select.custom-select-source {
    display: none;
}

/* Custom Select Container */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(247, 37, 133, 0.15);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-400);
    background: var(--white);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.custom-select-trigger.has-value {
    color: var(--gray-800);
}
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(247,37,133,0.15);
}
.custom-select-trigger::after {
    content: '';
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23F72585' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s var(--ease);
}
.custom-select-wrapper.open .custom-select-trigger::after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(247, 37, 133, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease);
    max-height: 260px;
    overflow-y: auto;
}
.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 10px 16px;
    font-size: 0.95rem;
    color: var(--gray-800);
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-body);
}
.custom-option:hover, .custom-option.selected {
    background: var(--pink-soft);
    color: var(--pink);
}
.custom-optgroup {
    padding: 12px 16px 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pink-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

.form-success {
    text-align: center;
    padding: 28px;
    display: none;
}
.form-success.show {
    display: block;
    animation: fadeInUp 0.5s var(--ease);
}
.success-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.form-success strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 6px;
    color: #10B981;
}
.form-success p { color: var(--gray-600); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.65);
    padding: 56px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 60px;
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
}
.footer-links a:hover {
    color: var(--pink-light);
    padding-left: 3px;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE & MOBILE POLISH
   ============================================ */

/* TABLET OVERRIDES */
@media screen and (max-width: 1080px) {
    .packages-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card:not(:last-child) .step-number::after { display: none; }
}

/* MOBILE OVERRIDES (Phones) */
@media screen and (max-width: 768px) {
    /* Layout Reset */
    .container { padding: 0 16px !important; width: 100% !important; max-width: 100% !important; }
    
    /* Navbar Adjustment */
    .navbar { padding: 5px 0 !important; }
    .nav-logo img { height: 40px !important; }
    
    /* Navbar & Nav Links Overhaul */
    .nav-links { display: none !important; }
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 50px 0;
        z-index: 1000;
        animation: menuFadeIn 0.4s var(--ease) forwards;
    }
    
    .nav-links li { 
        width: 100%; 
        text-align: center; 
        margin-bottom: 5px;
        opacity: 0;
        transform: translateY(20px);
    }
    .nav-links.active li {
        animation: navItemIn 0.5s var(--ease) forwards;
    }
    /* Staggered item entries */
    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }

    .nav-links.active li a {
        font-size: 1.8rem;
        padding: 15px;
        color: var(--gray-800) !important;
        width: 100%;
        display: block;
    }
    .nav-links.active .nav-cta {
        margin-top: 20px;
        font-size: 1.3rem;
        width: auto;
        display: inline-block;
        padding: 18px 40px;
    }

    .hamburger { 
        display: flex !important; 
        position: relative;
        z-index: 1001; 
    }
    .hamburger.active {
        position: fixed;
        top: 30px;
        right: 24px;
    }
    .hamburger.active span { background: var(--gray-900) !important; }

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

    
    /* Hero Section */
    .hero { 
        flex-direction: column !important; 
        height: auto !important; 
        min-height: 80vh !important;
        padding-top: 100px !important; 
        text-align: center !important; 
    }
    .hero-logo-main img { max-width: 380px !important; }
    .hero h1 { font-size: 2rem !important; line-height: 1.2 !important; margin-top: 10px !important; margin-bottom: 12px !important; }
    .hero-content { max-width: 100% !important; padding: 0 10px !important; }
    .hero-subtitle { font-size: 1rem !important; margin-bottom: 24px !important; }
    .hero-scroll-indicator { display: none !important; }
    .hero-buttons { flex-direction: column !important; gap: 12px !important; width: 100% !important; }
    .hero-buttons .btn { width: 100% !important; justify-content: center !important; }

    /* Fix Grid Stacking */
    .packages-grid, .why-grid, .steps-grid, .gallery-grid, .contact-grid { 
        grid-template-columns: 1fr !important; 
        gap: 24px !important; 
    }
    
    /* Events/Occasions Section Fix */
    .events-columns { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 24px !important; 
    }
    .event-group { width: 100% !important; }

    /* Booking Form Section */
    .book-layout { 
        display: flex !important;
        flex-direction: column !important; 
        text-align: center !important; 
        gap: 30px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    .book-info { max-width: 100% !important; margin: 0 auto !important; }
    .book-form-wrapper { margin: 0 auto !important; width: 100% !important; max-width: 450px !important; padding: 0 !important; }
    .book-form { padding: 25px 16px !important; border-radius: 20px !important; }
    .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
    
    .contact-details { align-items: center !important; }
    .contact-item { flex-direction: column !important; text-align: center !important; gap: 10px !important; }
    .social-links { justify-content: center !important; }
    
    /* Global Overflows */
    body { overflow-x: hidden !important; width: 100vw !important; }
}

@media screen and (max-width: 480px) {
    .section-header h2 { font-size: 1.8rem !important; }
    .hero h1 { font-size: 1.85rem !important; }
}

/* MOBILE FLOATING BUTTON */
.mobile-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--pink);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(247, 37, 133, 0.25);
    display: none;
    z-index: 9999;
    animation: floatPulse 2s infinite ease-in-out;
    transition: all 0.4s var(--ease);
}
.mobile-float-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
.mobile-float-btn:active { transform: scale(0.95); background: #d61c6b; }
@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@media (max-width: 768px) {
    .mobile-float-btn { display: flex !important; }
}

/* SERVICE AREA MAP */
.service-area { padding: var(--section-pad) 0; background: #fafafa; }
.map-wrapper svg path { transition: fill 0.3s; }
.map-wrapper:hover svg path { fill: #fffafc; }

/* CANDY BURST PARTICLES */
.candy-particle {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    font-size: 24px;
    user-select: none;
    animation: candyFly 0.8s ease-out forwards;
}
@keyframes candyFly {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0) rotate(var(--tr)); opacity: 0; }
}
