/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --bg-primary: #120303;
    --bg-secondary: #1B0505;
    --bg-card: #220707;
    --bg-footer: #0a0101;
    --gold-accent: #D4A017;
    --gold-highlight: #F4C542;
    --border-gold: #C89B1D;
    --text-primary: #FFF8E1;
    --text-secondary: #E8D9A5;
    --text-dark-red: #120303;
    
    --font-heading-ta: 'Anek Tamil', sans-serif;
    --font-heading-en: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    padding-top: 76px;
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--bg-primary), #0a0101, var(--bg-primary));
    background-size: 200% 200%;
    animation: bgMovement 20s ease infinite;
    overflow-x: hidden;
}
@keyframes bgMovement {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#premium-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading-en);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

h1.logo-ta, h2.logo-ta, .hero-title-ta, .testimonial-card h4 {
    font-family: var(--font-heading-ta);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Utility & Advanced CSS Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gold { background-color: var(--gold-accent); }
.text-light { color: var(--text-primary); }
.text-gold { color: var(--gold-accent); }
.mt-4 { margin-top: 1.5rem; }

/* Glassmorphism */
.glassmorphism {
    background: rgba(18, 3, 3, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.bg-dark .glassmorphism, .text-light .glassmorphism {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 160, 23, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Soft Shadows */
.soft-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hover Lift */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Animated Border via Gradient Background */
.animated-border {
    position: relative;
    border: none !important;
    border-radius: 17px !important;
    padding: 3px; /* border thickness */
    background: linear-gradient(60deg, var(--gold-accent), var(--gold-accent), var(--gold-accent), #ffdf70, var(--gold-accent));
    background-size: 300% 300%;
    animation: animatedGradient 5s ease infinite alternate;
}
.animated-border .card-inner, .animated-border .inner-form {
    background: var(--text-primary);
    border-radius: 14px;
    height: 100%;
}
.bg-cream .animated-border .card-inner {
    background: var(--bg-primary);
}
@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Headers */
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.divider { height: 3px; width: 60px; background-color: var(--gold-accent); margin: 15px auto; }
.section-subtitle { font-family: var(--font-heading-ta); font-size: 1.2rem; color: var(--text-secondary); font-weight: 500; }
.text-light .section-subtitle { color: #cccccc; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-outline, .btn-whatsapp, .btn-gold-gradient {
    display: inline-block;
    padding: 15px 30px; /* Touch-friendly size */
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary { background-color: var(--gold-accent); color: var(--text-dark-red); border: 2px solid var(--gold-accent); }
.btn-primary:hover { background-color: var(--gold-highlight); color: var(--text-dark-red); box-shadow: 0 0 15px rgba(212, 160, 23, 0.6); }

.btn-outline { background-color: rgba(18, 3, 3, 0.5); color: var(--text-primary); border: 2px solid var(--border-gold); }
.btn-outline:hover { background-color: var(--gold-accent); color: var(--text-dark-red); }

.btn-whatsapp { background-color: #25D366; color: var(--text-primary); border: 2px solid #25D366; }
.btn-whatsapp:hover { background-color: transparent; color: #25D366; }

/* Gold Gradient Premium Button */
.btn-gold-gradient {
    background: linear-gradient(135deg, #C89B1D, #F1D06E, #C89B1D);
    background-size: 200% 200%;
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(200, 155, 29, 0.4);
}
.btn-gold-gradient:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 25px rgba(200, 155, 29, 0.6);
}

/* Ripple */
.ripple::after {
    content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    background: rgba(212, 160, 23, 0.3); border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0; z-index: -1;
}
.ripple:hover::after { width: 300px; height: 300px; opacity: 1; }

/* ==========================================================================
   Navigation
   ========================================================================== */
#navbar { position: fixed; top: 0; left: 0; width: 100%; height: 76px; z-index: 1000; transition: all 0.3s ease; background: rgba(60, 10, 15, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--gold-accent); padding: 0; margin: 0; }
#navbar.scrolled { background: rgba(30, 5, 5, 0.95); box-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; height: 100%; padding: 0 5%; gap: 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1400px;
    margin:0 auto;
    height:100%;
    padding:0 24px;
    gap:32px;
}

/* Enforce static positioning and reset any transforms to fix the floating bug */
.logo { position: static !important; float: none !important; margin: 0 !important; padding: 0 !important; }
.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; position: static !important; transform: none !important;display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    position:static !important;
    transform:none !important; }
.brand-img { position: static !important; transform: none !important; float: none !important; background-image: none !important;
    width:52px !important;
    height:52px !important;
    object-fit:contain;
    display:block;
}

.brand-text { display: flex; flex-direction: column; justify-content: center; width: auto; position: static !important; transform: none !important; }
.logo-ta { font-size: 1.2rem; color: var(--gold-accent); font-weight: 700; line-height: 1.1; margin: 0; white-space: nowrap; position: static !important; transform: none !important; }
.logo-en { font-size: 0.85rem; color: #FFFDD0; letter-spacing: 1px; text-transform: uppercase; line-height: 1.1; margin-top: 2px; white-space: nowrap; position: static !important; transform: none !important; }
.nav-links { display: flex; justify-content: center; gap: 30px; align-items: center; margin: 0; padding: 0; list-style: none; flex: 1; }
.nav-links li a { color: var(--text-primary); font-size: 1rem; font-weight: 500; position: relative; padding-bottom: 5px; }
.nav-links li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--gold-highlight); box-shadow: 0 0 10px var(--gold-highlight); transition: all 0.3s ease;
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-book { background: linear-gradient(135deg, #C89B1D, #F1D06E, #C89B1D); color: #5c0f0f !important; padding: 0 22px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; white-space: nowrap; font-size: 0.9rem; margin: 0; font-weight: 700; box-shadow: 0 4px 15px rgba(200, 155, 29, 0.4); transition: all 0.3s ease; }
.nav-book:hover { box-shadow: 0 4px 20px rgba(241, 208, 110, 0.6); }
.hamburger { display: none; cursor: pointer; z-index: 1001; }
.hamburger .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--text-primary); transition: all 0.3s ease; }

/* ==========================================================================
   Hero Section & Cinematic Slider
   ========================================================================== */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.slider-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; display: flex; align-items: center; justify-content: center; }
.slide.active { opacity: 1; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(22, 2, 2, 0.7); z-index: 0; }
.hero-content { position: relative; text-align: center; max-width: 900px; padding: 0 20px; z-index: 1; opacity: 1; }

.hero-title-ta { font-size: 4rem; color: var(--gold-accent); text-shadow: 0 0 15px rgba(212, 160, 23, 0.5), 2px 2px 4px rgba(0,0,0,0.8); margin-bottom: 20px; }
.hero-subtitle-en { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 40px; font-family: var(--font-heading-en); font-style: italic; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Slide Specific Image Animations */
.slide.active.slide-anim-1 { animation: zoomInKenBurns 10s forwards; }
@keyframes zoomInKenBurns { from { background-size: 100%; } to { background-size: 110%; } }

.slide.active.slide-anim-2 { animation: slideLeftCenter 10s forwards; background-position: left center; }
@keyframes slideLeftCenter { from { background-position: left center; } to { background-position: center center; } }

.slide.active.slide-anim-3 { animation: blurToClear 3s forwards; }
@keyframes blurToClear { 0% { filter: blur(10px); } 100% { filter: blur(0); } }

.slide.active.slide-anim-4 { animation: zoomOutSlow 10s forwards; background-size: 110%; }
@keyframes zoomOutSlow { from { background-size: 110%; } to { background-size: 100%; } }

.slide.active.slide-anim-5 { animation: slideFromBottomGlow 10s forwards; background-position: center bottom; }
@keyframes slideFromBottomGlow { 
    0% { background-position: center bottom; filter: brightness(1); } 
    50% { filter: brightness(1.2); } 
    100% { background-position: center center; filter: brightness(1); } 
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content { display: grid; grid-template-columns: 1fr; gap: 40px; }
.premium-card .card-inner { padding: 40px; background: linear-gradient(145deg, #220707, #1B0505); border: 1px solid var(--border-gold); border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.premium-card p { margin-bottom: 20px; font-size: 1.1rem; }
.premium-card p:last-child { margin-bottom: 0; }
.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.feature-item { padding: 25px 20px; text-align: center; border-bottom: 3px solid transparent; }
.feature-item:hover { border-bottom: 3px solid var(--gold-accent); }
.feature-icon { font-size: 2.5rem; color: var(--gold-accent); margin-bottom: 15px; }
.feature-item h3 { font-size: 1.1rem; font-weight: 600; }

/* ==========================================================================
   Parallax Sections Global
   ========================================================================== */
.parallax-section {
    position: relative;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    top: -20%; 
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Handled via JS for smoothness */
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}
.parallax-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.bg-dark-overlay { background: rgba(17,17,17,0.85); }
.parallax-content { position: relative; z-index: 2; }

/* ==========================================================================
   Services Section
   ========================================================================== */
/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.service-card {
    background-color: #220707;
    border: 2px solid var(--gold-accent);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.4);
}
.service-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 7, 7, 0.4); /* Dark red overlay */
    transition: background 0.4s ease;
    z-index: 1;
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}
.service-card:hover .service-overlay {
    background: rgba(34, 7, 7, 0.2);
}
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(34, 7, 7, 1) 0%, rgba(34, 7, 7, 0.8) 50%, transparent 100%);
    text-align: center;
    z-index: 2;
}
.service-content h3 {
    color: var(--gold-accent);
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
}
.service-card:hover .service-content h3 {
    color: var(--gold-highlight);
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 12px 30px; background: transparent; border: 2px solid var(--gold-accent); color: var(--gold-accent); border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; }
.tab-btn.active, .tab-btn:hover { background: var(--gold-accent); color: var(--text-primary); }
.menu-pane { display: none; animation: fadeIn 0.5s ease-in-out; }
.menu-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.menu-item { border-radius: 15px; overflow: hidden; position: relative; }
.menu-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.menu-item:hover img { transform: scale(1.15); }
.menu-item-info { position: absolute; bottom: 10px; left: 10px; right: 10px; padding: 15px; text-align: center; background: rgba(255, 255, 255, 0.9); }
.menu-item h4 { color: var(--gold-accent); font-size: 1.2rem; margin: 0; font-weight: 700; }

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 15px; }
.gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:nth-child(2), .gallery-item:nth-child(7) { grid-row: span 2; }
.gallery-item:nth-child(4), .gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); color: var(--text-primary); font-size: 2rem; opacity: 0; transition: all 0.4s ease; z-index: 2; }
.gallery-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(91, 11, 11, 0.6); opacity: 0; transition: all 0.4s ease; z-index: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 90%; max-height: 90vh; border: 5px solid var(--text-primary); border-radius: 8px; box-shadow: 0 0 30px rgba(0,0,0,0.8); transform: scale(0.8); transition: transform 0.4s ease; }
.lightbox.active .lightbox-img { transform: scale(1); }
.close-lightbox { position: absolute; top: 20px; right: 30px; color: var(--text-primary); font-size: 40px; cursor: pointer; transition: all 0.3s ease; }
.close-lightbox:hover { color: var(--gold-accent); transform: rotate(90deg); }

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.stats-overlay { background: rgba(17,17,17,0.8); }
.relative { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.stat-item { padding: 30px 20px; }
.stat-number { font-size: 4rem; font-weight: 700; color: var(--gold-accent); font-family: var(--font-heading-en); margin-bottom: 10px; }
.stat-number::after { content: '+'; color: var(--text-primary); }
.stat-label { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { padding: 40px 30px; position: relative; text-align: center; }
.testimonial-card::before { content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 20px; left: 20px; font-size: 3rem; color: rgba(200, 155, 29, 0.15); }
.stars { color: var(--gold-accent); margin-bottom: 20px; }
.review-text { font-style: italic; font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; }
.customer-name { color: var(--gold-accent); font-weight: 600; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; }
.faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s ease; }
.faq-question h3 { font-size: 1.1rem; color: var(--text-primary); margin: 0; font-weight: 500; }
.faq-question i { color: var(--gold-accent); transition: transform 0.4s ease; }
.faq-question.active { background: rgba(200, 155, 29, 0.2); border-radius: 15px 15px 0 0; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; background: rgba(0,0,0,0.1); border-radius: 0 0 15px 15px; }
.faq-answer p { padding-bottom: 20px; color: #ccc; }

/* ==========================================================================
   Founders Section
   ========================================================================== */
.founders-section { margin-bottom: 50px; }
.founders-title { text-align: center; font-size: 2rem; color: var(--text-primary); margin-bottom: 10px; font-family: var(--font-heading-en); }
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.founder-card { 
    background: linear-gradient(145deg, #220707, #1B0505); 
    border: 2px solid var(--gold-accent); 
    border-radius: 24px; 
    padding: 24px; 
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.05);
    transition: var(--transition);
}
.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.25);
}
.founder-img-wrapper { 
    width: 120px; 
    height: 120px; 
    margin: 0 auto 20px; 
    border-radius: 50%; 
    border: 3px solid var(--gold-accent); 
    padding: 5px;
    background: rgba(212, 160, 23, 0.1);
}
.founder-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 50%; 
}
.founder-name { color: var(--gold-accent); font-size: 1.5rem; margin-bottom: 5px; font-family: var(--font-heading-ta); }
.founder-role { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 20px; }
.founder-links { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.founder-contact { color: var(--text-primary); font-size: 1.1rem; transition: color 0.3s ease; }
.founder-contact:hover { color: var(--gold-accent); }
.founder-contact i { color: var(--gold-accent); margin-right: 8px; }
.founder-wa { display: inline-flex; align-items: center; justify-content: center; background: #25D366; color: white; padding: 10px 25px; border-radius: 30px; font-weight: 600; margin-top: 10px; transition: all 0.3s ease; border: 2px solid #25D366; }
.founder-wa i { margin-right: 8px; font-size: 1.2rem; }
.founder-wa:hover { background: transparent; color: #25D366; }

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

/* ==========================================================================
   Contact Section & Forms
   ========================================================================== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info, .contact-form-container { padding: 40px; }
.contact-card { display: flex; align-items: flex-start; margin-bottom: 30px; padding: 20px; }
.contact-icon { width: 50px; height: 50px; background: rgba(91, 11, 11, 0.1); color: var(--gold-accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; margin-right: 20px; flex-shrink: 0; }
.contact-details h3 { color: var(--text-primary); margin-bottom: 10px; }
.contact-details p { margin-bottom: 5px; }
.contact-actions { display: flex; gap: 15px; margin-bottom: 30px; }

/* Forms */
.contact-form.inner-form { padding: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

input, textarea, select {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}
select { cursor: pointer; }
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(200, 155, 29, 0.2);
}
.submit-btn { width: 100%; padding: 18px; font-size: 1.1rem; }

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.85); backdrop-filter: blur(8px);
    z-index: 9999; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    width: 90%; max-width: 550px; position: relative;
    transform: scale(0.8) translateY(30px); opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-content { transform: scale(1) translateY(0); opacity: 1; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 32px; color: var(--gold-accent); cursor: pointer; transition: all 0.3s ease; z-index: 10; }
.close-modal:hover { transform: rotate(90deg); color: var(--gold-accent); }
.modal-title { color: var(--gold-accent); margin-bottom: 25px; text-align: center; font-size: 2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background-color: var(--bg-footer); padding: 80px 0 20px; border-top: 2px solid var(--border-gold); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-ta { color: var(--gold-accent); margin-bottom: 5px; }
.footer-brand .logo-en { color: var(--text-primary); font-family: var(--font-heading-en); margin-bottom: 20px; }
.tagline { font-family: var(--font-heading-ta); font-size: 1.1rem; color: #ccc; margin-bottom: 15px; }
.owners { font-weight: 600; color: var(--text-primary); }
.footer h3 { color: var(--text-primary); font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold-accent); }
.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a:hover { color: var(--gold-accent); padding-left: 5px; }
.footer-contact p { margin-bottom: 15px; display: flex; align-items: flex-start; }
.footer-contact i { color: var(--gold-accent); margin-right: 15px; margin-top: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; text-align: center; font-size: 0.9rem; }

/* ==========================================================================
   Floating Elements & Animations
   ========================================================================== */
.floating-whatsapp {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25D366; color: white; border-radius: 50%;
    text-align: center; font-size: 30px; line-height: 60px; z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}
.floating-whatsapp:hover { background-color: #128C7E; color: white; animation: none; transform: translateY(-5px) scale(1.1); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile Sticky CTA */
.mobile-bottom-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1001; background: var(--text-primary); box-shadow: 0 -2px 15px rgba(0,0,0,0.15); }
.m-cta-btn { flex: 1; text-align: center; padding: 18px 0; font-weight: 700; font-size: 1.15rem; color: var(--text-primary); display: flex; justify-content: center; align-items: center; gap: 10px; }
.m-cta-call { background: var(--gold-accent); }
.m-cta-wa { background: #25D366; }

/* ==========================================================================
   Mobile Optimization (320px - 480px priority)
   ========================================================================== */
@media (max-width: 991px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero-title-ta { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right .nav-book { display: none !important; }
    .mobile-only { display: block; }
    .hamburger { display: flex; flex-direction: column; justify-content: center; }
    .nav-links.active {
        display: flex; flex-direction: column; position: fixed; top: 0; right: 0;
        width: 75%; height: 100vh; background: rgba(60, 10, 15, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5); z-index: 1000; transform: translateX(100%);
        animation: slideIn 0.3s forwards;
    }
    @keyframes slideIn { to { transform: translateX(0); } }
    .nav-links.active li { margin: 15px 0; }
    .nav-links.active li a { font-size: 1.2rem; }
    .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 999; }
    .mobile-menu-overlay.active { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 480px) {
    body { padding-bottom: 60px; /* Space for Sticky CTA */ }
    
    .mobile-bottom-cta { display: flex; }
    
    .floating-whatsapp {
        bottom: 80px; /* Above the CTA */
        right: 15px; width: 50px; height: 50px; line-height: 50px; font-size: 24px;
    }
    
    .section-padding { padding: 50px 0; }
    .container { padding: 0 15px; }
    
    /* True single column */
    .contact-wrapper, .footer-content, .about-content, .form-row, .menu-grid, .gallery-grid, .services-grid, .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item:nth-child(2), .gallery-item:nth-child(7),
    .gallery-item:nth-child(4), .gallery-item:nth-child(9) {
        grid-row: auto; grid-column: auto;
    }
    
    .gallery-grid { grid-auto-rows: 200px; }
    
    /* Typography perfection */
    .hero-title-ta { font-size: 2.2rem; margin-bottom: 15px; }
    .hero-subtitle-en { font-size: 1.1rem; margin-bottom: 25px; }
    .section-title { font-size: 1.8rem; }
    .stat-number { font-size: 3rem; }
    
    /* Touch friendly sizes */
    .btn-primary, .btn-outline, .btn-whatsapp, .btn-gold-gradient, .tab-btn {
        padding: 16px 20px; font-size: 1.05rem; width: 100%; text-align: center; display: block; margin-bottom: 10px;
    }
    
    .hero-buttons, .contact-actions, .modal-actions {
        display: flex; flex-direction: column; width: 100%; gap: 10px; margin: 0;
    }
    
    .modal-content { padding: 5px; width: 95%; margin-top: 10px; }
    .card-inner, .inner-form { padding: 20px !important; }
    
    .contact-info, .contact-form-container { padding: 20px; }
}


/* ==========================================================================
   Luxury Menu Section (Sri Vinayaga Style)
   ========================================================================== */
.luxury-menu-section {
    position: relative;
    padding: 80px 0;
    background-color: #050505;
    background-image: linear-gradient(rgba(5,5,5,0.85), rgba(5,5,5,0.95)), url('./image/menuback.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Grid layout for cards */
.luxury-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Base card styling */
.luxury-card {
    width: 100%;
    height: 700px; /* equal height for all cards */
    background: 
        linear-gradient(145deg, rgba(24, 16, 5, 0.4) 0%, rgba(5, 5, 5, 0.6) 100%),
        rgba(30, 0, 5, 0.85); /* layered dark black + deep maroon glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Double gold border with inner glowing line */
    border: 2px solid var(--gold-accent);
    box-shadow: 
        inset 0 0 10px rgba(212, 160, 23, 0.3), /* inner glow */
        0 0 20px rgba(212, 160, 23, 0.15), /* soft golden shadow */
        0 10px 30px rgba(0,0,0,0.8);
    border-radius: 28px;
    padding: 50px 30px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: visible;
}

/* Subtle radial gold glow behind the card */
.luxury-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Thin decorative gold pattern in the corners */
.luxury-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    /* Simulated corner pattern using gradients */
    background: 
        linear-gradient(to right, var(--gold-accent) 20px, transparent 20px) top left / 100% 2px no-repeat,
        linear-gradient(to bottom, var(--gold-accent) 20px, transparent 20px) top left / 2px 100% no-repeat,
        linear-gradient(to left, var(--gold-accent) 20px, transparent 20px) top right / 100% 2px no-repeat,
        linear-gradient(to bottom, var(--gold-accent) 20px, transparent 20px) top right / 2px 100% no-repeat,
        linear-gradient(to right, var(--gold-accent) 20px, transparent 20px) bottom left / 100% 2px no-repeat,
        linear-gradient(to top, var(--gold-accent) 20px, transparent 20px) bottom left / 2px 100% no-repeat,
        linear-gradient(to left, var(--gold-accent) 20px, transparent 20px) bottom right / 100% 2px no-repeat,
        linear-gradient(to top, var(--gold-accent) 20px, transparent 20px) bottom right / 2px 100% no-repeat;
}

/* Animated golden particle shimmer */
.luxury-card .shimmer-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(212, 160, 23, 0.05) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: shimmerMove 6s infinite linear;
    z-index: 1;
    pointer-events: none;
    clip-path: inset(0 0 0 0 round 28px);
}
@keyframes shimmerMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating gold logo badge */
.luxury-card .badge-logo {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background-color: #2b0000;
    border: 3px double var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.5), 0 10px 20px rgba(0,0,0,0.6);
    z-index: 10;
    padding: 8px;
}
.luxury-card .badge-logo img {
    width: 26px;
    height: auto;
    object-fit: contain;
    animation: badgePulseGlow 5s infinite;
}

@keyframes badgePulseGlow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(212, 160, 23, 0.2)); }
    50% { filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.8)); }
}

