:root {
    --black: #0a0800;
    --dark: #141008;
    --card: #1a1408;
    --card2: #201a0c;
    --gold: #c9a84c;
    --gold-l: #e8c96a;
    --gold-d: #8a6f2e;
    --text: #e8dfc8;
    --dim: #9a8f78;
    --muted: #5a5244;
    --border: rgba(201, 168, 76, 0.18);
    --border2: rgba(201, 168, 76, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 90px;
    background: rgba(26, 22, 18, 0.96);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    backdrop-filter: blur(10px);
    animation: slideInFromTop 0.8s ease-out;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Circular background that complements the logo */
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    width: 80px;
    height: 80px;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(201, 168, 76, 0.1), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.logo:hover {
    transform: scale(1.05);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 70%, transparent 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.logo:hover::before {
    opacity: 1;
}

.logo:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.logo em {
    font-style: italic;
    color: var(--gold);
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

.logo-img {
    height: 65px;
    width: 65px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 50%;
    /* Remove black background and enhance the logo */
    filter: brightness(1.2) contrast(1.3) saturate(1.1);
    /* Create a subtle border to define the circular shape */
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: transparent;
}

.logo:hover .logo-img {
    filter: brightness(1.4) contrast(1.4) saturate(1.2) drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
    transform: scale(1.08);
    border-color: rgba(212, 175, 55, 0.5);
    /* Enhanced circular glow on hover */
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 201;
}

.hamburger:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: scale(1.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    position: relative;
    transform-origin: center;
}

.hamburger-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover .hamburger-line::before {
    opacity: 1;
}

/* Hamburger Animation States */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger.active {
    background: rgba(201, 168, 76, 0.15);
}

.nav-links {
    display: flex;
    gap: 36px;
    transition: all 0.4s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navbar Book Now Button */
.nav-book-btn {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 201;
}

/* Hide mobile book link on desktop */
.mobile-book-link {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
}

section {
    padding: 96px 80px;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

section:hover::before {
    opacity: 1;
}

.s-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
}

.s-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.s-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 14px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text), var(--gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s-sub {
    color: var(--dim);
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 52px;
    line-height: 1.7;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    gap: 60px;
    background: var(--black);
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero-h1 em {
    color: var(--gold);
    font-style: italic;
    animation: glow 2s ease-in-out infinite;
}

.hero-p {
    color: var(--dim);
    font-size: 19px;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.tag {
    border: 1px solid var(--border2);
    padding: 8px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dim);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.2);
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-right::before {
    display: none;
}

/* Remove background gradient */
.theatre-emoji {
    font-size: 120px;
    text-align: center;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.hero-image-container {
    text-align: center;
    margin-bottom: 30px;
}

.hero-custom-image {
    display: block;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.hero-custom-image img {
    border-radius: 16px;
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
    transition: all 0.4s ease;
    min-width: 280px;
    min-height: 280px;
}

.hero-custom-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Hero text styling */
.hero-right-txt {
    text-align: center;
    margin-bottom: 28px;
    z-index: 2;
    position: relative;
}

.hero-right-txt h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text);
}

.hero-right-txt p {
    color: var(--dim);
    font-size: 16px;
}

/* Badge styling */
.badge {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Enhanced floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Mobile responsiveness for hero right section */
@media (max-width: 900px) {
    .hero-right {
        padding: 40px 20px;
    }

    .hero-custom-image img {
        max-width: 280px;
        max-height: 280px;
        min-width: 220px;
        min-height: 220px;
    }

    .theatre-emoji {
        font-size: 100px;
    }

    .hero-right-txt h3 {
        font-size: 22px;
    }

    .hero-right-txt p {
        font-size: 15px;
    }

    .badge {
        font-size: 10px;
        padding: 12px 16px;
    }
}

@media (max-width: 600px) {
    .hero-custom-image img {
        max-width: 240px;
        max-height: 240px;
        min-width: 200px;
        min-height: 200px;
    }

    .theatre-emoji {
        font-size: 80px;
    }
}

/* Hero image admin styles */
.hero-image-preview {
    margin-bottom: 16px;
}

.hero-preview {
    margin-top: 8px;
}

.hero-image-actions button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-right-txt {
    text-align: center;
    margin-bottom: 28px;
}

.hero-right-txt h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.hero-right-txt p {
    color: var(--dim);
    font-size: 15px;
}

.badge {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 13px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

.btn {
    display: inline-block;
    padding: 15px 38px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all .4s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    background: var(--gold-l);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-d);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 10px;
    letter-spacing: 2px;
}

/* HOW */
#how {
    background: var(--dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.step {
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 52px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.2) rotate(5deg);
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold-d);
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.step:hover .step-num {
    color: var(--gold);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step:hover .step-title {
    color: var(--gold-l);
}

.step-desc {
    color: var(--dim);
    font-size: 15px;
    line-height: 1.65;
}

/* PACKAGES */
#packages {
    background: var(--black);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 24px;
    justify-content: center;
}

.pkg-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 24px;
    border-radius: 4px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: 320px;
}

.pkg-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: all .3s ease;
}

.pkg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(201, 168, 76, 0.05), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.pkg-card:hover {
    border-color: var(--border2);
    background: var(--card2);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.pkg-card:hover::after,
.pkg-card.feat::after {
    opacity: 1;
}

.pkg-card:hover::before {
    opacity: 1;
}

.pkg-card.feat {
    border-color: var(--gold-d);
    animation: glow 3s ease-in-out infinite;
}

.feat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 700;
    animation: bounce 2s ease-in-out infinite;
}

.pkg-emoji {
    font-size: 36px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pkg-card:hover .pkg-emoji {
    transform: scale(1.1) rotate(5deg);
}

.pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.pkg-card:hover .pkg-name {
    color: var(--gold-l);
}

.pkg-price {
    color: var(--gold);
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
}

.pkg-card:hover .pkg-price {
    color: var(--gold-l);
}

.pkg-desc {
    color: var(--dim);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}

.pkg-feats {
    list-style: none;
}

.pkg-feats li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    color: var(--dim);
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: all 0.3s ease;
}

.pkg-card:hover .pkg-feats li {
    color: var(--text);
    transform: translateX(3px);
}

.pkg-feats li::before {
    content: '✦';
    color: var(--gold);
    font-size: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pkg-card:hover .pkg-feats li::before {
    transform: scale(1.2);
}

.pkg-btn {
    margin-top: 20px;
    width: 100%;
    display: block;
    text-align: center;
}

/* TIME SLOTS SYSTEM */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 8px;
    min-height: 120px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--border);
    padding: 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
    transition: left 0.5s ease;
}

.time-slot:hover::before {
    left: 100%;
}

/* Time slot states */
.time-slot.available {
    border-color: var(--gold-d);
    background: rgba(201, 168, 76, 0.05);
}

.time-slot.available:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.2);
}

.time-slot.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.time-slot.occupied {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.occupied:hover {
    transform: none;
    box-shadow: none;
}

/* Time slot content */
.time-slot-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.time-slot-duration {
    font-size: 11px;
    color: var(--dim);
    letter-spacing: 0.5px;
}

.time-slot.selected .time-slot-duration {
    color: var(--dark);
}

.time-slot-status {
    font-size: 10px;
    margin-top: 6px;
    padding: 2px 6px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.time-slot.available .time-slot-status {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.time-slot.occupied .time-slot-status {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.time-slot.selected .time-slot-status {
    background: rgba(0, 0, 0, 0.2);
    color: var(--dark);
}

/* Package duration display */
.duration-display {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-d);
    padding: 12px 16px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    color: var(--gold);
}

/* Selected time info card */
.selected-time-info {
    margin-top: 16px;
    animation: fadeInUp 0.4s ease-out;
}

.time-info-card {
    background: linear-gradient(135deg, var(--card), var(--card2));
    border: 1px solid var(--gold-d);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-info-icon {
    font-size: 24px;
}

.time-info-details {
    flex: 1;
}

.selected-time {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold-l);
    margin-bottom: 2px;
}

.selected-duration {
    font-size: 12px;
    color: var(--dim);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Placeholder */
.time-slot-placeholder {
    grid-column: 1/-1;
    text-align: center;
    color: var(--dim);
    font-style: italic;
    padding: 40px 20px;
    border: 2px dashed var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

/* Booking conflict warning */
.booking-conflict {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    padding: 12px 16px;
    border-radius: 4px;
    margin-top: 12px;
    color: #f44336;
    font-size: 14px;
    text-align: center;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

#booking {
    background: var(--dark);
}

.book-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-d);
    margin-bottom: 9px;
    transition: all 0.3s ease;
}

.fi,
.fs,
.ft {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    outline: none;
    transition: all .4s ease;
    border-radius: 2px;
    position: relative;
    /* Ensure consistent number alignment */
    font-variant-numeric: lining-nums;
    line-height: 1.4;
}

.fi:focus,
.fs:focus,
.ft:focus {
    border-color: var(--gold-d);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.1);
}

.fi:focus+.form-label,
.fs:focus+.form-label,
.ft:focus+.form-label {
    color: var(--gold);
}

.fs option {
    background: var(--dark);
}

.ft {
    min-height: 110px;
    resize: vertical;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.c-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.r-btn {
    flex: 1;
    padding: 11px;
    border: 1px solid var(--border);
    text-align: center;
    cursor: pointer;
    transition: all .4s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dim);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.r-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    transition: left 0.5s ease;
}

.r-btn:hover::before {
    left: 100%;
}

.r-btn.on {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.r-btn:hover {
    transform: translateY(-2px);
}

.c-row {
    display: flex;
    gap: 10px;
}

.c-row .fi {
    flex: 1;
}

.vbtn {
    padding: 13px 20px;
    background: transparent;
    border: 1px solid var(--gold-d);
    color: var(--gold);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.vbtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    transition: left 0.5s ease;
}

.vbtn:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

.vbtn:hover::before {
    left: 100%;
}

.c-ok {
    color: #4caf50;
    font-size: 14px;
    margin-top: 8px;
}

.c-err {
    color: #f44336;
    font-size: 14px;
    margin-top: 8px;
}

.sum-box {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 4px;
    position: sticky;
    top: 80px;
    transition: all 0.4s ease;
}

.sum-box:hover {
    border-color: var(--border2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sum-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--dim);
    transition: all 0.3s ease;
}

.sum-row:hover {
    background: rgba(201, 168, 76, 0.05);
    transform: translateX(5px);
}

.sum-total {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-bottom: none;
    margin-top: 6px;
}

.loy-note {
    margin-top: 22px;
    padding: 15px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px dashed var(--gold-d);
    border-radius: 2px;
    font-size: 14px;
    color: var(--dim);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.loy-note:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.loy-note strong {
    color: var(--gold);
}

.alert {
    padding: 14px 18px;
    border-radius: 2px;
    margin-bottom: 18px;
    font-size: 15px;
    animation: fadeInUp 0.5s ease-out;
}

.a-ok {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.a-err {
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* CUSTOM DATE SELECTOR */
.custom-date-selector {
    position: relative;
}

.date-display {
    cursor: pointer;
    position: relative;
}

.date-display::after {
    content: '📅';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
}

.calendar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--card);
    border: 2px solid var(--gold-d);
    border-radius: 8px;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.3s ease-out;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.cal-month-year {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}

.cal-nav {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: scale(1.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.calendar-weekdays div {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gold-d);
    font-weight: 600;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.cal-day:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: scale(1.05);
}

.cal-day.disabled {
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.4;
    background: transparent;
}

.cal-day.disabled:hover {
    background: transparent;
    border-color: var(--border);
    transform: none;
}

.cal-day.selected {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

.cal-day.today {
    border-color: var(--gold-l);
    border-width: 2px;
}

.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.cal-day.other-month {
    color: var(--muted);
    opacity: 0.3;
}

/* LOYALTY */
#loyalty {
    background: var(--black);
}

.loy-lookup {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin-bottom: 48px;
}

.loy-lookup input {
    transition: all 0.4s ease;
}

.loy-lookup input:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

.loy-card {
    background: linear-gradient(135deg, #1e1608, #2a1e0a, #1e1608);
    border: 1px solid var(--gold-d);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    max-width: 680px;
    transition: all 0.6s ease;
    animation: fadeInUp 0.8s ease-out;
}

.loy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.loy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.13) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.loy-card:hover::before {
    background: radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.25) 0%, transparent 60%);
}

.loy-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 30px;
}

.loy-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    transition: all 0.3s ease;
}

.loy-card:hover .loy-logo {
    color: var(--gold-l);
}

.loy-logo em {
    font-style: italic;
    color: var(--gold);
    animation: glow 3s ease-in-out infinite;
}

.loy-count {
    text-align: right;
}

.loy-count span {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.loy-card:hover .loy-count span {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

.loy-count small {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--dim);
    letter-spacing: 1px;
}

.stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.stamp {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.02);
    transition: all .4s ease;
    cursor: pointer;
}

.stamp:hover {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--gold);
}

.stamp.filled {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    animation: stampFill 0.6s ease-out;
}

.stamp.glow {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    animation: glw 2s infinite;
}

@keyframes stampFill {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(90deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes glw {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 168, 76, 0)
    }
}

.prog-bar {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    height: 5px;
    margin-bottom: 14px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-d), var(--gold));
    border-radius: 99px;
    transition: width .6s ease;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(201, 168, 76, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(201, 168, 76, 0.6), 0 0 30px rgba(201, 168, 76, 0.4);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-top {
    animation: slideInFromTop 0.8s ease-out forwards;
}

/* Staggered animations */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

.loy-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--dim);
}

.reward-box {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid var(--gold-d);
    border-radius: 4px;
    background: rgba(201, 168, 76, 0.05);
    text-align: center;
    max-width: 680px;
}

.reward-box h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.reward-box p {
    color: var(--dim);
    font-size: 15px;
}

/* GALLERY */
#gallery {
    background: var(--dark);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gal-card {
    background: var(--card);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all .4s ease;
    cursor: pointer;
    position: relative;
}

.gal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Media container */
.gal-media {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card), var(--card2));
}

