/* ========================================
   OPTION 3 - HYBRID DESIGN STYLES
   Combining Option 1's professionalism with Option 2's vibrancy
   ======================================== */

/* CSS VARIABLES - Hybrid Color Palette */
:root {
    /* Primary Colors - From Option 1 (Professional) */
    --primary-red: #DC143C;
    --primary-blue: #1E90FF;
    --primary-white: #FFFFFF;

    /* Secondary Colors - From Option 2 (Vibrant & Playful) */
    --secondary-pink: #FF69B4;
    --secondary-purple: #9370DB;
    --secondary-orange: #FF8C42;
    --secondary-yellow: #FFD93D;
    --secondary-green: #6BCF7F;

    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Background Colors */
    --bg-light: #F0F8FF;
    --bg-gradient-start: #FFE5EC;
    --bg-gradient-end: #E0F4FF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--primary-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    /* Increased from 1200px */
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    /* Slightly smaller to fit */
    font-weight: 800;
    color: var(--primary-white);
    transition: var(--transition-base);
    white-space: nowrap;
    /* Prevent wrapping */
    margin-right: 1rem;
    flex-shrink: 0;
    /* Don't shrink logo */
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    /* Reduced gap */
    align-items: center;
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.nav-links a {
    color: var(--primary-white);
    font-weight: 600;
    transition: var(--transition-base);
    padding: 0.5rem 0.5rem;
    /* Reduced padding */
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    /* Smaller font */
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links .btn-primary {
    background: var(--primary-white);
    color: var(--primary-red);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
}

.nav-links .btn-primary:hover {
    background: var(--secondary-yellow);
    color: var(--gray-900);
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Desktop Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-white);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    width: 100%;
    display: block;
    margin: 0;
}

.dropdown-content a {
    color: var(--gray-800);
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 0;
    text-align: left;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
    transform: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--primary-white);
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: var(--primary-white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.85) 0%, rgba(30, 144, 255, 0.85) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    padding: 3rem 0;
    color: var(--primary-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

/* SECTION */
.section {
    padding: var(--spacing-2xl) 0;
}

.section:nth-child(even) {
    background: var(--gray-50);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

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

/* GRID LAYOUTS */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARDS */
.card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .btn {
    margin-top: auto !important;
    align-self: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    line-height: 1;
    color: initial;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Android Emoji", EmojiSymbols, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-base);
}

.card:hover .card-icon {
    background: var(--bg-gradient-start);
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--gray-700);
}

/* SERVICES SECTION */
.services {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C70039 100%);
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C70039 0%, var(--primary-red) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--primary-white);
    color: var(--primary-red);
    border: 2px solid var(--primary-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--gray-900);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.card[href] {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ABOUT CONTENT */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

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

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.about-text h3 {
    color: var(--primary-red);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* GALLERY SECTION */
.gallery-section {
    background: var(--gray-50);
}

.upload-container {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    border: 2px dashed var(--gray-300);
}

.upload-container h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.upload-hint {
    color: var(--gray-700);
    font-size: 0.875rem;
    margin: 0;
}

/* .gallery-grid removed for slider implementation */

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.gallery-item-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-item-actions {
    opacity: 1;
}

.gallery-item-actions button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.gallery-item-actions button:hover {
    background: var(--primary-white);
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img,
.lightbox video {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-white);
    border: none;
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BOOKING SECTION */
.booking-section {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group textarea {
    min-height: 60px;
    height: 80px;
}

/* GALLERY SLIDER */
.gallery-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* GALLERY SLIDER */
.gallery-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for nav buttons */
}

.gallery-track-container {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    flex: 0 0 calc(33.333% - (var(--spacing-md) * 2 / 3));
    /* Default 3 items */
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
    aspect-ratio: 1;
}

@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - (var(--spacing-md) / 2));
        /* 2 items on tablets */
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 100%;
        /* 1 item on mobile */
    }

    .gallery-container {
        padding: 0 30px;
    }
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: var(--primary-red);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    /* Above bubbles (9998) */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Explicitly enable */
}

.gallery-nav:hover {
    background: var(--secondary-yellow);
    color: var(--gray-900);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

/* CONTACT INFO */
.contact-info {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-pink) 100%) !important;
    color: var(--primary-white);
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

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

    .gallery-item {
        flex: 0 0 250px;
    }
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-card h3 {
    color: var(--primary-white);
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: var(--primary-white);
    margin-bottom: 0.25rem;
}

.text-white {
    color: var(--primary-white) !important;
}

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

/* FOOTER */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* TESTIMONIALS SLIDER */
.testimonials-section {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    text-align: center;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-blue);
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    position: relative;
    max-width: 700px;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
}

