/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C85A0F;
    /* Minerva Orange */
    --primary-dark: #B54E0A;
    --secondary-color: #1A1A1A;
    /* Deep Navy for contrast */
    --text-dark: #121212;
    --text-light: #555555;
    --bg-light: #FDFDFD;
    --white: #ffffff;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    letter-spacing: -0.01em;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
.hero-title,
.section-title {
    font-family: var(--font-heading);
    letter-spacing: 0;
    font-weight: 600;
}

/* GLOBAL SECTION SAFETY */
section {
    overflow: hidden;
    /* Prevents any child from sticking out */
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    /* Reduced vertical padding for larger logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 75px;
    /* Increased for prominence */
    width: auto;
    mix-blend-mode: multiply;
    /* Naturally removes white background */
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Makes logo pure white for dark footer */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(200, 90, 15, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 90, 15, 0.4);
    filter: brightness(1.1);
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Hide scroll on the modal container itself */
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 850px;
    height: auto;
    max-height: 90vh;
    /* Don't exceed screen height */
    border-radius: 16px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    /* Proper internal scrolling */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.animate-modal {
    animation: modalFadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 30px;
    top: 25px;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 2000;
    /* Ensure on top */
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header-refined {
    padding: 60px 60px 40px;
    background: linear-gradient(to bottom, #fcfcfc, #ffffff);
    border-bottom: 1px solid #eee;
    text-align: left;
}

.modal-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.modal-header-refined h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.modal-header-refined p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    font-size: 16px;
    opacity: 0.8;
}

.booking-form-refined,
.premium-form {
    padding: 50px 60px;
}

.booking-form-refined .form-row,
.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.booking-form-refined .form-group,
.premium-form .form-group {
    position: relative;
}

.booking-form-refined label,
.premium-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.booking-form-refined input,
.booking-form-refined select,
.booking-form-refined textarea,
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 18px 25px;
    background-color: #f7f8f9;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.booking-form-refined input::placeholder,
.booking-form-refined textarea::placeholder,
.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.booking-form-refined input:focus,
.booking-form-refined select:focus,
.booking-form-refined textarea:focus,
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.field-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
    font-weight: 300;
}

/* Form Validation Feedback */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ff4d4d !important;
    background-color: #fffafb !important;
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1) !important;
}

.form-group.is-valid input,
.form-group.is-valid select,
.form-group.is-valid textarea {
    border-color: #2abb67 !important;
    background-color: #fafffb !important;
}

.error-message {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
    animation: fieldReveal 0.3s ease forwards;
}

.form-group.has-error .error-message {
    display: block;
}