.gal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gal-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal-card:hover .gal-media img {
    transform: scale(1.05);
}

/* Video overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-direction: column;
    gap: 8px;
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.video-label {
    color: white;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Video container for placeholders */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-container .video-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.video-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Media loading states */
.media-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    font-size: 14px;
}

.media-error {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f44336;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Gallery info */
.gal-info {
    padding: 20px;
    transition: all 0.3s ease;
}

.gal-card:hover .gal-info {
    background: rgba(201, 168, 76, 0.05);
}

.gal-event {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.gal-card:hover .gal-event {
    color: var(--gold-l);
}

.gal-type {
    color: var(--gold-d);
    font-size: 13px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.gal-card:hover .gal-type {
    color: var(--gold);
}

.gal-desc {
    color: var(--dim);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.gal-date {
    color: var(--muted);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Media type badge */
.media-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

/* File input styling */
input[type="file"].fi {
    padding: 12px;
    border: 2px dashed var(--border);
    background: var(--card);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Phone number input specific styling */
input[type="tel"].fi {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    /* Force consistent number display */
    font-variant-numeric: lining-nums tabular-nums;
    text-align: left;
}

input[type="file"].fi:hover {
    border-color: var(--gold);
    background: var(--card2);
}

input[type="file"].fi:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Remove number input spinners/steppers - keeps validation but removes up/down arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Upload help styling */
.upload-help {
    margin-top: 8px;
    padding: 12px;
    background: var(--card);
    border-radius: 4px;
    border: 1px solid var(--border);
}

.upload-help strong {
    color: var(--gold);
}

/* Media source toggle */
#gMediaSource {
    background: var(--card2);
    border: 1px solid var(--border2);
}

#gMediaSource:focus {
    border-color: var(--gold);
}

/* Admin gallery table */
.media-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.media-thumbnail.video {
    position: relative;
}

.media-thumbnail.video::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

/* URL helper styles */
.url-help {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--gold-d);
}

.url-help small {
    color: var(--dim);
    font-size: 11px;
    line-height: 1.4;
}

/* Media preview */
.media-preview {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.preview-container {
    max-width: 300px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--card);
}

.preview-container img,
.preview-container video {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

/* REVIEWS */
#reviews {
    background: var(--black);
}

.reviews-carousel-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
    position: relative;
}

.rev-grid {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.rev-grid::-webkit-scrollbar {
    height: 6px;
}

.rev-grid::-webkit-scrollbar-track {
    background: transparent;
}

.rev-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.rev-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-d);
}

.rev-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 0 0 320px;
    min-width: 320px;
}