/* Ensure contents stay above background effects */
.luxury-card .card-header, .luxury-card .menu-list-wrapper {
    position: relative;
    z-index: 2;
}

/* Hover Animation */
.luxury-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        inset 0 0 15px rgba(212, 160, 23, 0.5),
        0 0 35px rgba(212, 160, 23, 0.4),
        0 15px 40px rgba(0,0,0,1);
    border-color: #F1D06E;
}
.luxury-card:hover::after {
    border-color: rgba(241, 208, 110, 0.8);
    box-shadow: inset 0 0 15px rgba(212, 160, 23, 0.2);
}

.luxury-card .card-header {
    text-align: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

/* Title Styling */
.luxury-card .card-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: var(--font-heading-ta);
    
    /* Gold gradient text */
    background: linear-gradient(135deg, #C89B1D, #FFF6D5, #D4A017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Text shadow glow */
    text-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.luxury-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-accent), transparent);
}
.luxury-divider .diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(212, 160, 23, 0.8);
}

/* Scroll Area */
.menu-list-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-accent) rgba(200, 155, 29, 0.05);
}

.menu-list-wrapper::-webkit-scrollbar {
    width: 6px;
}
.menu-list-wrapper::-webkit-scrollbar-track {
    background: rgba(30, 0, 5, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(212, 160, 23, 0.1);
}
.menu-list-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}
.menu-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #F1D06E;
}

