* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

:root {
    --crimson: #880000;
    --crimson-dark: #5c0000;
    --crimson-light: #b22222;
    --gold: #caa035;
    --gold-light: #ffd700;
    --gold-pale: rgba(202, 160, 53, 0.12);
    --ivory: #fdf8f1;
    --white: #ffffff;
    --text-dark: #2a1a1a;
    --text-mid: #5c4040;
    --text-muted: #8a7070;
    --border: #e8ddd5;
    --shadow-sm: 0 2px 12px rgba(136, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(136, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(136, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}


header {
    background: #880000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: top 0.4s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-left: 0;
    flex-shrink: 0;
}


    .logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
    }




.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow: visible;
    white-space: nowrap;
    justify-content: flex-start;
    margin-left: 0.5rem;
}

    .nav-links a {
        display: inline-flex;
        align-items: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.9rem;
        white-space: nowrap;
        position: relative;
        background: none !important;
    }


        .nav-links a:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }


        .nav-links a::before,
        .nav-links a::after {
            content: none !important;
            background: none !important;
        }


        .nav-links a.active {
            color: #ffd700 !important;
            border: 2px solid #caa035;
            background: transparent !important;
            border-radius: 50px;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            box-shadow: 0 0 10px rgba(202, 160, 53, 0.6);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }


            .nav-links a.active:hover {
                background: rgba(202, 160, 53, 0.1);
                transform: scale(1.05);
                box-shadow: 0 0 15px rgba(202, 160, 53, 0.8);
            }

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(202,160,53,0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(202,160,53,0.9);
    }
}

.nav-links a.active {
    animation: goldPulse 3s infinite ease-in-out;
}



.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    background: #8B0000;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.gallery-container {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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


.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: linear-gradient(45deg, #8b0000, #dc143c);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

    .filter-btn:hover, .filter-btn.active {
        background: linear-gradient(45deg, #daa520, #ffd700);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
    }


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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    #preloader img {
        width: 200px;
        height: auto;
    }

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #880000, #caa035);
    z-index: 10000;
    transition: width 0.2s ease-out;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
}


.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .lightbox.active {
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }


.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease-out;
}

.lightbox img {
    width: auto;
    height: 85vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

    .lightbox-close:hover {
        background: rgba(255,255,255,0.2);
        transform: rotate(90deg);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .lightbox-nav:hover {
        background: rgba(255,255,255,0.3);
    }

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

    .lightbox-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #ffd700;
    }

.lightbox.show {
    pointer-events: auto !important;
}


.lightbox.active.show {
    opacity: 1;
    pointer-events: all;
}


.lightbox:not(.show) {
    pointer-events: none !important;
}






.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #8b0000;
        margin-bottom: 1rem;
        position: relative;
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #daa520, #ffd700);
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

    .breadcrumb a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-weight: 500;
    }

        .breadcrumb a:hover {
            color: white;
        }

    .breadcrumb i {
        color: #fff;
        margin: 0 8px;
    }

    .breadcrumb span {
        color: #fff;
        font-weight: 600;
    }



footer {
    background: #8b0000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p, .footer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #ffd700;
    }

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding: 25px 15px;
    background: #8b1c10;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.4px;
    color: #f1f1f1;
}


.footer-tagline {
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 8px;
    color: #ffd7a0;
}


.footer-text span {
    font-weight: 600;
    color: #ffffff;
}


.footer-text a {
    color: gold;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .footer-text a:hover {
        color: #ffd700;
        text-decoration: underline;
    }


.contact-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}


.contact-main-btn {
    width: 60px;
    height: 60px;
    background: #dba407;
    border-radius: 50%;
    border: none;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.25);
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: 0.35s ease;
}


    .contact-main-btn.open {
        transform: rotate(45deg) scale(1.1);
    }


.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}


.contact-option {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    margin-bottom: 12px;
    color: #333;
    font-size: 24px;
    line-height: 55px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: 0.35s ease;
}


    .contact-option.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }


.email {
    color: #d44638;
}

.whatsapp {
    color: #25D366;
}

.call {
    color: #007bff;
}


.contact-option:nth-child(1) {
    transition-delay: 0.05s;
}

.contact-option:nth-child(2) {
    transition-delay: 0.10s;
}

.contact-option:nth-child(3) {
    transition-delay: 0.15s;
}




@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.custom-video-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}


.video-text-content {
    flex: 1 1 45%;
    text-align: left;
    color: #333;
}

    .video-text-content h2 {
        font-size: 2.4rem;
        color: #8b0000;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .video-text-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 1rem;
    }