.testimonials-section:hover .testimonial-nav {
    opacity: 1;
    visibility: visible;
}

.testimonial-nav:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -25px;
}

.testimonial-nav.next {
    right: -25px;
}

@media (max-width: 992px) {
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-nav.prev {
        left: 0;
    }

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

.testimonial-quote::before {
    content: "“";
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.slider-indicators {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--spacing-lg);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN - OPTION A: APP STYLE (Exact Match & Refined) */
@media (max-width: 768px) {

    /* GLOBAL MOBILE SCALING */
    html {
        font-size: 14px;
        /* Scales down all rem values */
    }

    /* 1. APP-LIKE BOTTOM NAVIGATION */
    /* 1. APP-LIKE BOTTOM NAVIGATION - DISABLED FOR HAMBURGER MENU */
    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-container {
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .navbar {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0;
        height: 0;
        width: 100%;
        position: static !important;
        /* Prevent double sticking */
    }

    .nav-links {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 0.6rem 0;
        justify-content: space-around;
        align-items: center;
        /* Changed from flex-end to center all icons */
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 100000;
        /* ensured top layer */
        margin: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    */

    /* 2. FIXED GRADIENT HEADER & HERO CLEANUP */
    .hero-overlay {
        display: none !important;
        /* REMOVES THE PINK SHADE */
    }

    .hero {
        min-height: auto;
        padding: 0;
        padding-top: 40px;
        /* Space for fixed header */
        background: var(--bg-light);
        text-align: center;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    /* .hero-background replaced by .slideshow-container */
    .slideshow-container {
        position: relative;
        height: 350px;
        border-radius: 0;
        overflow: hidden;
        margin-bottom: 0;
        border: none;
        box-shadow: none;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .slideshow-dots {
        position: absolute;
        bottom: 1.5rem;
        /* Repositioned to stay inside hero */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.75rem;
        z-index: 20;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.4);
    }

    .dot.active {
        background: white;
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        /* Critical for padding */
        padding: 1rem;
        /* Smoother Dark Gradient */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        /* Center content */
        height: 100%;
        gap: 0.75rem;
        z-index: 10;
        right: 0;
        /* Ensure spanning */
    }

    .hero h1 {
        font-size: 1.6rem;
        /* Fit mobile better */
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        margin-bottom: 0;
        line-height: 1.2;
        font-weight: 800;
        font-family: 'Poppins', sans-serif;
        width: 100%;
        max-width: 100%;
    }

    .hero p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        background: none;
        box-shadow: none;
        padding: 0;
        border: none;
        font-weight: 500;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        max-width: 90%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        /* Force row */
        justify-content: center;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        width: 100%;
        flex-wrap: nowrap;
        /* Prevent stacking */
    }

    .hero-buttons .btn {
        padding: 0.9rem 0;
        border-radius: 50px;
        font-size: 0.9rem;
        /* Slightly smaller text */
        font-weight: 700;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        flex: 1;
        /* Equal width */
        max-width: 160px;
        /* Max button width */
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        /* Prevent button text wrap */
        height: 48px;
        /* Fixed height */
    }

    /* 3. CLEAN SECTIONS */
    .section {
        padding: 2rem 0;
        background: white;
    }

    .section-title {
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
        background: none;
        color: #2D3436;
        -webkit-text-fill-color: initial;
        text-align: center;
        margin-bottom: 0.75rem;
        font-family: 'Poppins', sans-serif;
    }

    .grid-4,
    .grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        background: white;
        border-radius: 20px;
        padding: 1.25rem;
        text-align: left;
        border: 1px solid #F0F0F0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
        background: #F8F9FA;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card h3 {
        font-size: 1.05rem;
        color: #2D3436;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    /* 4. COMPACT CONTACT SECTION */
    .contact-info,
    .contact-section {
        padding: 1rem 0;
        /* Use gradient from desktop styles */
    }

    /* Text stays white for gradient background */
    .contact-info h2,
    .contact-info p,
    .contact-section h2,
    .contact-section p {
        color: var(--primary-white);
        text-shadow: none;
    }

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

    .contact-card {
        padding: 1rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        border: 1px solid #F0F0F0;
    }

    .contact-card-icon {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #DC143C;
    }

    .contact-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0;
        color: #2D3436;
    }

    .contact-card p {
        display: none;
    }
}

/* ========================================
   LOADING SCREEN STYLES
   ======================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--primary-white);
}

.loading-logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.loading-icon {
    font-size: 3rem;
}

.loading-icon:nth-child(1) {
    animation-delay: 0s;
}

.loading-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-bar-container {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 1rem auto;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-yellow), var(--secondary-pink), var(--secondary-purple));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* ========================================
   AUTHENTICATION STYLES
   ======================================== */

.admin-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-info {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

#adminLoginBtn,
#adminLogoutBtn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

#adminLoginBtn:hover,
#adminLogoutBtn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-white);
    transform: translateY(-2px);
}

#adminLogoutBtn {
    display: none;
}

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.login-modal-content {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
    position: relative;
    animation: slideInDown 0.3s ease;
}

.login-modal-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.login-modal-header h2 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.login-modal-header p {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-700);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.login-close:hover {
    background: var(--gray-100);
    color: var(--primary-red);
}

#loginForm .form-group {
    margin-bottom: var(--spacing-md);
}

#loginForm input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-base);
}