.luxury-menu-list {
    display: flex;
    flex-direction: column;
    gap: 28px; /* Increase spacing */
    padding-bottom: 20px;
}

/* List Items */
.luxury-menu-item {
    color: #FFF6D5; /* Warm cream */
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--font-heading-ta);
    padding: 8px 12px;
    border-radius: 8px;
}

/* Subtle hover highlight */
.luxury-menu-item:hover {
    background: rgba(212, 160, 23, 0.1);
    color: #F1D06E;
    transform: translateX(5px);
    box-shadow: inset 0 0 10px rgba(212, 160, 23, 0.05);
}

/* Custom gold diamond bullets */
.luxury-menu-item::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #F1D06E, #C89B1D);
    transform: rotate(45deg);
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(212, 160, 23, 0.6);
    flex-shrink: 0;
}

.luxury-menu-item:hover::before {
    transform: rotate(225deg) scale(1.2);
    box-shadow: 0 0 12px rgba(241, 208, 110, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
    .luxury-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .luxury-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .luxury-card {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .luxury-card .badge-logo {
        width: 48px;
        height: 48px;
    }
    .luxury-card .badge-logo img {
        width: 22px;
    }
    .luxury-card {
        padding: 40px 20px 20px;
        /* Keep glow lighter for performance */
        box-shadow: 
            inset 0 0 5px rgba(212, 160, 23, 0.2),
            0 5px 15px rgba(0,0,0,0.6);
    }
    .luxury-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 
            inset 0 0 10px rgba(212, 160, 23, 0.3),
            0 0 20px rgba(212, 160, 23, 0.2),
            0 10px 25px rgba(0,0,0,0.8);
    }
    /* Touch feedback */
    .luxury-card:active {
        transform: scale(0.98);
    }
    .luxury-card .card-title {
        font-size: 2.2rem;
    }
    .luxury-menu-item {
        font-size: 1.25rem;
    }
    .luxury-card::before, .luxury-card .shimmer-bg {
        /* Reduce effects on mobile */
        display: none;
    }
}



/* ==========================================================================
   Luxury Menu Tabs
   ========================================================================== */
.luxury-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    z-index: 2;
}

