:root {
    --primary: #064B2A;
    --dark-green: #022D1A;
    --gold: #C9A227;
    --cream: #F8F3E7;
    --ivory: #FFFDF7;
    --text: #202520;
    --red: #A52A24;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-green);
    color: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6,
.hero-heading,
.hero-title,
.section-title,
.section-heading,
.menu-category-title,
.menu-category-name,
.important-statement {
    font-family: 'Playfair Display', serif;
}

/* Overlay covering full screen */
.curtain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    pointer-events: auto;
    overflow: hidden;
    perspective: 1200px;
}

/* Base Curtain Panels with Realistic Fabric Pleats & Shadows */
.curtain {
    width: 50vw;
    height: 100vh;
    position: relative;
    transition: transform 1.6s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

/* Fabric Fold Gradients & Colors */
.panel-left {
    background: 
        /* Center Seam Deep Shadow */
        linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, transparent 6%),
        /* Fabric Vertical Pleat Folds (repeating light/shadow) */
        repeating-linear-gradient(
            90deg,
            #01150a 0px,
            #033a1b 25px,
            #075027 50px,
            #033a1b 75px,
            #01150a 100px
        );
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.7);
    transform-origin: left center;
}

.panel-right {
    background: 
        /* Center Seam Deep Shadow */
        linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 6%),
        /* Fabric Vertical Pleat Folds (repeating light/shadow) */
        repeating-linear-gradient(
            90deg,
            #01150a 0px,
            #033a1b 25px,
            #075027 50px,
            #033a1b 75px,
            #01150a 100px
        );
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    transform-origin: right center;
}

/* Realistic Curtain Pull Back (Slight curve/scale while parting) */
.curtain-overlay.open .panel-left {
    transform: translateX(-100%) skewY(-1deg);
}

.curtain-overlay.open .panel-right {
    transform: translateX(100%) skewY(1deg);
}

/* Completely hide overlay and remove from layout/pointer interaction after animation */
.curtain-overlay.hidden {
    display: none !important;
}


/* Header Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    background: rgba(2, 45, 26, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 40px;
    flex: 1;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-logo-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.nav-logo-img {
    height: 60px;
    background-color: rgba(255, 241, 205, 0.30);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Main Screen Layout */
.main-screen {      
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-image: url(./assets/hero-img.png);
    background-size: cover;
    background-position: center;
    padding: 100px 5% 40px 8%;
    position: relative;
}