.rev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
    transition: left 0.6s ease;
}

.rev-card:hover {
    transform: translateY(-5px);
    border-color: var(--border2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.rev-card:hover::before {
    left: 100%;
}

.rev-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.rev-card:hover .rev-stars {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.rev-text {
    color: var(--dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}

.rev-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.rev-card:hover .rev-author {
    color: var(--gold-d);
}

.rev-event {
    color: var(--gold-d);
    font-size: 13px;
    margin-top: 3px;
}

.reviews-nav-btn {
    background: var(--card);
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reviews-nav-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.05);
}

.reviews-nav-btn svg {
    width: 20px;
    height: 20px;
}

.reviews-prev {
    order: -1;
}

/* Mobile scroll hint */
@media (max-width: 768px) {
    .rev-grid::after {
        content: '← Swipe or use arrows →';
        position: absolute;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: var(--gold);
        opacity: 0.6;
        white-space: nowrap;
        animation: fadeInOut 3s ease-in-out infinite;
    }

    .reviews-carousel-container {
        position: relative;
        padding-bottom: 32px;
    }

    @keyframes fadeInOut {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 0.8;
        }
    }
}

.add-rev {
    background: var(--card);
    border: 1px dashed var(--border2);
    padding: 36px;
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.add-rev:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.add-rev h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 22px;
}

.star-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.star-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--muted);
    transition: all .3s ease;
    position: relative;
}