.luxury-tab {
    padding: 12px 30px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gold-accent);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.luxury-tab:hover {
    background: rgba(212, 160, 23, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.2);
}

.luxury-tab.active {
    background: #7A0C0C;
    color: var(--text-primary);
    border-color: #7A0C0C;
    box-shadow: 0 6px 20px rgba(122, 12, 12, 0.4);
}

.luxury-card-wrapper {
    display: none;
    width: 100%;
    animation: luxuryFadeIn 0.6s ease-in-out forwards;
}

.luxury-card-wrapper.active {
    display: flex;
    justify-content: center;
}

@keyframes luxuryFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}



/* ==========================================================================
   Luxury Carousel Slider
   ========================================================================== */
.luxury-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px 0;
}

.luxury-carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 calc(50vw - 225px); /* Center 450px card */
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.luxury-carousel-track:active {
    cursor: grabbing;
}

.luxury-carousel-track::-webkit-scrollbar {
    display: none;
}

.luxury-card-wrapper {
    display: block !important; /* Override previous tabs logic */
    flex: 0 0 450px;
    width: 450px;
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.5;
    filter: blur(3px);
    transform: scale(0.88);
    animation: none !important;
}

.luxury-card-wrapper.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    z-index: 10;
}

.luxury-card-wrapper.active .luxury-card {
    animation: strongLuxuryGlow 4s infinite ease-in-out;
}

