/* Reset cursor styles */

/* Booking Confirmation Message */
.booking-confirmation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.booking-confirmation.show {
    display: flex;
}

.confirmation-content {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border: 2px solid var(--accent);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.confirmation-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.confirmation-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.confirmation-content .icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.confirmation-content .close-confirmation {
    background-color: var(--accent);
    color: #000;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirmation-content .close-confirmation:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
:root {
    --accent: #D4AF37;
    --accent-dark: #B38728;
    --dark-bg: #000000;
    --light-bg: #1a1a1a;
    --card-bg: rgba(0, 0, 0, 0.7);
    --text-light: #ffffff;
    --text-dark: #ffffff;
}

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

@import url('https://fonts.googleapis.com/css2?family=Tai+Heritage+Pro:wght@400;700&display=swap');

h1, h2, h3 {
    margin: 15px auto;
    margin-left: 0;
    font-weight: bold;
    text-align: center;
    font-size: 25px;
    font-family: 'Tai Heritage Pro', serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(212,175,55,1) 0%, rgba(255,215,0,1) 37%, rgba(184,134,11,1) 49%, rgba(255,215,0,1) 61%, rgba(212,175,55,1) 100%);
    letter-spacing: 5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 120%;
    animation: shine-anime 3s linear infinite;
    animation-fill-mode: both;
}

@keyframes shine-anime {
    0% { background-position-x: 500%; }
    100% { background-position-x: -500%; }
}

h1 { 
    font-size: 3.5rem; 
    text-align: center;
}
h2 { 
    font-size: 2.8rem; 
    text-align: center;
}
h3 { font-size: 2.2rem; }
h4, h5, h6 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

h4 { font-size: 1.8rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.2rem; }

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    h4 { font-size: 1.5rem; }
    h5 { font-size: 1.3rem; }
    h6 { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.6rem; }
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

a, button, .nav-toggle, input[type="submit"], .service-option label {
    cursor: pointer !important;
}

input, textarea, select {
    cursor: text;
}

/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tai Heritage Pro', serif;
    line-height: 1.6;
    color: silver;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-content, .services-content, .reviews-content, .faq-content, .contact-content {
    max-width: 90vw;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(0,0,0,0.6), rgba(10,10,10,0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(0,0,0,0.6), rgba(10,10,10,0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-heading-box {
    background-color: #000;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-heading {
    font-size: 3rem;
    margin: 0;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: 3px;
    font-weight: 700;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .about-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    .about-heading-box {
        padding: 1.5rem;
    }
    .about-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-heading {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    .about-heading-box {
        padding: 1rem;
    }
    .about-description {
        font-size: 1rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 1.2rem 2rem;
    z-index: 2147483646;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    height: 100px;
}

.logo {
    height: 80px; /* Adjusted height for perfect centering */
    margin-left: 0;
    margin-top: 1px; /* Centered vertically in the 80px navbar */
    transition: all 0.3s ease;
    margin-left: 10%;
    position: relative;
    z-index: 2147483647;
}

@media (max-width: 1240px) {
    .logo {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    /* Reduce navbar height by 10% */
    .navbar {
        height: 90px; /* Reduced from 100px by 10% */
        padding: 1rem 1.5rem;
    }
    
    .logo {
        height: 50px; /* Reduced from 55px */
        margin-left: 0;
        margin-top: 3px;
    }
    
    /* Adjust billboard position to match the new navbar height */
    .billboard {
        top: 90px; /* Matches the new navbar height */
    }
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    z-index: 2147483647;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2147483647;
}

.nav-links a:hover, .nav-links a.active {
    color: #FCF6BA;
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    animation: animate 18s linear infinite;
}

.book-now {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    color: #000000 !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    animation: animate 18s linear infinite;
}

.book-now:hover {
    animation: inout 1.8s ease infinite, animate 18s linear infinite;
}

@keyframes animate {
    0% { background-position: 0%; }
    100% { background-position: 400%; }
}

@keyframes inout {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(255,255,255,0.15);
        -moz-box-shadow: 0 0 0 0px rgba(255,255,255,0.15);
        box-shadow: 0 0 0 0px rgba(255,255,255,0.15);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255,255,255,0);
        -moz-box-shadow: 0 0 0 20px rgba(255,255,255,0);
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }
}

.nav-toggle {
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle i {
    pointer-events: none; /* This ensures the click event goes to the parent element */
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 132px; /* navbar height (80px) + billboard height (32px) */
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 2.5rem;
        padding-bottom: 1.2rem;
        letter-spacing: 1px;
    }
    
    .section-title::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .section-title {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .section-title::after {
        width: 50px;
    }
}

#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    width: 100%;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    align-self: center;
    margin: 0 auto 1rem;
    display: inline-block;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 6s linear infinite, fadeInDown 1s ease;
}

@keyframes goldShine {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease 1s both, animate 18s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    animation: inout 1.8s ease infinite, animate 18s linear infinite;
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 95%;
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(0,0,0,0.6), rgba(10,10,10,0.8));
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature i {
    font-size: 3rem;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.feature h3 {
    font-size: 1.5rem;
   
}
@media (max-width: 992px) {
    .feature {
        padding: 2rem;
    }
    
    .feature i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 768px) {
    .feature {
        padding: 1.8rem;
    }
    
    .feature i {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .feature:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 1.5rem;
    }
    
    .feature i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
}

/* Services Section */
.services {
    display: none;
}

.service-card {
    display: none;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}
.about h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #fff;
}
.contact a {
    
    color: #fff;
    text-decoration: none;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-size: 1.5rem;
    animation: animate 18s linear infinite;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    color: #000000;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: animate 18s linear infinite;
}

.submit-btn:hover {
    animation: inout 1.8s ease infinite, animate 18s linear infinite;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25D366;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    width: 100%;
    text-align: center;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* Form Messages */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

.success-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.7));
    color: white;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.error-message {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(244, 67, 54, 0.7));
    color: white;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a, #000000);
    color: #F5F1E3;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer-brand img {
    height: 60px;
   
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #D4AF37;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 18s linear infinite;
}

.footer-links a:hover {
    color: #ff4d4d;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-icons a {
    color: #D4AF37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    text-decoration: none;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icons a:hover {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    animation: animate 18s linear infinite;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-brand {
        margin-bottom: 0;
    }
    
    .footer-links ul {
        display: flex
;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-content: center;
        align-items: center;
        padding-left: 0%;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.98));
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
        background: transparent;
        border: none;
    }

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .nav-links a.active::after {
        bottom: -2px;
    }
    
    .nav-links li:last-child {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links .book-now {
        width: auto;
        margin-top: 0.5rem;
        display: inline-block !important;
        padding: 0.8rem 2rem;
        background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F) !important;
        background-size: 400% !important;
        color: #000000 !important;
        border-radius: 25px;
        visibility: visible;
        opacity: 1;
        z-index: 10;
        text-align: center;
    }
    
    /* Debug helper */
    body.menu-debug:after {
        content: 'Menu Toggled';
        position: fixed;
        bottom: 10px;
        right: 10px;
        background: red;
        color: white;
        padding: 5px 10px;
        z-index: 9999;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin: 0 auto 1rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        margin: 0 auto 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .feature {
        padding: 1.5rem;
    }
}

/* Billboard */
.billboard {
    background: linear-gradient(90deg, #000000, #1a1a1a);
    color: #D4AF37;
    padding: 0.5rem 0;
    position: fixed;
    top: 100px;
    width: 100%;
    z-index: 2147483645;
    overflow: hidden;
    white-space: nowrap;
    height: 42px;
    box-sizing: border-box;
    border-bottom: 1px solid #D4AF37;
}

.billboard-text {
    display: inline-block;
    animation: scrollText 20s linear infinite;
    padding-right: 50px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2147483647;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 480px) {
    .billboard-text {
        font-size: 0.8rem;
    }
    
    .billboard {
        height: 32px;
        top: 90px;
        
        
    }
    
    .hero {
        margin-top: 90px; /* navbar height (80px) + billboard height (28px) */
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    color: #000000;
    animation: animate 18s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.tertiary {
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    border: 2px solid #BF953F;
    position: relative;
    overflow: hidden;
}

.cta-button.tertiary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button.tertiary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    animation: inout 1.8s ease infinite, animate 18s linear infinite;
}

.cta-button.tertiary:hover {
    color: #FCF6BA;
    border-color: #FCF6BA;
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.5);
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
}

/* Featured Gallery */
.featured-gallery {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.featured-gallery h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-gallery-btn {
    display: none;
}

/* Gallery Page Styles */
.gallery-header {
    padding-top: calc(12rem + 102px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.gallery-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-filters {
    padding: 2rem 0;
    background: #000;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-filter button {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    animation: animate 18s linear infinite;
    color: #000000;
    border-color: transparent;
}

/* Video Gallery */
.video-gallery {
    padding: 8rem 0;
    background: #000;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.video-item {
    width: 100%;
    margin-bottom: 1.5rem;
}

.video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: animate 18s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-button i {
    color: #000000;
    font-size: 1.5rem;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    animation: inout 1.8s ease infinite, animate 18s linear infinite;
}

.video-item h3 {
    margin-top: 1rem;
    color: white;
}

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

.modal-content {
    background-color: #000;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #D4AF37;
}

.modal-video {
    width: 100%;
    border-radius: 10px;
}

/* Text Center Helper */
.text-center {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }

    .gallery-filter button {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 1.5rem;
    }
    
    .gallery-item {
        margin: 0;
        width: 100%;
    }

    .video-item {
        margin-bottom: 1rem;
    }

    .modal-content {
        width: 95%;
        padding: 1rem;
        margin: 10% auto;
    }
    
    .modal-video {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .gallery-header h1 {
        font-size: 2.5rem;
    }

    .gallery-item {
        margin: 0 1rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    display: none;
}

.why-choose-grid {
    display: none;
}

.why-choose-item {
    display: none;
}

/* What We Offer Section */
.what-we-offer {
    padding: 8rem 0;
    background: #000;
    position: relative;
}

.what-we-offer h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    width: 100%;
    padding: 0 1rem;
}

.offer-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-item:hover .offer-image img {
    transform: scale(1.1);
}

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

.offer-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.offer-content p {
    color: #ccc;
}

.more-services {
    display: none;
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.map-container iframe {
    width: 100%;
    border-radius: 15px;
    max-width: 100%;
    border: 0;
}

.directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7);
    color: #000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(191, 149, 63, 0.3);
    width: 100%;
    text-align: center;
}

.directions-btn i {
    font-size: 1.2rem;
    color: #000;
}

.directions-btn span {
    color: #000;
    font-weight: 500;
}

.directions-btn:hover {
    transform: translate(-50%, -3px);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.5);
    background: linear-gradient(45deg, #D4AF37, #FCF6BA, #D4AF37, #FCF6BA);
}

/* Contact Section Responsive Adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        margin-bottom: 2rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Enhanced Scroll Animations */
[data-aos="fade-right"] {
    transform: translateX(-100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-left"] {
    transform: translateX(100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    transform: translateX(0) translateY(0);
    opacity: 1;
}

/* Remove these unused style blocks */
.services, .service-card, .why-choose-us, .why-choose-grid, .why-choose-item, .more-services, .view-gallery-btn, .cta-button.secondary {
    display: none;
}

/* Update CTA buttons gap */
.cta-buttons {
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        gap: 1rem;
    }
}

/* Booking Modal */
.date-selection {
    margin-bottom: 30px;
}

.date-picker {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1rem;
    margin-top: 10px;
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.booking-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 150px auto;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(191, 149, 63, 0.3);
    border: 1px solid rgba(191, 149, 63, 0.2);
}

/* Time Slot Selection */
.select-time-slot {
    margin: 1.5rem 0;
}

.select-time-slot h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 1.5rem;
}

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

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

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
    min-width: 100px;
}

.time-slot:hover {
    background: rgba(191, 149, 63, 0.1);
    border-color: #D4AF37;
}

.time-slot.selected {
    background: rgba(191, 149, 63, 0.2);
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
}

.time-note {
    margin-top: 10px;
    color: #ffcc00;
    font-size: 0.9rem;
    text-align: center;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.time-note i {
    margin-right: 5px;
}

.time-slot[data-no-lounge="true"] {
    position: relative;
}

.time-slot[data-no-lounge="true"]::after {
    content: "No Lounge";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff5252;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

/* Theater Options */
.theater-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

@media (max-width: 768px) {
    .theater-options {
        grid-template-columns: 1fr;
    }
}

.theater-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 149, 63, 0.1);
    cursor: pointer;
    position: relative;
}

.theater-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.2);
}

.theater-option.selected {
    border: 2px solid #D4AF37;
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.3);
}