.star-btn:hover {
    transform: scale(1.2) rotate(10deg);
}

.star-btn.on,
.star-btn:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 80px 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-top: 8px;
}

.footer-desc {
    color: var(--dim);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--dim);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dim);
    font-size: 14px;
    line-height: 1.5;
}

.footer-info a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-info a:hover {
    color: var(--gold-l);
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-book-btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.footer-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
    background: var(--gold-l);
}

.footer-book-btn:active {
    transform: translateY(0);
}

.f-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    transition: all 0.3s ease;
}

.f-logo:hover {
    transform: scale(1.05);
}

.f-logo em {
    font-style: italic;
    color: var(--gold);
}

.f-copy {
    color: var(--muted);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--dim);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #bc1888;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-8px);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.f-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    transition: all 0.3s ease;
}

.f-logo:hover {
    transform: scale(1.05);
}

.f-logo em {
    font-style: italic;
    color: var(--gold);
}

.f-copy {
    color: var(--muted);
    font-size: 14px;
}

.admin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted);
    cursor: pointer;
    opacity: .25;
    transition: all .4s ease;
    position: relative;
}

.admin-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.admin-dot:hover {
    opacity: .7;
    transform: scale(1.5);
}

.admin-dot:hover::before {
    opacity: 0.3;
    animation: pulse 1s ease-in-out infinite;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.overlay.open {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--dark);
    border: 1px solid var(--border2);
    padding: 48px;
    border-radius: 4px;
    min-width: 360px;
    max-width: 92vw;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--text), var(--gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mclose {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.mclose:hover {
    color: var(--gold);
    transform: rotate(90deg) scale(1.1);
}

.success-wrap {
    text-align: center;
    padding: 32px 16px;
}

.success-wrap .ico {
    font-size: 72px;
    margin-bottom: 18px;
    animation: bounce 1s ease-in-out;
}

.success-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 8px;
}

.success-wrap p {
    color: var(--dim);
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto 10px;
}

.bid {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-d);
    padding: 7px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 12px 0 24px;
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite;
}