#loginForm input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.login-error {
    display: none;
    background: #fee;
    color: #c33;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    border: 1px solid #fcc;
}

.login-info {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--gray-700);
    border-left: 3px solid var(--primary-blue);
}

.login-info strong {
    color: var(--primary-blue);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upload-container {
    display: none;
}

/* Form footer and links */
.form-footer {
    text-align: center;
    margin-top: var(--spacing-sm);
}

.forgot-password-link,
.back-to-login-link {
    color: var(--gray-700);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.forgot-password-link:hover,
.back-to-login-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.music-control {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #1e90ff);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.music-control .music-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-control.playing .music-icon::before {
    content: "❚❚";
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.music-control.paused .music-icon::before {
    content: "▶";
    margin-left: 4px;
}

@media (max-width: 768px) {
    .music-control {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   FAQ SECTION STYLES
   ======================================== */
.faq-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.faq-container {
    max-width: 800px;
    padding-bottom: var(--spacing-2xl);
}

.faq-item {
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--gray-700);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background: var(--primary-white);
    padding: 0 1.5rem;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Approximate max height */
    padding-top: 0.5rem;
}

/* ========================================
   PLAY SECTION STYLES
   ======================================== */
.play-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.play-container {
    max-width: 600px;
    /* Constrain width for card look */
    padding-bottom: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin: 0 auto;
}

.play-card {
    background: var(--primary-white);
    border-radius: 30px;
    /* Extra rounded as per screenshot */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border: 5px solid #F0F8FF;
    /* Light border effect */
    transition: var(--transition-base);
}

.play-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.play-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    padding: 1rem 1rem 0 1rem;
    /* Padding for the image inside card */
}

.play-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Rounded corners for image itself */
}

.play-card-content {
    padding: 2rem;
    text-align: center;
}

.play-card-content h3 {
    font-family: 'Poppins', sans-serif;
    /* Friendly font */
    font-weight: 900;
    font-size: 1.5rem;
    color: #2D3436;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-card-content p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-card {
    background: #D9235A;
    /* Specific red from screenshot */
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 35, 90, 0.4);
    transition: var(--transition-base);
    display: inline-block;
    border: none;
}

/* ========================================
   MEMBERSHIP SECTION STYLES
   ======================================== */
.membership-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.membership-container {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding-bottom: var(--spacing-2xl);
    margin: 0 auto;
}

.membership-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.membership-image {
    height: 250px;
    overflow: hidden;
    padding: 10px 10px 0 10px;
}

.membership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.membership-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.membership-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.membership-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.membership-desc em {
    color: var(--gray-500);
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

.membership-includes {
    background: #E8F6F8;
    /* Light teal background from screenshot */
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: auto;
}

.membership-includes h4 {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.membership-includes ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.membership-includes li {
    background: var(--primary-white);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.play-card-content .btn-card {
    background: linear-gradient(135deg, #DC143C, #FF0055);
    color: white;
}

.btn-card:hover {
    background: #C70039;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(217, 35, 90, 0.5);
    color: white;
}

/* ========================================
   OPENING HOURS DROPDOWN
   ======================================== */
.opening-hours-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-white);
    width: 300px;
    /* Fixed width for the card look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    z-index: 1000;
    margin-top: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Show content when the parent list item has the active class */
.dropdown.active .opening-hours-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* On mobile, standard dropdown style adjustment */
@media (max-width: 1200px) {
    .opening-hours-content {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        margin-top: 0.5rem;
        box-sizing: border-box;
    }

    .opening-hours-title {
        color: white !important;
    }

    .opening-row {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .day-name {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .time-slot {
        color: white !important;
    }
}

.opening-hours-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1rem;
    text-align: left;
}

.opening-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.95rem;
}

.opening-row:last-child {
    border-bottom: none;
}

.day-name {
    color: var(--gray-600);
    font-weight: 500;
}

.time-slot {
    font-weight: 800;
    /* Bold as per screenshot */
    color: #000;
}

/* ========================================
   PARTIES SECTION STYLES
   ======================================== */
.parties-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.parties-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    /* Compact gap */
    padding-bottom: var(--spacing-2xl);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.party-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.party-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.party-image {
    height: 180px;
    /* Reduced height from 220px */
    position: relative;
    overflow: hidden;
}

.party-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-white);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.party-content {
    padding: 1.2rem;
    /* Reduced padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.party-content h3 {
    font-size: 1.1rem;
    /* Smaller font */
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.5rem;
}

.party-subtitle {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.party-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.party-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
}

.party-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: #62C4B7;
    /* Teal checkmark bg */
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.pricing-box {
    background: #D1EBEF;
    /* Light cyan background */
    border-radius: 12px;
    padding: 0.8rem;
    margin-top: auto;
    margin-bottom: 1.2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    color: var(--gray-700);
    font-weight: 600;
}

.price-value {
    color: #000;
    font-weight: 800;
}

.pricing-single {
    text-align: center;
    padding: 1.5rem 1rem;
}

.party-actions {
    display: flex;
    gap: 0.8rem;
}

.party-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.7rem;
    border-radius: 50px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D9235A;
    color: #D9235A;
    font-weight: 700;
}

.btn-outline:hover {
    background: rgba(217, 35, 90, 0.05);
    color: #C70039;
}

.btn-book {
    background: #D9235A;
    color: white;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 10px rgba(217, 35, 90, 0.3);
}

.btn-book:hover {
    background: #C70039;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(217, 35, 90, 0.4);
}

/* --- DYNAMIC STATUS STYLES --- */
.status-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 5px;
    padding: 2px 8px;
    border-radius: 50px;
    vertical-align: middle;
}

.status-badge {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px;
    display: inline-block;
}

.status-open {
    background: #eefdf5;
    color: #10b981;
    border: 1px solid #10b98144;
}

.status-closed {
    background: #fdf2f2;
    color: #ef4444;
    border: 1px solid #ef444444;
}

/* Upload Progress Bar */
.upload-progress-container {
    display: none;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.upload-progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.upload-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #D9235A, #ff6b6b);
    transition: width 0.3s ease;
}

.upload-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

/* LIVE JOB BANNER */
.live-job-banner {
    background: linear-gradient(90deg, #ff4d4d, #f97316);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* VENUE ADDRESS SECTION */
.venue-address-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.venue-card {
    background: var(--primary-white);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.venue-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    background: #fff5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 2px 10px rgba(220, 20, 60, 0.05);
    transition: var(--transition-base);
}

.venue-card:hover .venue-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.venue-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.venue-card p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

.venue-card .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* SOCIAL MEDIA SECTION */
.social-media-section {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    text-align: center;
}

.social-links-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: var(--spacing-lg);
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    width: 200px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: var(--transition-base);
}

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

/* Facebook Specific */
.social-card.facebook .social-icon {
    background: #1877F2;
    color: white;
}

.social-card.facebook:hover {
    border-color: #1877F2;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.2);
}

/* Instagram Specific */
.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-card.instagram:hover {
    border-color: #dc2743;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 39, 67, 0.2);
}

@media (max-width: 768px) {
    .social-links-grid {
        gap: var(--spacing-md);
    }

    .social-card {
        width: 140px;
        padding: var(--spacing-md);
        font-size: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
}

.venue-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.venue-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.venue-card p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.venue-card .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e90ff;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.venue-card .btn-secondary:hover {
    background: #1c86ee;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

/* HOLIDAY CLUB FLYER */
.holiday-club-flyer {
    padding: var(--spacing-2xl) 0;
    background: var(--primary-white);
}

.flyer-wrapper {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--primary-blue);
    transition: var(--transition-base);
}

.flyer-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.flyer-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .holiday-club-flyer {
        padding: var(--spacing-lg) 0;
    }

    .flyer-wrapper {
        border-radius: var(--radius-md);
        border-width: 2px;
    }
}

.flyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Flyer Slider Mode for Mobile */
@media (max-width: 768px) {
    .flyer-slider-container {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 10px 0;
    }

    .flyer-grid.slider-mode {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        margin-top: 1rem;
    }

    .flyer-grid.slider-mode .flyer-wrapper {
        flex: 0 0 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
}

.flyer-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.flyer-img:hover {
    transform: scale(1.02);
}


@media (max-width: 768px) {
    .venue-address-section {
        padding: var(--spacing-xl) 0;
    }

    .venue-grid {
        gap: 1.5rem;
    }

    .venue-card {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   EASTER EGG MODAL & FLOATING ICON
   ======================================== */

/* Easter Egg Modal Overlay */
.easter-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10005;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.easter-modal-overlay.show {
    display: flex;
}

/* Easter Modal */
.easter-modal {
    background: transparent;
    border-radius: 30px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    box-shadow: none;
    animation: fadeIn 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.easter-modal-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.easter-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-white);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all 0.3s ease;
    z-index: 10;
}

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

.easter-modal-flyer {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.easter-modal-flyer:hover {
    transform: scale(1.01);
}

/* Animated Easter Egg Icon - Floating Button */
.easter-egg-icon-floating {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    cursor: grab;
    box-shadow: 0 10px 30px rgba(255, 200, 66, 0.4);
    z-index: 10002;
    transition: all 0.3s ease;
    border: 4px solid white;
    animation: bobbing 3s ease-in-out infinite;
    touch-action: none;
    user-select: none;
}

.easter-egg-icon-floating:active {
    cursor: grabbing;
}

.easter-egg-icon-floating:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 200, 66, 0.6);
}

.easter-egg-icon-floating:active {
    transform: scale(0.95);
}

/* Animations for different entrance sides */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(150px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bobbing Animation */
@keyframes bobbing {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(255, 200, 66, 0.4);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 200, 66, 0.6);
    }
}

/* Spin Animation for interaction */
@keyframes spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.1);
    }
}