@keyframes strongLuxuryGlow {
    0% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.4), 0 10px 40px rgba(0,0,0,0.9); }
    50% { box-shadow: 0 0 40px rgba(212, 160, 23, 0.8), 0 0 60px rgba(212, 160, 23, 0.4), 0 10px 40px rgba(0,0,0,1); }
    100% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.4), 0 10px 40px rgba(0,0,0,0.9); }
}

@media (max-width: 768px) {
    .luxury-carousel-track {
        padding-left: calc(50vw - 46vw);
        padding-right: calc(50vw - 46vw);
        gap: 20px;
    }
    .luxury-card-wrapper {
        flex: 0 0 92vw;
        width: 92vw;
    }
}



/* ==========================================================================
   Luxury Tabbed Section
   ========================================================================== */
.luxury-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.luxury-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    width: 100%;
}

.luxury-tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--gold-accent);
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-tab-btn:hover {
    background: rgba(200, 155, 29, 0.15);
    transform: translateY(-3px);
}

.luxury-tab-btn.active {
    background: #7A0C0C;
    border-color: #7A0C0C;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(122, 12, 12, 0.5);
}

.luxury-cards-container {
    position: relative;
    width: 100%;
    min-height: 700px; /* match card height */
}

.luxury-card-pane {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    justify-content: center;
}

.luxury-card-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative; /* to make container take its height */
}

/* Ensure luxury-menu-section is block now since it has container */
.luxury-menu-section {
    display: block;
}

/* ==========================================================================
   Form Validations & Success Popup
   ========================================================================== */
.validation-group { position: relative; margin-bottom: 25px; }
.validation-group input, .validation-group select, .validation-group textarea {
    transition: all 0.3s ease;
}
.validation-group input:focus, .validation-group select:focus, .validation-group textarea:focus {
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
    border-color: var(--gold-accent);
}
.validation-group.is-valid input, .validation-group.is-valid select, .validation-group.is-valid textarea {
    border-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.2);
}
.validation-group.is-invalid input, .validation-group.is-invalid select, .validation-group.is-invalid textarea {
    border-color: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.2);
}
.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    position: absolute;
    bottom: -20px;
    left: 5px;
    display: none;
    font-weight: 500;
}
.validation-group.is-invalid .error-message {
    display: block;
    animation: fadeInError 0.3s ease;
}
@keyframes fadeInError { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* Submit Button & Loader */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #555;
    box-shadow: none;
    transform: none !important;
}
.submit-btn:disabled:hover { transform: none; background: #555; }

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.shake { animation: shake 0.5s ease-in-out; }

/* Success Popup */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(145deg, #220707, #1B0505);
    border: 2px solid var(--gold-accent);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.success-icon {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}
.success-popup h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.success-popup p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.close-popup-btn {
    background: var(--gold-accent);
    color: #220707;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-popup-btn:hover {
    background: var(--gold-highlight);
    transform: translateY(-2px);
}


.luxury-scroll-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 20px 0 40px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.luxury-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.luxury-scroll-wrapper .luxury-card {
    flex: 0 0 450px;
    scroll-snap-align: center;
    margin: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-scroll-wrapper .luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.4);
}

@media (max-width: 1024px) {
    .luxury-scroll-wrapper {
        padding-left: calc(50vw - 225px);
        padding-right: calc(50vw - 225px);
    }
}

@media (max-width: 768px) {
    .luxury-scroll-wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .luxury-scroll-wrapper .luxury-card {
        flex: 0 0 92vw;
    }
}

/* ==========================================================================
   Cinematic Animations & Reveal Classes
   ========================================================================== */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-stagger.active > * { opacity: 1; transform: translateY(0); }

/* Stagger Delay Generator (for up to 12 children) */
.reveal-stagger.active > :nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > :nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > :nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > :nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > :nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > :nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.active > :nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.active > :nth-child(8) { transition-delay: 0.8s; }
.reveal-stagger.active > :nth-child(9) { transition-delay: 0.9s; }
.reveal-stagger.active > :nth-child(10) { transition-delay: 1.0s; }
.reveal-stagger.active > :nth-child(11) { transition-delay: 1.1s; }
.reveal-stagger.active > :nth-child(12) { transition-delay: 1.2s; }

/* Existing reveal fallback */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Menu Hover Scale & Shimmer */
.menu-item, .gallery-item {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}
.menu-item:hover, .gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.2);
    border-color: var(--gold-highlight);
}

/* Button Gold Shine Sweep */
.btn-gold-gradient, .btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-gold-gradient::before, .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;}
.validation-group { position: relative; margin-bottom: 25px; }
.validation-group input, .validation-group select, .validation-group textarea {
    transition: all 0.3s ease;
}
.validation-group input:focus, .validation-group select:focus, .validation-group textarea:focus {
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
    border-color: var(--gold-accent);
}
.validation-group.is-valid input, .validation-group.is-valid select, .validation-group.is-valid textarea {
    border-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.2);
}
.validation-group.is-invalid input, .validation-group.is-invalid select, .validation-group.is-invalid textarea {
    border-color: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.2);
}
.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    position: absolute;
    bottom: -20px;
    left: 5px;
    display: none;
    font-weight: 500;
}
.validation-group.is-invalid .error-message {
    display: block;
    animation: fadeInError 0.3s ease;
}
@keyframes fadeInError { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* Submit Button & Loader */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #555;
    box-shadow: none;
    transform: none !important;
}
.submit-btn:disabled:hover { transform: none; background: #555; }

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.shake { animation: shake 0.5s ease-in-out; }

/* Success Popup */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(145deg, #220707, #1B0505);
    border: 2px solid var(--gold-accent);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.success-icon {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}
.success-popup h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.success-popup p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.close-popup-btn {
    background: var(--gold-accent);
    color: #220707;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-popup-btn:hover {
    background: var(--gold-highlight);
    transform: translateY(-2px);
}


.luxury-scroll-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 20px 0 40px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.luxury-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.luxury-scroll-wrapper .luxury-card {
    flex: 0 0 450px;
    scroll-snap-align: center;
    margin: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-scroll-wrapper .luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.4);
}

@media (max-width: 1024px) {
    .luxury-scroll-wrapper {
        padding-left: calc(50vw - 225px);
        padding-right: calc(50vw - 225px);
    }
}

@media (max-width: 768px) {
    .luxury-scroll-wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .luxury-scroll-wrapper .luxury-card {
        flex: 0 0 92vw;
    }
}

/* ==========================================================================
   Cinematic Animations & Reveal Classes
   ========================================================================== */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-stagger.active > * { opacity: 1; transform: translateY(0); }

/* Stagger Delay Generator (for up to 12 children) */
.reveal-stagger.active > :nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > :nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > :nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > :nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > :nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > :nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.active > :nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.active > :nth-child(8) { transition-delay: 0.8s; }
.reveal-stagger.active > :nth-child(9) { transition-delay: 0.9s; }
.reveal-stagger.active > :nth-child(10) { transition-delay: 1.0s; }
.reveal-stagger.active > :nth-child(11) { transition-delay: 1.1s; }
.reveal-stagger.active > :nth-child(12) { transition-delay: 1.2s; }

/* Existing reveal fallback */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Menu Hover Scale & Shimmer */
.menu-item, .gallery-item {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}
.menu-item:hover, .gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.2);
    border-color: var(--gold-highlight);
}