.cash-note {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid var(--border);
    padding: 13px 20px;
    border-radius: 4px;
    max-width: 360px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--dim);
}

/* ADMIN */
.admin-wrap {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--black);
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: all 0.4s ease;
}

.admin-wrap.open {
    display: block;
    opacity: 1;
    animation: adminSlideIn 0.5s ease-out;
}

@keyframes adminSlideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.admin-nav {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    animation: slideInFromTop 0.6s ease-out;
}

.admin-nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    background: linear-gradient(135deg, var(--text), var(--gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 0.8s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-logo-img {
    height: 32px;
    width: 32px;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.2) contrast(1.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.admin-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    background: var(--dark);
    animation: fadeInUp 0.7s ease-out;
}

.atab {
    padding: 14px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dim);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.atab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
    transition: left 0.5s ease;
}

.atab:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.atab:hover::before {
    left: 100%;
}

.atab.on {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.admin-body {
    padding: 48px;
    animation: fadeIn 0.8s ease-out;
}

.apanel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.apanel.on {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: panelSlideIn 0.5s ease-out;
}

@keyframes panelSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    margin-bottom: 44px;
}

.stat {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--border2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat:hover::before {
    left: 100%;
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 4px;
    transition: all 0.3s ease;
    animation: countUp 1s ease-out;
}

.stat:hover .stat-val {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

@keyframes countUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-lbl {
    color: var(--dim);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stat:hover .stat-lbl {
    color: var(--gold-d);
}

table {
    width: 100%;
    border-collapse: collapse;
    animation: fadeInUp 0.6s ease-out;
}

th {
    text-align: left;
    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-d);
    border-bottom: 1px solid var(--border);
    background: rgba(201, 168, 76, 0.05);
    transition: all 0.3s ease;
}

th:hover {
    background: rgba(201, 168, 76, 0.1);
}

td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    font-size: 14px;
    color: var(--dim);
    transition: all 0.3s ease;
}

tr {
    transition: all 0.3s ease;
}

tr:hover {
    background: var(--card);
    transform: translateX(5px);
}

tr:hover td {
    color: var(--text);
}

.sb {
    padding: 3px 10px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sb:hover {
    transform: scale(1.1);
}

.sp {
    background: rgba(255, 165, 0, .14);
    color: orange;
    animation: statusPulse 2s ease-in-out infinite;
}

.sc {
    background: rgba(76, 175, 80, .14);
    color: #4caf50;
    animation: statusGlow 2s ease-in-out infinite;
}

.sx {
    background: rgba(244, 67, 54, .14);
    color: #f44336;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(255, 165, 0, 0);
    }
}

@keyframes statusGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0);
    }
}

.asec {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 26px;
    border-radius: 4px;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.asec:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.asec-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--gold-l);
    transition: all 0.3s ease;
}

.asec:hover .asec-title {
    color: var(--gold);
    transform: translateX(5px);
}

.agrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.conf-pop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--card);
    border: 1px solid var(--border2);
    padding: 22px;
    border-radius: 4px;
    max-width: 320px;
    z-index: 500;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    display: none;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.conf-pop.open {
    display: block;
    animation: popSlideUp .4s ease-out forwards;
}

@keyframes popSlideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.conf-pop h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--gold-l);
}

.conf-pop p {
    color: var(--dim);
    font-size: 14px;
    margin-bottom: 16px;
}

.cbrow {
    display: flex;
    gap: 10px;
}

.cbrow button {
    transition: all 0.3s ease;
}

.cbrow button:hover {
    transform: translateY(-2px);
}