@keyframes fieldReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.protection-text {
    max-width: 400px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

.btn-submit-modern,
.btn-submit-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-modern:hover,
.btn-submit-premium:hover {
    background-color: #2e3a8c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 76, 184, 0.3);
}

/* ===== FLATPICKR CUSTOM STYLES ===== */
.flatpickr-calendar {
    background: #fff !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(200, 90, 15, 0.1) !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected,
.flatpickr-day.prevMonthDay.startRange,
.flatpickr-day.nextMonthDay.startRange,
.flatpickr-day.prevMonthDay.endRange,
.flatpickr-day.nextMonthDay.endRange {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(200, 90, 15, 0.05) !important;
}

.flatpickr-day:hover {
    background: rgba(200, 90, 15, 0.1) !important;
}

.flatpickr-time input:focus {
    background: rgba(200, 90, 15, 0.05) !important;
}

.numInputWrapper:hover {
    background: rgba(200, 90, 15, 0.05) !important;
}

/* ===== NEW SCHEDULER LAYOUT ===== */
.scheduler-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
}

.scheduler-left {
    padding: 20px;
    border-right: 1px solid #eee;
    background: #fff;
}

.scheduler-right {
    padding: 30px;
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
}

.scheduler-header {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.selected-date-display {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

.timezone-text {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-slots-wrapper {
    flex: 1;
    overflow-y: auto;
    max-height: 350px;
    padding-right: 10px;
}

.time-slots-wrapper::-webkit-scrollbar {
    width: 6px;
}

.time-slots-wrapper::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.slots-section {
    margin-bottom: 25px;
}

.slots-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.time-slot-btn {
    padding: 12px;
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.time-slot-btn:hover {
    background: rgba(200, 90, 15, 0.05);
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(200, 90, 15, 0.3);
}

.time-slot-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ddd;
    color: #999;
}

/* Inline Flatpickr Overrides */
.scheduler-left .flatpickr-calendar.inline {
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

.scheduler-left .flatpickr-innerContainer,
.scheduler-left .flatpickr-days,
.scheduler-left .dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.scheduler-left .flatpickr-day {
    max-width: none !important;
    height: 45px !important;
    line-height: 45px !important;
}

/* Modal Structure Adjustments */
.modal-header-refined {
    padding: 50px 60px 30px;
}

.booking-form-refined {
    padding: 0 60px 50px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

@media (max-width: 850px) {
    .scheduler-container {
        grid-template-columns: 1fr;
    }

    .scheduler-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .booking-form-refined .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive refinements */
/* Responsive refinements */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow-y: auto;
        /* Allow scrolling on mobile */
        -webkit-overflow-scrolling: touch;
    }

    .booking-form-refined .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .modal-header-refined,
    .booking-form-refined {
        padding: 30px 20px;
    }

    .modal-header-refined h2 {
        font-size: 28px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-submit-modern {
        width: 100%;
    }

    /* Footer Mobile Fixes */
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack columns */
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col ul {
        padding: 0;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* HERO SLIDER GLOBAL */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/weddings/1.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: heroSlideshow 25s ease-in-out infinite, zoomEffect 20s infinite alternate linear;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes heroSlideshow {

    0%,
    16% {
        background-image: url('images/special/8.jpeg');

    }

    20%,
    36% {
        background-image: url('images/weddings/1.png');
    }

    40%,
    56% {
        background-image: url('images/birthdays/3.jpeg');
    }

    60%,
    76% {
        background-image: url('images/special/3.jpeg');
    }

    80%,
    100% {
        background-image: url('images/receptions/1.png');
    }

    /* 100% {
       ;
    } */
}

/* Gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 84px;
    font-weight: 700;
    /* margin-bottom: 24px; */
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-badge {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-badge:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 90, 15, 0.4);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200, 90, 15, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 90, 15, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    animation: kenBurnsZoomSlow 20s ease-in-out infinite alternate;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1);
    animation-play-state: paused;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== STATISTICS BANNER ===== */
.stats-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    padding: 0 30px;
    transition: transform 0.3s ease;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
}

.event-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(200, 90, 15, 0.05);
    border-color: rgba(200, 90, 15, 0.1);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-content {
    padding: 35px 30px;
}

.event-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.event-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation handled by reveal classes now for event-card */

.event-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-content {
    padding: 35px 30px;
}

.event-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.event-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-event-book {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.btn-event-book:hover {
    color: var(--primary-dark);
    transform: translateX(8px);
    border-bottom-color: var(--primary-dark);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(200, 90, 15, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: blur(2px);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.category-tag {
    display: block;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.gallery-icon {
    font-size: 32px;
    color: white;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(200, 90, 15, 0.05), rgba(44, 62, 80, 0.05));
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item-premium:last-of-type {
    border-bottom: none;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(200, 90, 15, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-premium:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.info-content strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Premium Form Styles */
.premium-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.premium-form .form-group input,
.premium-form .form-group select,
.premium-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.premium-form .form-group input:focus,
.premium-form .form-group select:focus,
.premium-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.btn-submit-premium {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200, 90, 15, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 90, 15, 0.4);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 100px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 90, 15, 0.1), rgba(181, 78, 10, 0.05));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.map-wrapper:hover .map-overlay {
    opacity: 0;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.location-card:hover {
    background: white;
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.location-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.location-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.btn-directions {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(200, 90, 15, 0.3);
    display: inline-block;
    margin-top: 10px;
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 90, 15, 0.4);
}

/* Float animation for location icons */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0f18;
    color: white;
    padding: 100px 0 40px;
    position: relative;
    border-top: 1px solid transparent;
}

/* Premium top line gradient */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-dark), transparent);
    opacity: 0.6;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-col ul li span {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
    display: inline-block;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Premium Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 90, 15, 0.3);
}

.social-icon::before {
    display: none;
}

/* Enhanced Professional Animations */
.event-card .event-image img {
    animation: kenBurnsZoomSlow 20s ease-in-out infinite alternate;
}

@keyframes kenBurnsZoomSlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}

.section-header .section-title {
    animation: fadeInUp 1s ease-out both;
}

/* Ken Burns Effect - Slow Zoom and Pan */
@keyframes kenBurnsZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.15) translate(-2%, -1%);
    }

    100% {
        transform: scale(1.08) translate(1%, 1%);
    }
}

/* Ken Burns Effect - Slower for Cards */
@keyframes kenBurnsZoomSlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(-1%, -0.5%);
    }

    100% {
        transform: scale(1.05) translate(0.5%, 0.5%);
    }
}

/* ==========================================================================
   PREMIUM REVEAL ANIMATION SYSTEM
   ========================================================================== */
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-up.active,
.reveal-down.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
}