/* Button Gold Shine Sweep */
.btn-gold-gradient, .btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-gold-gradient::before, .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: goldShineSweep 5s infinite;
}
@keyframes goldShineSweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* ==========================================================================
   Premium Logo Animations & Classes
   ========================================================================== */

@keyframes float-subtle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.4)); }
    50% { filter: drop-shadow(0 0 15px rgba(212, 160, 23, 0.8)); }
}

@keyframes fade-down {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes cinematic-scale {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.6)); }
}

/* Base logo styles to prevent distortion */
.brand-img {
    object-fit: contain;
    max-width: 15vw;
    height: auto;
}

/* 1. Navbar Logo */
.brand-logo-nav {
    width: 52px !important;
    height: auto !important;
    object-fit: contain;
    position: static !important;
    transform: none !important;
    animation: none !important;
    float: none !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
}
@media (max-width: 768px) {
    body { padding-top: 70px; }
    #navbar { height: 70px; }
    .brand-logo-nav { width: 42px !important; height: auto !important; }
}

@media (max-width:768px){
    #navbar{
        height:70px;
    }

    .brand-img img{
        width:42px !important;
        height:42px !important;
    }

    .logo-ta{
        font-size:1rem;
    }

    .logo-en{
        font-size:0.7rem;
    }

    .nav-links{
        gap:18px;
    }

    .nav-book{
        height:42px;
        padding:0 16px;
        font-size:0.8rem;
    }
} 

/* ==========================================================================
   Logo & Loader Additions
   ========================================================================== */
.mobile-only { display: none; }

.inline-logo-badge {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
    display: inline-block;
    animation: subtleGlow 3s infinite alternate;
}
.modal-badge { width: 40px; height: 40px; }
.footer-badge { width: 56px; height: 56px; margin: 0; }
.hero-badge { width: 64px; height: 64px; margin-bottom: 15px; }

@keyframes subtleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(200, 155, 29, 0.2)) translateY(0px); }
    100% { filter: drop-shadow(0 0 15px rgba(200, 155, 29, 0.6)) translateY(-3px); }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0101;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: pulseLoader 1.5s infinite alternate;
}
@keyframes pulseLoader {
    0% { transform: scale(0.9); filter: drop-shadow(0 0 10px rgba(200, 155, 29, 0.3)); opacity: 0.8; }
    100% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(200, 155, 29, 0.8)); opacity: 1; }
}

/* --- MENU SECTION GRID FIX --- */
.luxury-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    padding: 20px 0 40px 0;
}
.luxury-grid-wrapper::-webkit-scrollbar {
    width: 8px;
}
.luxury-grid-wrapper::-webkit-scrollbar-track {
    background: rgba(200, 155, 29, 0.05);
    border-radius: 10px;
}
.luxury-grid-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .luxury-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .luxury-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

.luxury-card-pane {
    display: none !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: fadeIn 0.5s ease-in-out;
}
.luxury-card-pane.active {
    display: block !important;
}

.luxury-grid-wrapper .luxury-card {
    width: 100%;
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    margin: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    animation: none;
    display: flex;
    flex-direction: column;
}

.luxury-grid-wrapper .luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.5), 0 10px 30px rgba(0,0,0,0.8);
    border-color: var(--gold-highlight);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE HERO IMPROVEMENTS --- */
@media (max-width: 768px) {
    .hero-title-ta {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    .hero-content {
        text-align: center;
        padding-top: 0px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn-outline, .hero-buttons .btn-gold-gradient {
        width: 100%;
        max-width: 320px;
        margin-bottom: 15px;
    }
}

@keyframes pulse-hero-btn {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(200, 155, 29, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 30px rgba(200, 155, 29, 0.8); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(200, 155, 29, 0.4); }
}

.hero-buttons .btn-gold-gradient {
    animation: pulse-hero-btn 4s infinite ease-in-out;
}

.hero-title-ta, .hero-subtitle-en {
    animation: fade-down 1s ease forwards;
}

/* --- MOBILE PERFORMANCE --- */
@media (max-width: 768px) {
    .glassmorphism {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(18, 3, 3, 0.95) !important;
    }
    .soft-shadow, .hover-lift {
        box-shadow: none !important;
    }
    .hover-lift:hover {
        transform: translateY(-4px) !important;
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }
}

@media (max-width: 768px) {
    .luxury-grid-wrapper .luxury-card {
        margin: 0 auto;
    }
}

/* ==========================================================================
   Premium Section Backgrounds
   ========================================================================== */

/* 1. About Section */
#about {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1920&q=80') center/cover fixed !important;
}
#about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43, 0, 0, 0.85); /* Dark maroon overlay */
    z-index: 0;
    pointer-events: none;
}
/* Subtle floating particles in About */
#about::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: floatingParticles 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes floatingParticles {
    0% { background-position: 0 0; }
    100% { background-position: 120px 120px; }
}
#about .container {
    position: relative;
    z-index: 1;
}

/* 2. Services Section */
#services .parallax-bg {
    background-image: url('./image/cor.jpg') !important;
}
#services .parallax-overlay {
    background: rgba(15, 5, 5, 0.7) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: inset 0 0 100px rgba(212, 160, 23, 0.15) !important;
}

/* 3. Menu Section */
.luxury-menu-section {
    background: #050505 !important;
}
.luxury-menu-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(5,5,5,0.88), rgba(5,5,5,0.92)), url('./image/ourback.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}
.luxury-menu-section > .container {
    position: relative;
    z-index: 1;
}

/* 4. Gallery Section */
#gallery {
    position: relative;
    overflow: hidden;
    background: none !important;
}
#gallery::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%;
    background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1920&q=80') center/cover;
    animation: kenBurnsZoom 25s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}
@keyframes kenBurnsZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
#gallery::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 5, 5, 0.85); /* Dark overlay */
    z-index: 0;
    pointer-events: none;
}
#gallery .container {
    position: relative;
    z-index: 1;
}

/* 5. FAQ Section */
#faq {
    position: relative;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center/cover fixed !important;
}
#faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 10, 10, 0.90);
    z-index: 0;
    pointer-events: none;
}
#faq .container {
    position: relative;
    z-index: 1;
}

/* 6. Contact Section */
#contact {
    position: relative;
    background: url('https://images.unsplash.com/photo-1466978913421-bac2e5922311?auto=format&fit=crop&w=1920&q=80') center/cover fixed !important;
}
#contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 5, 5, 0.85);
    z-index: 0;
    pointer-events: none;
}
#contact .container {
    position: relative;
    z-index: 1;
}

/* Viewport Fade-in Animations */
#about::before, #about::after,
#services .parallax-bg, #services .parallax-overlay,
.luxury-menu-section::before,
#gallery::before, #gallery::after,
#faq::before,
#contact::before {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