/* Hero Left Content */
.hero-content {
    max-width: 620px;
    z-index: 10;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight-text {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero CTA Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Rectangle Hero CTA Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    min-width: 200px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 4px; /* Long rectangle shape */
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Primary Button (Gold / Dark Green) */
.primary-btn {
    background-color: var(--gold);
    color: var(--dark-green);
    border: 2px solid var(--gold);
}

.primary-btn:hover {
    background-color: var(--primary);
    color: var(--cream);
    border-color: var(--gold);
}

/* Secondary Button (Transparent / Gold Border) */
.secondary-btn {
    background-color: rgba(6, 75, 42, 0.4);
    color: var(--cream);
    border: 2px solid var(--cream);
    backdrop-filter: blur(4px);
}

.secondary-btn:hover {
    background-color: var(--gold);
    color: var(--dark-green);
    border-color: var(--gold);
}

/* ==========================================
   About Us / Our Story Section
   ========================================== */
.about-section {
    padding: 120px 5% 100px;
    background-color: var(--dark-green);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(6, 75, 42, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
    position: relative;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--ivory);
    font-weight: 600;
    margin-bottom: 16px;
}

.gold-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Narrative */
.story-heading {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 20px;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 18px;
    font-weight: 300;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(6, 75, 42, 0.25);
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateX(6px);
    border-color: rgba(201, 162, 39, 0.4);
}

.feature-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.5;
}

/* Right Pillars Grid */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pillar-card {
    background: rgba(1, 21, 10, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 30px 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(6, 75, 42, 0.4);
}

.pillar-number {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 12px;
}

.pillar-title {
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 10px;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(6, 75, 42, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

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

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Scroll Reveal Animation Styles */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-element.reveal-left {
    transform: translateX(-40px);
}

.reveal-element.reveal-right {
    transform: translateX(40px);
}

.reveal-element.reveal-scale {
    transform: scale(0.9) translateY(30px);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

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

/* ==========================================
   Featured Menu Section
   ========================================== */
.menu-section {
    padding: 120px 5% 100px;
    background-color: #011d10;
    position: relative;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.menu-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Menu Category Filter Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab-btn {
    background: rgba(6, 75, 42, 0.25);
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(6, 75, 42, 0.4);
}

.tab-btn.active {
    background-color: var(--gold);
    color: var(--dark-green);
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.menu-card {
    background: rgba(2, 45, 26, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    background: rgba(6, 75, 42, 0.45);
}

.menu-card.hide {
    display: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.food-tag {
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.food-tag.veg {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.food-tag.non-veg {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.badge-accent {
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.dish-name {
    font-size: 1.4rem;
    color: var(--ivory);
    margin-bottom: 10px;
    font-weight: 600;
}

.dish-desc {
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed rgba(201, 162, 39, 0.2);
}

.region-tag {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.dish-icon {
    font-size: 1.3rem;
}

/* Custom Menu Banner */
.menu-custom-banner {
    background: linear-gradient(135deg, rgba(6, 75, 42, 0.6) 0%, rgba(2, 45, 26, 0.9) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(8px);
}

.banner-text h3 {
    font-size: 1.6rem;
    color: var(--ivory);
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.85;
    font-weight: 300;
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-custom-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 650px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Services & Event Types Section
   ========================================== */
.services-section {
    padding: 120px 5% 100px;
    background-color: var(--dark-green);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(6, 75, 42, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 45%);
    position: relative;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.services-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Services Grid (3D Flip Container) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

/* Flip Card Base */
.flip-card {
    background-color: transparent;
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 12px;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front & Back Common Styles */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

/* Front Side */
.flip-card-front {
    background-size: cover;
    background-position: center;
}

.card-front-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 21, 10, 0.3) 0%, rgba(1, 21, 10, 0.92) 100%);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.flip-card:hover .card-front-overlay {
    background: linear-gradient(180deg, rgba(1, 21, 10, 0.2) 0%, rgba(1, 21, 10, 0.85) 100%);
}

.service-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.hover-hint {
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(1, 21, 10, 0.7);
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 12px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    font-weight: 500;
}

/* Back Side */
.flip-card-back {
    background: rgba(2, 45, 26, 0.95);
    background-image: radial-gradient(circle at 50% 50%, rgba(6, 75, 42, 0.8) 0%, rgba(1, 21, 10, 0.98) 100%);
    transform: rotateY(180deg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.service-title {
    font-size: 1.3rem;
    color: var(--ivory);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    padding-top: 14px;
    border-top: 1px dashed rgba(201, 162, 39, 0.3);
}

.service-list li {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: "✓";
    font-weight: bold;
    color: var(--gold);
}

.service-list li:last-child {
    margin-bottom: 0;
}

/* Perks Row Bar */
.perks-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(2, 45, 26, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.25);
    padding: 36px 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

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

.perk-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

.perk-item h4 {
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 6px;
}

.perk-item p {
    font-size: 0.88rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 550px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .perks-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Catering Booking & Enquiry Form Section
   ========================================== */
.booking-section {
    padding: 120px 5% 100px;
    background-color: #01150a;
    position: relative;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

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

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Info Column */
.info-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.3;
}

.info-desc {
    font-size: 1.02rem;
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(6, 75, 42, 0.25);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 18px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(6px);
    background: rgba(6, 75, 42, 0.45);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.15);
}

.contact-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.contact-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-text strong {
    font-size: 1.1rem;
    color: var(--ivory);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Right Form Wrapper */
.booking-form-wrapper {
    background: rgba(2, 45, 26, 0.65);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 44px 36px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--ivory);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(1, 21, 10, 0.7);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--cream);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.25);
    background: rgba(1, 21, 10, 0.9);
}

.form-group select option {
    background-color: var(--dark-green);
    color: var(--cream);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Modal Feedback Toast */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.booking-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--dark-green);
    border: 2px solid var(--gold);
    padding: 40px 36px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 0.98rem;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 28px 20px;
    }
}