.easter-egg-icon-floating.spinning {
    animation: spin 0.6s ease-in-out;
}

/* Animation classes for entrance */
.easter-egg-icon-floating.from-right {
    animation: slideInFromRight 0.6s ease-out, bobbing 3s ease-in-out 0.6s infinite;
}

.easter-egg-icon-floating.from-left {
    animation: slideInFromLeft 0.6s ease-out, bobbing 3s ease-in-out 0.6s infinite;
}

.easter-egg-icon-floating.from-top {
    animation: slideInFromTop 0.6s ease-out, bobbing 3s ease-in-out 0.6s infinite;
}

.easter-egg-icon-floating.from-bottom {
    animation: slideInFromBottom 0.6s ease-out, bobbing 3s ease-in-out 0.6s infinite;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .easter-modal {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .easter-modal-text h2 {
        font-size: 1.5rem;
    }

    .easter-modal-text p {
        font-size: 0.95rem;
    }

    .easter-egg-icon-floating {
        bottom: 110px;
        left: 25px;
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .easter-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .easter-modal-flyer {
        width: 100%;
        height: auto;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .easter-modal {
        width: 95%;
        padding: 1.25rem;
    }

    .easter-modal-text h2 {
        font-size: 1.3rem;
    }

    .easter-egg-icon-floating {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        bottom: 100px;
        left: 20px;
    }

    .easter-modal-flyer {
        width: 100%;
        max-height: 75vh;
    }
}