/* Trigger opacity when child element is active via JS intersection observer */
#about:has(.active)::before, #about:has(.active)::after,
#services:has(.active) .parallax-bg, #services:has(.active) .parallax-overlay,
.luxury-menu-section:has(.active)::before,
#gallery:has(.active)::before, #gallery:has(.active)::after,
#faq:has(.active)::before,
#contact:has(.active)::before {
    opacity: 1;
}
@keyframes pulse-hero-btn {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(200, 155, 29, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 30px rgba(200, 155, 29, 0.8); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(200, 155, 29, 0.4); }
}

.hero-buttons .btn-gold-gradient {
    animation: pulse-hero-btn 4s infinite ease-in-out;
}

.hero-title-ta, .hero-subtitle-en {
    animation: fade-down 1s ease forwards;
}

/* --- MOBILE PERFORMANCE --- */
@media (max-width: 768px) {
    .glassmorphism {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(18, 3, 3, 0.95) !important;
    }
    .soft-shadow, .hover-lift {
        box-shadow: none !important;
    }
    .hover-lift:hover {
        transform: translateY(-4px) !important;
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }
}

@media (max-width: 768px) {
    .luxury-grid-wrapper .luxury-card {
        margin: 0 auto;
    }
}

/* ==========================================================================
   Premium Section Backgrounds
   ========================================================================== */

/* 1. About Section */
#about {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1920&q=80') center/cover fixed !important;
}
#about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43, 0, 0, 0.85); /* Dark maroon overlay */
    z-index: 0;
    pointer-events: none;
}
/* Subtle floating particles in About */
#about::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: floatingParticles 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes floatingParticles {
    0% { background-position: 0 0; }
    100% { background-position: 120px 120px; }
}
#about .container {
    position: relative;
    z-index: 1;
}

/* 2. Services Section */
#services .parallax-bg {
    background-image: url('./image/conback.jpg') !important;
}
#services .parallax-overlay {
    background: rgba(15, 5, 5, 0.7) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: inset 0 0 100px rgba(212, 160, 23, 0.15) !important;
}

/* 3. Menu Section */
.luxury-menu-section {
    position: relative;
    overflow: hidden;
    background: #1a0000 !important;
}
.luxury-menu-section::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%;
    /* Premium South Indian / Buffet Food background */
    background: url('https://images.unsplash.com/photo-1626776876729-bab4369a5a5a?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    animation: kenBurnsMenu 25s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}
.luxury-menu-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43, 0, 0, 0.70); /* Dark maroon overlay for readability */
    z-index: 0;
    pointer-events: none;
}
@keyframes kenBurnsMenu {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.luxury-menu-section > .container {
    position: relative;
    z-index: 2; /* Keeps cards above overlay */
}

/* 4. Gallery Section */
#gallery {
    position: relative;
    overflow: hidden;
    background: none !important;
}
#gallery::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%;
    background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1920&q=80') center/cover;
    animation: kenBurnsZoom 25s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}
@keyframes kenBurnsZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
#gallery::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 5, 5, 0.85); /* Dark overlay */
    z-index: 0;
    pointer-events: none;
}
#gallery .container {
    position: relative;
    z-index: 1;
}

/* 5. FAQ Section */
#faq {
    position: relative;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center/cover fixed !important;
}
#faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 10, 10, 0.90);
    z-index: 0;
    pointer-events: none;
}
#faq .container {
    position: relative;
    z-index: 1;
}

/* 6. Contact Section */
#contact {
    position: relative;
    background: url('https://images.unsplash.com/photo-1466978913421-bac2e5922311?auto=format&fit=crop&w=1920&q=80') center/cover fixed !important;
}
#contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 5, 5, 0.85);
    z-index: 0;
    pointer-events: none;
}
#contact .container {
    position: relative;
    z-index: 1;
}

/* Viewport Fade-in Animations */
#about::before, #about::after,
#services .parallax-bg, #services .parallax-overlay,
.luxury-menu-section::before, .luxury-menu-section::after,
#gallery::before, #gallery::after,
#faq::before,
#contact::before {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

/* Trigger opacity when child element is active via JS intersection observer */
#about:has(.active)::before, #about:has(.active)::after,
#services:has(.active) .parallax-bg, #services:has(.active) .parallax-overlay,
.luxury-menu-section:has(.active)::before, .luxury-menu-section:has(.active):after,
#gallery:has(.active)::before, #gallery:has(.active)::after,
#faq:has(.active)::before,
#contact:has(.active)::before {
    opacity: 1;
}
/* Maintain correct opacity for particles */
#about:has(.active)::after {
    opacity: 0.4;
}

/* Mobile Background Fallbacks */
@media (max-width: 768px) {
    #about, #faq, #contact {
        background-attachment: scroll !important;
    }
    .luxury-menu-section::before {
        animation: none !important; /* Disable heavy zoom */
        top: 0; left: 0; right: 0; bottom: 0; /* Reset boundaries */
    }
}

/* ==========================================================================
   Premium Navbar
   ========================================================================== */
.premium-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 78px;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(43, 0, 0, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 30px rgba(212, 160, 23, 0.2) !important;
    border-bottom: none !important;
}

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

.nav-bottom-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    animation: goldBorderGlow 4s infinite alternate;
}
@keyframes goldBorderGlow {
    0% { opacity: 0.5; box-shadow: 0 0 5px rgba(212, 160, 23, 0.5); }
    100% { opacity: 1; box-shadow: 0 0 15px rgba(212, 160, 23, 1); }
}

.logo-glow {
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.6));
}

.premium-nav-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex: 1;
}

.premium-nav-links li a {
    position: relative;
    color: var(--cream) !important;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Elegant hover effect */
.premium-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px var(--gold-accent);
}

.premium-nav-links li a:hover,
.premium-nav-links li a.active {
    color: var(--gold-accent) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
}

.premium-nav-links li a:hover::after,
.premium-nav-links li a.active::after {
    width: 100%;
}

/* Book Button */
.btn-premium-book {
    position: relative;
    background: linear-gradient(135deg, #F1D06E, #C89B1D);
    color: #1a0000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-premium-book span {
    position: relative;
    z-index: 2;
}

.btn-premium-book::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: shineMove 4s infinite;
    z-index: 1;
}

@keyframes shineMove {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-premium-book:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.6);
}

/* ==========================================================================
   Premium Footer
   ========================================================================== */
.premium-footer {
    position: relative;
    background: linear-gradient(180deg, #1f0303 0%, #0a0000 100%);
    color: var(--cream);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-gold-divider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), #FFF6D5, var(--gold-accent), transparent);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.8);
}

.footer-particles-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: floatingParticles 40s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.glass-col {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-col:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, 0.3);
}

.footer-logo-glow {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.7));
}

.footer-heading {
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0; width: 40px; height: 2px;
    background: var(--gold-accent);
    box-shadow: 0 0 5px var(--gold-accent);
}