@media(max-width:900px) {
    nav {
        padding: 0 20px;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Hide Book Now button on mobile */
    .nav-book-btn {
        display: none;
    }

    /* Show mobile book link */
    .mobile-book-link {
        display: block !important;
    }

    /* Hide desktop nav links */
    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: linear-gradient(135deg, var(--dark), var(--black));
        flex-direction: column;
        gap: 0;
        padding: 40px 0;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        backdrop-filter: blur(20px);
        /* Reset centering for mobile */
        position: fixed;
        left: auto;
        transform: none;
    }

    /* Mobile menu active state */
    .nav-links.active {
        right: 0;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Mobile nav link styles */
    .nav-links a {
        padding: 16px 32px;
        font-size: 14px;
        letter-spacing: 3px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
        transition: left 0.4s ease;
    }

    .nav-links a:hover::before {
        left: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    /* Remove bottom border animation */
    .nav-links a:hover {
        color: var(--gold-l);
        background: rgba(201, 168, 76, 0.05);
        transform: translateX(10px);
        padding-left: 42px;
    }

    /* Add icons to mobile menu items */
    .nav-links a[href="#hero"]::after {
        content: '🏠';
    }

    .nav-links a[href="#packages"]::after {
        content: '📦';
    }

    .nav-links a[href="#booking"]::after {
        content: '📋';
    }

    .nav-links a[href="#loyalty"]::after {
        content: '🏆';
    }

    .nav-links a[href="#gallery"]::after {
        content: '🖼️';
    }

    .nav-links a[href="#reviews"]::after {
        content: '⭐';
    }

    .nav-links a::after {
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .nav-links a:hover::after {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }

    /* Mobile menu entrance animation */
    .nav-links.active a {
        animation: slideInRight 0.4s ease-out forwards;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-links.active a:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-links.active a:nth-child(6) {
        animation-delay: 0.35s;
    }

    @keyframes slideInRight {
        0% {
            opacity: 0;
            transform: translateX(30px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .s-title {
        font-size: clamp(28px, 6vw, 42px);
    }

    #hero {
        grid-template-columns: 1fr;
        padding: 105px 24px 64px;
        text-align: center;
    }

    .hero-right {
        display: none;
    }

    .hero-h1 {
        font-size: clamp(36px, 8vw, 56px);
    }

    .tags {
        justify-content: center;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .step {
        padding: 20px;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pkg-card {
        margin-bottom: 20px;
    }

    .book-grid {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .book-grid>div:first-child {
        display: contents;
    }

    .book-grid>div:first-child>div,
    .book-grid>div:first-child>#bookAlert {
        order: 1;
    }

    .book-grid>div:last-child {
        order: 2;
        margin: 32px 0;
    }

    .book-grid>div:first-child>button {
        order: 3;
    }

    .book-grid>div:first-child>p:last-child {
        order: 4;
    }

    .sum-box {
        position: static;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Custom calendar mobile styles */
    .calendar-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 360px;
        z-index: 1000;
    }

    .calendar-days {
        gap: 6px;
    }

    .cal-day {
        font-size: 13px;
    }

    .cal-month-year {
        font-size: 18px;
    }

    .gal-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .reviews-carousel-container {
        gap: 12px;
    }

    .rev-grid {
        flex: 1;
    }

    .rev-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 20px;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }

    .reviews-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .loy-card {
        padding: 24px;
        max-width: 100%;
    }

    .loy-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .loy-count {
        text-align: center;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        padding: 32px 24px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Hide tooltip on mobile */

    .modal {
        padding: 24px;
        margin: 20px;
        min-width: auto;
        max-width: calc(100vw - 40px);
    }

    .admin-body {
        padding: 24px;
    }

    .agrid {
        grid-template-columns: 1fr;
    }

    .admin-tabs,
    .admin-nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile-specific animations */
    .animate-on-scroll {
        transform: translateY(20px);
    }

    .btn {
        padding: 12px 24px;
        font-size: 11px;
    }
}

@media(max-width:600px) {
    nav {
        padding: 0 16px;
        height: 75px;
    }

    .logo {
        font-size: 18px;
        width: 65px;
        height: 65px;
        padding: 6px;
    }

    .logo-img {
        height: 55px;
        width: 55px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    section {
        padding: 48px 16px;
    }

    .s-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    .s-sub {
        font-size: 16px;
    }

    #hero {
        padding: 95px 16px 48px;
    }

    .hero-h1 {
        font-size: clamp(28px, 9vw, 48px);
        line-height: 1.2;
    }

    .hero-p {
        font-size: 16px;
    }

    .tags {
        gap: 8px;
    }

    .tag {
        padding: 6px 12px;
        font-size: 10px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step {
        padding: 16px;
    }

    .step-icon {
        font-size: 40px;
    }

    .step-title {
        font-size: 18px;
    }

    .pkg-card {
        padding: 24px;
    }

    .pkg-name {
        font-size: 22px;
    }

    .pkg-price {
        font-size: 20px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Wrap form fields in a card on mobile */
    .book-grid>div:first-child>div:not(#bookAlert),
    .book-grid>div:first-child>.form-group {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 16px;
    }

    /* Remove duplicate styling for nested form-groups */
    .book-grid>div:first-child>div .form-group {
        background: transparent;
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }

    /* Alert box styling */
    .book-grid>div:first-child>#bookAlert {
        background: transparent;
        border: none;
        padding: 0;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .fi,
    .fs,
    .ft {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        border-width: 1.5px;
        font-family: 'Montserrat', sans-serif;
        /* Ensure consistent number alignment on mobile */
        font-variant-numeric: lining-nums;
    }

    .form-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    /* Better select styling for mobile */
    .fs {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    /* Mobile time slots */
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .time-slot {
        padding: 14px 10px;
        border-radius: 8px;
    }

    .time-slot-time {
        font-size: 13px;
        font-weight: 600;
    }

    .time-slot-duration {
        font-size: 10px;
    }

    .time-slot-status {
        font-size: 9px;
        margin-top: 4px;
    }

    /* Better button styling for mobile */
    .btn {
        padding: 16px 24px;
        font-size: 15px;
        border-radius: 8px;
        font-weight: 600;
    }

    /* Coupon section mobile */
    .c-toggle {
        gap: 8px;
    }

    .r-btn {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 6px;
    }

    .c-row {
        gap: 8px;
    }

    .vbtn {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 6px;
        white-space: nowrap;
    }

    /* Two column layout on mobile */
    .two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Summary box mobile improvements */
    .sum-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .sum-row {
        padding: 12px 0;
        font-size: 14px;
    }

    .sum-total {
        font-size: 16px;
        padding: 16px 0;
    }

    .loy-note {
        font-size: 12px;
        padding: 14px;
    }

    /* Section spacing - fix right space issue */
    section {
        padding: 60px 16px;
    }

    .s-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .s-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    /* Fix container width */
    .book-grid {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .time-info-card {
        padding: 12px;
        gap: 8px;
    }

    .time-info-icon {
        font-size: 20px;
    }

    .selected-time {
        font-size: 16px;
    }

    .selected-duration {
        font-size: 11px;
    }

    .sum-box {
        padding: 24px;
    }

    .sum-title {
        font-size: 22px;
    }

    .sum-row {
        font-size: 14px;
    }

    .loy-card {
        padding: 20px;
    }

    .loy-logo {
        font-size: 20px;
    }

    .loy-count span {
        font-size: 28px;
    }

    .stamps {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .stamp {
        font-size: 14px;
    }

    .gal-thumb {
        height: 150px;
        font-size: 50px;
    }

    .gal-event {
        font-size: 18px;
    }

    .rev-card {
        padding: 20px;
    }

    .add-rev {
        padding: 24px;
    }

    .add-rev h3 {
        font-size: 22px;
    }

    .star-btn {
        font-size: 24px;
    }

    /* Tablet Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    footer {
        padding: 40px 16px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-slogan {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-info li {
        font-size: 12px;
    }

    .f-logo {
        font-size: 16px;
    }

    .f-copy {
        font-size: 11px;
    }

    .footer-book-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 80px;
        right: 16px;
    }

    .modal {
        padding: 20px;
        margin: 16px;
        max-width: calc(100vw - 32px);
    }

    .modal h2 {
        font-size: 24px;
    }

    .admin-nav {
        padding: 0 16px;
        height: 56px;
    }

    .admin-nav-title {
        font-size: 20px;
    }

    .admin-logo-img {
        height: 28px;
        width: 28px;
    }

    .admin-tabs {
        padding: 0 16px;
    }

    .atab {
        padding: 12px 16px;
        font-size: 10px;
    }

    .admin-body {
        padding: 16px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 16px;
    }

    .stat-val {
        font-size: 28px;
    }

    .asec {
        padding: 20px;
    }

    .asec-title {
        font-size: 18px;
    }

    table {
        font-size: 12px;
    }

    th,
    td {
        padding: 8px 10px;
    }

    /* Mobile touch improvements */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }

    .tag {
        min-height: 32px;
    }

    .stamp {
        min-width: 32px;
        min-height: 32px;
    }

    .star-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .admin-dot {
        width: 12px;
        height: 12px;
    }
}

/* Extra small devices */
@media(max-width:400px) {
    .hero-h1 {
        font-size: clamp(24px, 10vw, 40px);
    }

    .pkg-card,
    .gal-card,
    .rev-card {
        margin: 0 -8px;
    }

    .modal {
        margin: 8px;
        max-width: calc(100vw - 16px);
    }

    .loy-card {
        margin: 0 -8px;
    }

    /* Ensure touch targets are large enough */
    .nav-links a {
        padding: 8px 4px;
    }

    .btn {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Landscape mobile */
@media(max-width:900px) and (orientation:landscape) {
    #hero {
        min-height: 80vh;
        padding: 85px 24px 40px;
    }

    .hero-h1 {
        font-size: clamp(32px, 6vw, 48px);
    }

    section {
        padding: 48px 24px;
    }
}

/* High DPI displays */
@media(-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {

    .logo,
    .s-title,
    .hero-h1 {
        text-rendering: optimizeLegibility;
    }
}


/* SVG Icon Styles */
.tag-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    transition: all 0.3s ease;
}

.tag:hover .tag-icon {
    transform: scale(1.15) rotate(5deg);
}

.step-icon svg {
    width: 52px;
    height: 52px;
    display: block;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.step:hover .step-icon svg {
    transform: scale(1.2) rotate(5deg);
}

.theatre-emoji svg {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.time-info-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.inline-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    transition: all 0.3s ease;
}

.loy-note .inline-icon {
    margin-right: 8px;
}

.reward-box .inline-icon {
    margin-right: 8px;
}

.ico svg {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
    animation: scaleIn 0.6s ease-out;
}

/* Responsive SVG sizes */
@media (max-width: 900px) {
    .theatre-emoji svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .theatre-emoji svg {
        width: 80px;
        height: 80px;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }

    .ico svg {
        width: 60px;
        height: 60px;
    }
}


/* Review Button Container */
.add-rev-btn-container {
    text-align: center;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out;
}

.add-rev-btn-container .btn {
    padding: 16px 48px;
    font-size: 13px;
    letter-spacing: 2px;
}

.add-rev-btn-container .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
}


/* Custom Scrollbar for Review Modal */
#reviewOv .modal {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--card);
}

#reviewOv .modal::-webkit-scrollbar {
    width: 8px;
}

#reviewOv .modal::-webkit-scrollbar-track {
    background: var(--card);
    border-radius: 10px;
}

#reviewOv .modal::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

#reviewOv .modal::-webkit-scrollbar-thumb:hover {
    background: var(--gold-l);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* Alternative: Hide scrollbar completely if preferred */
/* Uncomment the section below to hide scrollbar */
/*
#reviewOv .modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#reviewOv .modal::-webkit-scrollbar {
    display: none;
}
*/


/* Admin Container Styling */
#admin-container {
    width: 100%;
    min-height: 100vh;
    background: var(--black);
}

#admin-container.open {
    display: block !important;
}

#main-content.hidden {
    display: none !important;
}


/* Package SVG Icon Styling */
.pkg-emoji svg {
    width: 36px;
    height: 36px;
    display: block;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    color: var(--gold);
}

.pkg-card:hover .pkg-emoji svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
}

.pkg-emoji span {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}


/* Gallery Carousel Styling */
.gal-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    margin-top: 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.gal-grid::-webkit-scrollbar {
    height: 6px;
}

.gal-grid::-webkit-scrollbar-track {
    background: transparent;
}

.gal-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.gal-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-d);
}

.gal-card {
    flex: 0 0 320px;
    min-width: 320px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #gallery {
        position: relative;
        padding-bottom: 40px;
    }

    #gallery::after {
        content: '← Swipe to scroll →';
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: var(--gold);
        opacity: 0.6;
        white-space: nowrap;
        animation: fadeInOut 3s ease-in-out infinite;
    }

    .gal-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    #gallery::after {
        font-size: 11px;
    }

    .gal-card {
        flex: 0 0 240px;
        min-width: 240px;
    }
}


/* Custom Scrollbar for Booking Details Modal */
.modal-overlay .booking-details-content {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--card);
}

.modal-overlay .booking-details-content::-webkit-scrollbar {
    width: 8px;
}

.modal-overlay .booking-details-content::-webkit-scrollbar-track {
    background: var(--card);
    border-radius: 4px;
}

.modal-overlay .booking-details-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal-overlay .booking-details-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-l);
}

.modal-overlay .booking-details-content::-webkit-scrollbar-thumb:active {
    background: var(--gold-d);
}


/* Custom Scrollbar for Admin Panel Tables */
.admin-wrap .apanel>div[style*="overflow-x:auto"] {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--card);
}

.admin-wrap .apanel>div[style*="overflow-x:auto"]::-webkit-scrollbar {
    height: 8px;
}

.admin-wrap .apanel>div[style*="overflow-x:auto"]::-webkit-scrollbar-track {
    background: var(--card);
    border-radius: 4px;
}

.admin-wrap .apanel>div[style*="overflow-x:auto"]::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.admin-wrap .apanel>div[style*="overflow-x:auto"]::-webkit-scrollbar-thumb:hover {
    background: var(--gold-l);
}

.admin-wrap .apanel>div[style*="overflow-x:auto"]::-webkit-scrollbar-thumb:active {
    background: var(--gold-d);
}

/* Loading spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* Button loading spinner */
.btn-spinner {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.65s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}