.video-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(45deg, #caa035, #8b0000);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(202, 160, 53, 0.4);
}

    .cta-button:hover {
        background: linear-gradient(45deg, #daa520, #ffd700);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
    }

    .cta-button.secondary {
        background: linear-gradient(45deg, #8b0000, #b22222);
    }


.video-wrapper {
    position: relative;
    flex: 1 1 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

    .video-wrapper:hover {
        transform: scale(1.02);
    }

.vimeo-container {
    width: 100%;
    height: auto;
    padding: 0;
}

.hotel-video {
    width: 100%;
    height: auto;
    min-height: 220px;
    display: block;
}

.hotel-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    outline: none;
    background: black;
    object-fit: cover;
}

/*            FAQ section*/
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6f9 100%);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 1.8rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

    .faq-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

.faq-question {
    padding: 1.8rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #8B0000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

    .faq-question span {
        flex: 1;
    }

.faq-icon {
    font-size: 1rem;
    color: #DAA520;
    transition: transform 0.4s ease;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: height 0.4s ease;
}

.faq-answer-inner {
    padding: 1.8rem 2rem;
}

.faq-answer p {
    margin: 0;
    padding: 1.1rem 0.1rem;
    line-height: 1.9;
    color: #555;
}

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

    .faq-item.active .faq-answer {
        display: block;
    }

@keyframes fadeAnswer {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 3rem;
    position: relative;
}

    .faq-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 4px;
        background: linear-gradient(90deg, #DAA520, #FFD700);
        border-radius: 2px;
    }

.faq-room-list {
    margin: 1rem 0;
    padding-left: 1.2rem;
    list-style: none;
}

    .faq-room-list li {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 1.5rem;
        line-height: 1.8;
        color: #444;
    }

        .faq-room-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #DAA520;
            font-size: 1.2rem;
            top: 0;
        }

    .faq-room-list strong {
        color: #8B0000;
    }


.faq-timing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

    .faq-timing-list li {
        margin-bottom: 0.8rem;
        font-size: 1rem;
        line-height: 1.8;
        color: #444;
    }

    .faq-timing-list strong {
        color: #8B0000;
    }

.faq-note {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* ═══════════════════════════════════════════════════════
   CHAT BOT
════════════════════════════════════════════════════════ */
.chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    z-index: 9998;
    overflow: hidden;
    display: none;
    flex-direction: column;
    max-height: 520px;
    border: 1.5px solid var(--border);
}

.chat-container.show {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: white;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-icons {
    display: flex; gap: 14px;
}

.contact-icons a {
    color: white;
    font-size: 18px;
    transition: opacity 0.2s;
}

.contact-icons a:hover {
    opacity: 0.8;
}

.chat-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.chat-header button:hover {
    background: rgba(255, 255, 255, 0.35);
}

.chat-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 280px;
    background: #f9f5f0;
}

.bot-message {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 4px 16px 16px 16px;
    font-size: 0.88rem;
    color: var(--text-dark);
    max-width: 85%;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
}

.user-message {
    background: linear-gradient(135deg, var(--crimson), #a00000);
    color: white;
    padding: 10px 14px;
    border-radius: 16px 4px 16px 16px;
    font-size: 0.88rem;
    max-width: 85%;
    align-self: flex-end;
    line-height: 1.5;
}

.chat-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(202, 160, 53, 0.15);
}

.chat-input button {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chat-input button:hover {
    background: var(--crimson-dark);
    transform: scale(1.04);
}

.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    color: var(--crimson);
    border: none;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 8px 28px rgba(202, 160, 53, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 35px rgba(202, 160, 53, 0.6);
}

.back-to-top {
    position: fixed;
    left: 30px;
    top: -80px;
    width: 50px;
    height: 50px;
    background-color: #b30000;
    color: #ffd700;
    border: 1px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 999;
    transition: top 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

    .back-to-top.show {
        top: calc(100vh - 80px);
    }



    .back-to-top:hover {
        background-color: transparent;
        color: var(--primary);
        transform: translateY(-5px);
    }

.mobile-nav-header,
.close-menu {
    display: none;
}

.brand span {
    display: none;
}

.menu-toggle {
    width: 34px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    position: relative;
}

    .menu-toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ffd700;
        border-radius: 3px;
        transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    }

        .menu-toggle span:nth-child(1) {
            top: 0;
        }

        .menu-toggle span:nth-child(2) {
            top: 11px;
            width: 70%;
        }

        .menu-toggle span:nth-child(3) {
            bottom: 0;
        }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 11px;
    }




@media (max-width: 992px) {
    .video-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .video-text-content {
        flex: 1 1 100%;
        text-align: center;
    }

    .video-wrapper {
        flex: 1 1 100%;
        margin-top: 2rem;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-wrapper {
        max-width: 95%;
    }

    .faq-title {
        font-size: 2.1rem;
        margin-bottom: 2.5rem;
    }

    .faq-question {
        padding: 1.5rem 1.8rem;
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 1.5rem 1.8rem;
    }

    .contact-widget {
        bottom: 22px;
        right: 22px;
    }

    .contact-main-btn {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .contact-option {
        width: 52px;
        height: 52px;
        font-size: 22px;
        line-height: 52px;
        margin-bottom: 10px;
    }
}



@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

        .nav-links a {
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
        }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .video-text-content h2 {
        font-size: 2rem;
    }

    #playBtn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .brand img {
            height: 48px;
            border-radius: 50%;
        }

        .brand span {
            display: inline-block;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
        }

    nav {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .logo {
        margin-left: 0;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

        .logo img {
            height: 35px;
            margin-right: 8px;
        }

    .nav-links {
        gap: 0.1rem;
        overflow-x: auto !important;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0.5rem;
    }

        .nav-links::-webkit-scrollbar {
            display: none;
        }

        .nav-links a {
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
}




@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        z-index: 1101;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: block;
        z-index: 1100;
    }


    .nav-links {
        position: fixed;
        top: 0;
        left: -120%;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(160deg, #8b0000, #5c0000);
        flex-direction: column;
        padding: 2.5rem 2rem;
        transition: left 0.45s cubic-bezier(0.77, 0, 0.18, 1);
        z-index: 1050;
    }


        .nav-links.active {
            left: 0;
        }


    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 3rem;
    }

        .mobile-nav-header img {
            height: 50px;
            border-radius: 50%;
        }

    .close-menu {
        background: none;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }


    .nav-links li {
        list-style: none;
        margin-bottom: 1.4rem;
        opacity: 0;
        transform: translateX(-30px);
        animation: slideFade 0.5s ease forwards;
        margin-top: -5px;
    }


    .nav-links.active li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .nav-links.active li:nth-child(6) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(7) {
        animation-delay: 0.35s;
    }

    .nav-links.active li:nth-child(8) {
        animation-delay: 0.4s;
    }

    .nav-links.active li:nth-child(9) {
        animation-delay: 0.45s;
    }

    .nav-links a {
        font-size: 1.25rem;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: inline-block;
        position: relative;
    }


        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0%;
            height: 2px;
            background: gold;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }



    @keyframes slideFade {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }


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

    .lightbox-nav {
        top: 20px;
        transform: none;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-content {
        width: 95%;
        max-height: 90vh;
        flex-direction: column;
        justify-content: center;
    }

    .lightbox img {
        width: 100%;
        height: auto;
        max-height: 75vh;
        object-fit: contain;
        border-radius: 15px 15px 0 0;
    }

    .lightbox-info {
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 0.8rem 1rem;
        text-align: center;
        border-radius: 0 0 15px 15px;
        width: 100%;
        margin-top: -4px;
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFade 0.5s ease forwards;
    }

    @keyframes slideUpFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .lightbox-info h3 {
        font-size: 1.2rem;
        color: #ffd700;
        margin-bottom: 0.4rem;
    }

    .lightbox-info p {
        font-size: 0.9rem;
        color: #ddd;
        line-height: 1.3;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 1.8rem;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        padding: 0.3rem;
    }

    .lightbox-nav {
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.4);
        padding: 0.8rem;
        font-size: 1.5rem;
    }



    .video-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
    }


    .video-text-content {
        order: 1 !important;
        text-align: center;
    }


    .video-wrapper {
        order: 2 !important;
        width: 100%;
        max-width: 600px;
        margin-top: 1rem;
    }

    .vimeo-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 12px;
    }

        .vimeo-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }


    .video-cta {
        order: 3 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .cta-button {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 260px;
        max-width: 300px;
        padding: 1rem 2rem;
        background: linear-gradient(45deg, #caa035, #8b0000);
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(202, 160, 53, 0.4);
        transition: all 0.3s ease;
    }


        .cta-button.secondary {
            background: linear-gradient(45deg, #8b0000, #b22222);
        }


        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(202, 160, 53, 0.5);
        }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-question {
        padding: 1.2rem 1.3rem;
        font-size: 1rem;
    }

    .faq-answer-inner {
        padding: 1.2rem 1.3rem;
    }

    .faq-answer p,
    .faq-room-list li,
    .faq-timing-list li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-widget {
        bottom: 20px;
        right: 20px;
    }

    .contact-main-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .contact-option {
        width: 50px;
        height: 50px;
        font-size: 21px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    /* Prevent overlap with chat toggle */
    .chat-toggle {
        bottom: 20px;
        right: 90px;
    }
}



@media (max-width: 600px) {
    #preloader img {
        width: 100px;
    }

    .contact-widget {
        bottom: 15px;
        right: 15px;
    }

    .contact-main-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .contact-option {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 48px;
    }
}

@media (max-width: 480px) {
    .video-text-content h2 {
        font-size: 1.8rem;
    }

    .video-overlay h2 {
        font-size: 1.3rem;
    }

    #playBtn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .cta-button {
        width: 80%;
        text-align: center;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 0.85rem;
    }

    .faq-answer-inner {
        padding: 1rem 1.1rem;
    }

    .faq-answer p,
    .faq-room-list li,
    .faq-timing-list li {
        font-size: 0.9rem;
    }

    .contact-widget {
        bottom: 18px;
        right: 15px;
    }

    .contact-main-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .contact-option {
        width: 45px;
        height: 45px;
        font-size: 20px;
        line-height: 45px;
        margin-bottom: 8px;
    }

        /* Adjust spacing animation */
        .contact-option:nth-child(1),
        .contact-option:nth-child(2),
        .contact-option:nth-child(3) {
            transition-delay: 0.05s;
        }

    /* Push chat slightly left to avoid clash */
    .chat-toggle {
        right: 80px;
        bottom: 18px;
    }
}body
{
}