.footer-links-list {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: var(--cream);
    transition: all 0.3s ease;
    display: inline-block;
}

/* Link hover animation */
.footer-links-list a:hover {
    color: var(--gold-accent);
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(212, 160, 23, 0.5);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.gold-icon {
    color: var(--gold-accent);
    margin-top: 5px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.4));
}

.contact-item a {
    color: var(--cream);
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: var(--gold-accent);
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid #25D366;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-wa-btn:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-accent);
    color: #1a0000;
    box-shadow: 0 0 15px var(--gold-accent);
    transform: translateY(-3px);
}

.footer-copyright {
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    padding: 25px 0;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,246,213,0.7);
}

.pulse-heart {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); text-shadow: 0 0 10px var(--gold-accent); }
    30% { transform: scale(1); }
    45% { transform: scale(1.3); text-shadow: 0 0 10px var(--gold-accent); }
    60% { transform: scale(1); }
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .premium-nav-links {
        display: none;
    }
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .premium-nav {
        height: 70px;
    }
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    #nav-book-btn-desktop {
        display: none;
    }
}


/* --- UNIFORM MENU CARD TYPOGRAPHY --- */
/* Applied to ensure all menu card titles and food items are perfectly uniform */
/* Card headings */
.luxury-card .card-title,
.luxury-card .card-header .card-title,
.card-header .card-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

/* Food items */
.luxury-menu-item,
.luxury-menu-list .luxury-menu-item,
ul.luxury-menu-list li.luxury-menu-item {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

/* Enforce uniform bullet spacing for all items */
.luxury-menu-item::before,
.luxury-menu-list .luxury-menu-item::before {
    margin-right: 15px !important;
}

/* ==========================================================================
   EXCLUSIVE MOBILE FIXES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* GLOBAL MOBILE FIX */
    body {
        overflow-x: hidden !important;
        padding-bottom: 56px !important;
    }
    * {
        max-width: 100vw;
    }
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    section, .section-padding {
        padding: 40px 0 !important; 
    }

    /* MOBILE NAVBAR FIX */
    .premium-nav, #navbar {
        height: 64px !important;
    }
    .brand-img.brand-logo-nav {
        width: 28px !important;
        height: 28px !important;
    }
    .brand-text {
        justify-content: center !important;
    }
    .logo-ta {
        font-size: 14px !important;
        margin: 0 !important;
    }
    .logo-en {
        font-size: 11px !important;
        margin-top: 0 !important;
    }
    .logo a {
        align-items: center !important;
    }
    
    .nav-links, .premium-nav-links {
        display: none !important; 
    }
    
    .nav-links.active, .premium-nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        height: calc(100vh - 64px) !important;
        background: #2b0000 !important; 
        border: 2px solid var(--gold-accent) !important;
        border-top: none !important;
        flex-direction: column !important;
        padding: 20px !important;
        transform: translateY(-100%);
        animation: slideDownMenu 0.3s forwards !important;
        z-index: 999 !important;
        box-shadow: none !important;
    }
    @keyframes slideDownMenu {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }
    
    .nav-links.active li, .premium-nav-links.active li {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .nav-links.active li a, .premium-nav-links.active li a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 48px !important;
        font-size: 18px !important;
        color: var(--text-primary) !important;
        width: 100% !important;
        border-bottom: none !important;
    }
    
    .nav-links.active li a::after, .premium-nav-links.active li a::after {
        display: none !important;
    }
    
    .btn-premium-book, .nav-book, #nav-book-btn {
        display: none !important;
    }
    
    .nav-links.active .mobile-only .btn-premium-book,
    .premium-nav-links.active .mobile-only .btn-premium-book {
        display: flex !important;
        margin-top: 10px !important;
        height: 48px !important;
        font-size: 16px !important;
    }

    /* HOME PAGE MOBILE */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        padding-top: 64px !important;
    }
    .hero-title-ta {
        font-size: 34px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    .hero-subtitle-en {
        font-size: 16px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .hero-buttons a {
        width: 100% !important;
    }

    /* MENU PAGE MOBILE */
    .luxury-menu-section {
        width: 100% !important;
        padding-top: 40px !important;
        overflow: hidden !important;
    }
    .luxury-menu-container {
        width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .menu-tabs, .luxury-tabs-wrapper {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }
    .tab-btn, .luxury-tab-btn {
        width: 100% !important;
        height: 52px !important;
        margin-bottom: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .luxury-cards-container {
        display: block !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        height: auto !important;
        transform: none !important;
    }
    .luxury-card-pane {
        display: none !important;
        width: 100% !important;
        position: absolute !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .luxury-card-pane.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        height: auto !important;
        transform: none !important;
    }
    .luxury-grid-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
    }
    .luxury-card,
    .luxury-grid-wrapper .luxury-card {
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        margin: 0 auto 20px auto !important;
        padding: 30px 20px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        transform: none !important;
    }
    .luxury-card .card-title,
    .luxury-card .card-header .card-title {
        font-size: 26px !important;
    }
    .luxury-menu-item,
    .luxury-menu-list .luxury-menu-item {
        font-size: 16px !important;
    }
    .menu-list-wrapper {
        overflow-y: auto !important;
        max-height: 350px !important; 
        overflow-x: hidden !important;
    }

    /* SERVICES PAGE MOBILE */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .service-card {
        border-radius: 12px !important;
    }
    .service-img-wrapper img {
        width: 100% !important;
        border-radius: 12px !important;
    }

    /* ABOUT, GALLERY, CONTACT MOBILE */
    .about-content, .gallery-grid, .contact-wrapper, .footer-content-grid {
        grid-template-columns: 1fr !important;
    }
    .gallery-item img {
        width: 100% !important;
    }
    .form-row {
        grid-template-columns: 1fr !important;
    }
    .contact-form.inner-form {
        width: 100% !important;
        padding: 16px !important;
    }
    input, textarea, select {
        height: 48px !important;
    }
    textarea {
        height: 120px !important; 
    }

    /* FOOTER MOBILE */
    .footer-content-grid, .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 24px !important;
    }
    .footer-links ul {
        text-align: center !important;
    }
    .contact-item {
        justify-content: center !important;
    }
    .footer-heading::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* WHATSAPP & CALL BUTTONS */
    .mobile-bottom-cta {
        height: 56px !important;
        display: flex !important;
    }
    .m-cta-btn {
        height: 56px !important;
        flex: 1 !important; 
        padding: 0 !important;
    }

    /* ANIMATION */
    .hover-lift:hover {
        transform: none !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-stagger, .reveal-up {
        transform: translateY(10px) !important;
        transition: opacity 0.4s ease, transform 0.4s ease !important;
    }
    .reveal.active, .reveal-left.active, .reveal-right.active, .reveal-stagger.active, .reveal-up.active {
        transform: translateY(0) !important;
    }
    .animated-border {
        animation: none !important;
        background: var(--gold-accent) !important;
    }
}