/* Delay Utilities */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-7 {
    transition-delay: 0.7s;
}

.delay-8 {
    transition-delay: 0.8s;
}




/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
        padding: 50px 30px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .events-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-number {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-section,
    .events-section,
    .gallery-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
}

/* ===== NEW EVENTS PAGE STYLES ===== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(200, 90, 15, 0.05));
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.accent-text {
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.detailed-events {
    padding: 80px 0;
}

.detail-event-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.detail-event-row.reverse {
    direction: rtl;
}

.detail-event-row.reverse .detail-event-content {
    direction: ltr;
}

.detail-event-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-event-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detail-event-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-event-row:hover .detail-event-image img {
    transform: scale(1.05);
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.detail-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.detail-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fdfdfd;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 24px;
}

.info-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Landing Page Button Styles */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 90, 15, 0.2);
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenBurnsHero 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

@keyframes kenBurnsHero {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-carousel-dots .dot.active {
    background: var(--primary-color);
    border-color: white;
    width: 32px;
    border-radius: 6px;
}

/* Remove Testimonial Background Image override */
.testimonials-section,
#testimonials {
    background-image: none !important;
    background-color: var(--bg-light) !important;
}

/* ===== RESPONSIVE DESIGN & MOBILE MENU ===== */

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-dark);
}

/* ==========================================================================
   ===== RESPONSIVE DESIGN SYSTEM (REFACED) =====
   ========================================================================== */

/* --- 1. TABLET & MOBILE STYLES (< 1024px) --- */
@media screen and (max-width: 1024px) {

    /* Hide Desktop-only Elements */
    .desktop-menu {
        display: none !important;
    }

    .container {
        padding: 0 20px;
    }

    /* Hamburger & Navigation */
    .hamburger {
        display: block !important;
        z-index: 10001;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-color);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    /* Mobile Nav Overlay - Guaranteed Full Screen & Top Level */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
    }

    .mobile-nav-overlay.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-items {
        list-style: none;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-items li {
        margin: 15px 0;
    }

    .mobile-nav-link {
        font-size: 24px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        display: block;
        padding: 10px;
    }

    .mobile-book-btn {
        margin-top: 25px;
        display: inline-block !important;
        font-size: 18px;
        padding: 15px 40px;
    }

    .hero {
        height: 100vh;
        /* Restore full height or at least 80vh */
        min-height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        /* Offset for fixed navbar */
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 15px;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
        margin: 0 !important;
    }

    /* Stats & Layout */
    .stats-banner {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .stat-item:last-child {
        border: none;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .events-grid,
    .testimonials-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .image-wrapper img {
        height: 300px;
        width: 100%;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .btn-primary.open-booking-modal {
        display: none;
    }

    /* Hide in header */
    .nav-container {
        padding: 10px 15px;
    }

    .logo-img {
        height: 45px;
    }
}

/* --- 2. DESKTOP STYLES (>= 1025px) --- */
@media screen and (min-width: 1025px) {

    /* Hard Hide Mobile-only Elements */
    .mobile-nav-overlay,
    .hamburger,
    .mobile-book-btn {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Show & Align Desktop Menu */
    .desktop-menu {
        display: flex !important;
        gap: 35px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .nav-link {
        text-decoration: none;
        color: var(--secondary-color);
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--primary-color);
        transition: width 0.3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-section,
    .events-section,
    .gallery-section,
    .location-section {
        padding: 60px 0;
    }
}

/* Prevent scrolling when menu is open */
body.no-scroll {
    overflow: hidden;
}

.event-mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.event-mini-gallery img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-mini-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

/* ===== SUCCESS CARD PREMIUM ===== */
.success-card-premium {
    text-align: center;
    padding: 20px 0;
    animation: fadeInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-logo-container {
    margin-bottom: 30px;
}

.success-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    background: #d4edda;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
}

.success-card-premium h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
}

.success-card-premium p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-card-premium .signature {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 20px;
}

.success-card-premium .signature span {
    display: block;
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-top: 5px;
}

/* ==========================================================================
   FINAL RESPONSIVE OVERRIDES (FORCE STACKING ON MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
    .detail-event-row {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 60px !important;
    }

    .detail-event-row.reverse {
        direction: ltr !important;
    }

    .detail-event-image img {
        height: 400px !important;
    }

    .detail-info {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .info-item {
        width: 100% !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px !important;
    }

    .detail-title {
        font-size: 32px !important;
    }

    .detail-info {
        padding: 0 !important;
    }

    .detail-event-image img {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 36px !important;
    }

    .detail-title {
        font-size: 28px !important;
    }

    .detail-event-image img {
        height: 250px !important;
    }

    .page-header {
        padding: 120px 20px 40px !important;
    }
}