.theater-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.theater-image {
    height: 180px;
    overflow: hidden;
}

.theater-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theater-option:hover .theater-image img {
    transform: scale(1.1);
}

.theater-details {
    padding: 1.5rem;
}

.theater-name {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.theater-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.info-row i {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    animation: animate 18s linear infinite;
}

.price-tag {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    animation: animate 18s linear infinite;
    font-weight: bold;
    margin-top: 1rem;
}

.price-details {
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.slots-available {
    display: inline-block;
    background: rgba(0, 255, 0, 0.1);
    color: #4caf50;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-modal .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 150px auto;
    }
    
    .theater-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .time-slots {
        justify-content: center;
    }
    
    .time-slot {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .booking-modal .modal-content {
        padding: 1rem;
    }
    
    .time-slots {
        gap: 0.3rem;
    }
    
    .time-slot {
        min-width: 70px;
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .theater-details {
        padding: 1rem;
    }
    
    .theater-name {
        font-size: 1.1rem;
    }
    
    .price-tag {
        font-size: 1.3rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

.about-content {
    padding: 3rem;
    width: 98%;
    max-width: 98%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-mission {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.vision-box, .mission-box {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
}

.vision-box h2, .mission-box h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.values {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team {
    padding: 4rem 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
        border-radius: 0;
    }
    
    .about {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .offer-item {
        max-width: 100%;
    }
    
    .what-we-offer h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

.booking-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

@media (max-width: 480px) {
    .time-slot {
        min-width: auto;
        width: 100%;
    }
    
    .booking-note {
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }
}

/* Why Choose Small Circle Section */
.why-choose {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

.why-choose-text h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #ccc;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.benefits-list li i {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.benefits-list li div {
    flex: 1;
}

.benefits-list h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.benefits-list p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

.why-choose-image {
    position: relative;
    border-radius: 15px;
   
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-slider {
    position: relative;
    border-radius: 15px;
   
}

.image-slider img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.5s ease, opacity 0.3s ease;
    
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

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

.dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}

.cta-wrapper {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-text {
        order: 2;
    }
    
    .why-choose-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 5rem 0;
    }
    
    .why-choose-text h2 {
        font-size: 2.2rem;
    }
    
    .why-choose-text h3 {
        font-size: 1.4rem;
    }
    
    .benefits-list li {
        margin-bottom: 1.2rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .why-choose-text h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-text h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-list h4 {
        font-size: 1.1rem;
    }
    
    .benefits-list p {
        font-size: 0.9rem;
    }
    
    .benefits-list li {
        padding: 1rem;
    }
}

/* Text justify class */
.text-justify {
    text-align: justify;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* New Reviews Slider */
.reviews-slider-container {
    position: relative;
    padding: 20px 0;
    margin: 40px 0;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.review-card-new {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, rgba(0,0,0,0.8), rgba(20,20,20,0.9));
}

.review-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-card-new.featured {
    flex: 0 0 400px;
    background: linear-gradient(145deg, rgba(10,10,10,0.9), rgba(30,30,30,0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar .reviewer-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-text {
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card-new.featured .review-text {
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.review-stars {
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.review-platform {
    text-align: right;
}

.review-platform img {
    width: 20px;
    height: 20px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent);
    padding: 0;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    text-align: right;
    align-self: flex-end;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Navigation Arrows */
.reviews-nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.review-nav {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.review-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.review-nav i {
    color: #000;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .review-card-new {
        flex: 0 0 280px;
        padding: 20px;
    }
    
    .review-card-new.featured {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .review-card-new {
        flex: 0 0 260px;
        padding: 15px;
    }
    
    .review-card-new.featured {
        flex: 0 0 300px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-avatar .reviewer-initial {
        font-size: 1.2rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .review-card-new.featured .review-text {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
}

@media (max-width: 480px) {
    .review-card-new {
        flex: 0 0 240px;
    }
    
    .review-card-new.featured {
        flex: 0 0 280px;
    }
    
    .review-text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .review-card-new.featured .review-text {
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    
    .review-nav {
        width: 35px;
        height: 35px;
    }
}

/* Custom Carousel Indicators */
#reviewCarousel .carousel-indicators {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

#reviewCarousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    margin: 0 8px;
    border: none;
    transition: all 0.3s ease;
    opacity: 1;
}

#reviewCarousel .carousel-indicators button.active {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Review Action Buttons */
.review-actions {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.btn-share-experience,
.btn-view-more {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    text-align: center;
}

.btn-share-experience {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 400%;
    color: #000000;
    border: none;
    animation: animate 18s linear infinite;
    box-shadow: 0 5px 15px rgba(191, 149, 63, 0.3);
}

.btn-view-more {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-share-experience:hover {
    animation: inout 1.8s ease infinite, animate 18s linear infinite;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: #000;
}

.btn-view-more:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    color: var(--accent);
}

/* Responsive Styles for Reviews */
@media (max-width: 992px) {
    #reviewCarousel {
        margin: 0 20px;
    }
    
    #reviewCarousel .carousel-control-prev {
        left: calc(50% - 60px);
    }
    
    #reviewCarousel .carousel-control-next {
        right: calc(50% - 60px);
    }
}

@media (max-width: 768px) {
    .review-card {
        padding: 20px;
    }
    
    .reviewer-img, .reviewer-initial {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-info h4 {
        font-size: 1rem;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    #reviewCarousel .carousel-control-prev,
    #reviewCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .btn-share-experience,
    .btn-view-more {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
        display: block;
        text-align: center;
    }
    
    .review-actions {
        display: flex
;
        flex-direction: column;
        align-items: center;
        width: 100%;
        align-content: center;
        flex-wrap: wrap;
    }
    
    .review-actions a {
        justify-content: center;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgb(34, 34, 34);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background-color: rgb(59, 49, 49);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    background-color: #333;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 18px 16px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 18px;
    }
    .reviews h2 {
        text-align: center;
        margin-bottom: 3rem;
        font-size: 5vw;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px 14px;
    }
    
    .faq-answer {
        padding: 0 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 14px 16px;
    }
}

/* Instagram Feed Section */
.instagram {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
}

/* Black strip at the bottom middle of Instagram section */
.instagram-black-strip {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    background-color: #000000;
    z-index: 2147483644;
    border-radius: 4px 4px 0 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-header h2 {
    margin-bottom: 10px;
}

.instagram-header p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.follower-count {
    font-weight: 600;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

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

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

.insta-post {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post:hover img {
    transform: scale(1.05);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-engagement {
    display: flex;
    gap: 15px;
}

.insta-engagement span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.9rem;
}

.insta-engagement i {
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.why-choose-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column-reverse;
    }
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h2 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-choose-text h3 {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--accent);
}

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

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.benefits-list i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefits-list h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.benefits-list p {
    margin: 0;
    line-height: 1.5;
}

.why-choose-image {
    flex: 1;
    position: relative;
}

.image-slider {
    position: relative;
    border-radius: 10px;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-slider img {
    width: 100%;
    height: auto;
    display: none;
    border-radius: 10px;
}

.image-slider img.active {
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
}

.cta-wrapper {
    margin-top: 30px;
}

/* Chat Now Button */
.chat-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    background-size: 200% auto;
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.chat-now-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.chat-now-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(191, 149, 63, 0.4);
}

.chat-now-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(191, 149, 63, 0.3);
}

@media (max-width: 768px) {
    .chat-now-btn {
        width: 100%;
        max-width: 300px;
        margin-top: 1rem;
    }
}

/* Experience Categories Section */
.experience-categories {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.category-features {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.category-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.category-features li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1rem;
}

/* Legal Pages Styles */
.small-hero {
    height: 40vh;
    min-height: 300px;
}

.legal-content {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.legal-section {
    margin-bottom: 40px;
    background: rgba(26, 26, 26, 0.7);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-section h2 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #fff;
}

.legal-section p, .legal-section ul, .legal-section ol {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-section ul, .legal-section ol {
    padding-left: 20px;
    margin-left: 20px;
}

.legal-section ul li, .legal-section ol li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Movies Section */
.premium-movies {
    margin: 20px 0;
    display: none;
}

.premium-movies.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.movie-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.movie-option {
    width: 120px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: rgba(0, 0, 0, 0.5);
}

.movie-option img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.movie-option span {
    display: block;
    padding: 8px 5px;
    font-size: 0.9rem;
    color: white;
}

.movie-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.movie-option.selected {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.2);
}

/* Add-ons Section */
.addons-section {
    margin: 20px 0;
    display: none;
}

.addons-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.addon-item {
    position: relative;
}

.addon-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.addon-item label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    height: 100%;
}

.addon-item label i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.addon-item label span {
    display: block;
    margin-bottom: 5px;
}

.addon-item label .addon-price {
    font-weight: bold;
    color: var(--accent);
}

.addon-item input[type="checkbox"]:checked + label {
    background-color: rgba(212, 175, 55, 0.2);
    border-color: var(--accent);
}

/* Price Summary */
.price-summary {
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--accent);
}

/* Date Selection */
.date-selection {
    margin-bottom: 20px;
    text-align: center;
}

.date-picker {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
}

/* Fix calendar icon color */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.8;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .movie-selection {
        gap: 10px;
    }
    
    .movie-option {
        width: 100px;
    }
    
    .movie-option img {
        height: 140px;
    }
    
    .addons-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .movie-selection {
        gap: 8px;
    }
    
    .movie-option {
        width: 85px;
    }
    
    .movie-option img {
        height: 120px;
    }
    
    .addons-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .addon-item label i {
        font-size: 1.5rem;
    }
    
    .addon-item label span {
        font-size: 0.9rem;
    }
}

/* Quick Booking Section */
.quick-booking {
    padding: 5rem 0;
    background-color: var(--light-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.quick-booking h2 {
    margin-bottom: 1rem;
}

.quick-booking p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
}

.booking-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.booking-links-container .cta-button,
.booking-links-container .chat-now-btn {
    min-width: 220px;
}

/* Enhanced Form Messages */
.form-message {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.5s ease;
    animation: fadeInDown 0.5s ease;
}

.contact-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-inner {
    padding: 30px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #D4AF37;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.contact-form {
    transition: all 0.5s ease;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6, .col-md-12, .col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #D4AF37;
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.2) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .whatsapp-btn {
        margin-top: 10px;
    }
}

.success-message {
    background: linear-gradient(145deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.2));
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.error-message {
    background: linear-gradient(145deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.2));
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.form-message h3 {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.form-message p {
    margin: 5px 0;
    font-size: 16px;
}

.success-icon, .error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.success-icon i {
    color: #28a745;
}

.error-icon i {
    color: #dc3545;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .booking-links-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .booking-links-container .cta-button,
    .booking-links-container .chat-now-btn {
        width: 90%;
        max-width: 300px;
    }
}