: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;
}

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 {
    height: 100vh;
    background: url('Photos/index/Hero1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}




.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    padding-top: 6rem;
    position: relative;
    z-index: 20;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #f8f4ee;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

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

#cookie-modal {
    pointer-events: auto;
}

.hero, .slide {
    z-index: 1;
}

.hero {
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.6) 100% );
        z-index: 5;
    }




.slideshow-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide video {
    filter: brightness(0.85) contrast(1.05);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1,
.hero p {
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}


.hotel-name {
    background: linear-gradient(90deg, #ffd700, #caa035, #ffb703);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.ocean-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #caa035, #ffd700);
    color: #5b0000;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    overflow: hidden;
}


    .ocean-btn span {
        position: relative;
        z-index: 3;
    }


    .ocean-btn .wave {
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 200%;
        height: 80%;
        fill: rgba(255, 255, 255, 0.35);
        animation: waveFlow 8s linear infinite;
        z-index: 1;
    }


    .ocean-btn .wave2 {
        animation-duration: 12s;
        opacity: 0.5;
    }


@keyframes waveFlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.ocean-btn:hover .wave {
    height: 100%;
    transition: height 0.6s ease;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    overflow: hidden;
    background: black;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }



    .slide.previous {
        opacity: 1;
        z-index: 1;
    }


@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.slide.leftIn {
    animation: slideInFromLeft 1s ease forwards;
}

.slide.rightIn {
    animation: slideInFromRight 1s ease forwards;
}

.slide-liner {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 0%;
    background: linear-gradient(90deg, #880000, #caa035, #ffd966);
    z-index: 10;
    border-radius: 6px;
    animation: none;
    box-shadow: 0 0 10px rgba(202, 160, 53, 0.8);
}



@keyframes linerProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/*    .slide1 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Photos/index/Hero1.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide2 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Photos/index/Hero2.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide3 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Photos/index/Hero3.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide4 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Photos/index/Hero4.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }*/

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    will-change: opacity;
}



.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}


.slide-btn {
    background: #caa035;
    color: white;
    border: none;
    padding: 8px 14px;
    font-size: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    .slide-btn:hover {
        background: #880000;
        transform: scale(1.1);
    }

    .slide-btn:active {
        transform: scale(0.92);
    }




#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;
}



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

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

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #880000;
    position: relative;
}

    .about-text h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: #caa035;
        border-radius: 2px;
    }

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    max-width: 550px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: url('') no-repeat center center;
    background-size: cover;
    height: 400px;
    aspect-ratio: 4 / 3;
    height: auto;
}

.about-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8A1E1E;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.3s;
}

    .read-more-btn:hover {
        background-color: transparent;
        color: #8A1E1E;
        border-color: #8A1E1E;
    }




.highlights {
    padding: 5rem 0;
    background: #caa035;
    color: white;
}

    .highlights h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

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

.highlight-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.highlight-card p {
    font-size: 1rem;
    line-height: 1.6;
}


#accept-cookies:hover {
    background: #FFD700;
    transform: scale(1.05);
}



.room-stats {
    padding: 4rem 0;
    background: #caa035;
    color: white;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

#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;
    }


.stat-item {
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}


footer {
    background: #880000;
    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: #caa035;
}

.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: #caa035;
    }


.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;
    }

/* ═══════════════════════════════════════════════════════
   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: var(--ivory);
}

.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);
    }

.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;
    }

.testimonial-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #880000;
    margin-bottom: 60px;
    position: relative;
    font-weight: 600;
}

    .testimonial-heading::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 4px;
        background: #caa035;
        border-radius: 3px;
    }


.google-testimonials {
    padding: 100px 0;
    background: #f5f7fa;
    overflow: hidden;
}

.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 15px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.77, 0, 0.18, 1), box-shadow 0.5s ease, transform 0.4s ease;
}

    .testimonial-card.expanded {
        max-height: 1200px;
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }

.quote-icon {
    width: 30px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    max-height: 110px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}


    .testimonial-card p::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
        display: none;
        transition: opacity 0.4s ease;
    }

.testimonial-card.truncated p::after {
    display: block;
}


.testimonial-card.expanded p {
    max-height: 1000px;
}

    .testimonial-card.expanded p::after {
        display: none;
        opacity: 0;
    }


.auto-read-more {
    color: #880000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}


    .auto-read-more:hover {
        color: #caa035;
        transform: translateX(4px);
    }

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #f4b400;
}

.google-logo {
    width: 26px;
}



.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e67e22;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

    .testimonial-btn:hover {
        background: #880000;
    }

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}


@media (max-width: 1024px) {

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

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

        .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;
        }


    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    .about-text {
        width: 100% !important;
        max-width: 100% !important;
    }

        .about-text p {
            max-width: 100% !important;
            font-size: 1rem;
            line-height: 1.6;
        }

    .about-content {
        grid-template-columns: 1fr !important;
        padding: 0 1rem !important;
        gap: 1.5rem !important;
    }
}



@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1101;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        display: block;
        z-index: 1001; /* Lower than nav-links (1050) to allow it to be covered or hidden */
    }

    body.menu-open .menu-toggle {
        display: none;
    }


    .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 h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        color: #f3ede4;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

    .hero-content {
        padding-top: 7rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

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

    .slide-liner {
        height: 4px;
        box-shadow: 0 0 6px rgba(202, 160, 53, 0.7);
    }

    .slide4 {
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-video {
        padding: 4px !important;
        border-radius: 16px !important;
    }

        .about-video video {
            width: 100%;
            height: auto;
            max-height: 320px;
            border-radius: 12px !important;
            object-fit: cover;
        }

    .slideshow-controls {
        bottom: 18px;
        gap: 10px;
    }

    .slide-btn {
        padding: 6px 12px;
        font-size: 13px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    .google-testimonials {
        padding: 70px 0;
    }

    .testimonial-wrapper {
        flex-direction: column;
        position: relative;
    }

    .testimonial-item {
        flex: 0 0 100%;
        padding: 10px;
    }

    .testimonial-card {
        padding: 22px;
        border-radius: 15px;
        max-height: 320px;
    }

    .testimonial-heading {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.6;
    }


    .testimonial-btn {
        position: static;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }


    .prev-btn,
    .next-btn {
        margin: 0 10px;
    }

    .prev-btn {
        margin-left: -20px;
    }

    .next-btn {
        margin-right: -20px;
        margin-top: -57px;
    }

    .testimonial-wrapper::after {
        content: "";
        display: block;
        height: 20px;
    }

    .testimonial-wrapper {
        gap: 20px;
    }


    .testimonial-wrapper {
        align-items: center;
    }

    .prev-btn,
    .next-btn {
        background: #caa035;
        border-radius: 50%;
    }


    .testimonial-wrapper > .prev-btn,
    .testimonial-wrapper > .next-btn {
        order: 2;
    }

    .testimonial-slider {
        order: 1;
    }


    .testimonial-wrapper {
        display: flex;
        flex-direction: column;
    }

        .testimonial-wrapper .prev-btn,
        .testimonial-wrapper .next-btn {
            position: relative;
        }

        .testimonial-wrapper .prev-btn {
            margin-right: 15px;
        }

    .testimonial-slider {
        width: 100%;
        overflow: hidden;
    }

    .testimonial-track {
        display: flex;
        width: 100%;
    }

    .testimonial-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .testimonial-card {
        width: 100%;
    }

    .chat-container {
        width: 96%;
        right: 2%;
        bottom: 75px;
        max-height: 85vh;
        border-radius: 16px;
    }

    .chat-messages {
        height: 58vh;
        font-size: 13px;
    }

    .bot-message,
    .user-message {
        font-size: 13px;
        max-width: 92%;
    }

    .chat-input {
        padding: 10px;
    }

    .chat-input input {
        padding: 9px 12px;
        font-size: 13px;
    }

    .chat-input button {
        padding: 9px 14px;
        font-size: 13px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}


@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

        .logo img {
            height: 28px;
            margin-right: 5px;
        }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .slide-liner {
        height: 3px;
        border-radius: 2px;
        box-shadow: 0 0 5px rgba(202, 160, 53, 0.6);
    }

    .slideshow-controls {
        bottom: 12px;
        gap: 8px;
    }

    .slide-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .google-testimonials {
        padding: 60px 0;
    }

    .testimonial-heading {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 18px;
        max-height: 340px;
    }

        .testimonial-card p {
            font-size: 13px;
        }

    .quote-icon {
        width: 24px;
    }

    .google-logo {
        width: 22px;
    }

    .prev-btn,
    .next-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
        background: #caa035;
    }

    .chat-container {
        width: 96%;
        right: 2%;
        bottom: 85px;
        max-height: 85vh;
        border-radius: 16px;
    }

    .chat-header {
        padding: 12px;
        font-size: 14px;
    }

    .contact-icons a {
        font-size: 16px;
        margin-right: 10px;
    }

    .chat-messages {
        height: 58vh;
        padding: 12px;
        font-size: 13px;
    }

    .bot-message {
        padding: 12px 14px;
        font-size: 13px;
    }

    .user-message {
        padding: 10px 14px;
        font-size: 13px;
    }

    .chat-input {
        padding: 10px;
    }

        .chat-input input {
            padding: 9px 12px;
            font-size: 13px;
        }

        .chat-input button {
            padding: 9px 14px;
            font-size: 13px;
        }

    .chat-toggle {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }
}

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

    #cookie-modal div {
        width: 90%;
        padding: 15px;
    }

    #cookie-modal h3 {
        font-size: 16px;
    }

    #cookie-modal p {
        font-size: 13px;
    }

    #accept-cookies {
        font-size: 13px;
        padding: 8px 20px;
    }


    .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: 992px) {
    .about-content {
        grid-template-columns: 1fr !important;
    }

    .google-testimonials {
        padding: 80px 0;
    }

    /*            .testimonial-item {
                flex: 0 0 50%;
            }*/

    .testimonial-card {
        max-height: 320px;
        padding: 24px;
    }

    .testimonial-heading {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .prev-btn {
        left: -15px;
    }

    .next-btn {
        right: -15px;
    }

    .chat-container {
        width: 96%;
        right: 2%;
        bottom: 75px;
        max-height: 85vh;
        border-radius: 16px;
    }

    .chat-messages {
        height: 58vh;
        font-size: 13px;
    }

    .bot-message,
    .user-message {
        font-size: 13px;
        max-width: 92%;
    }

    .chat-input {
        padding: 10px;
    }

    .chat-input input {
        padding: 9px 12px;
        font-size: 13px;
    }

    .chat-input button {
        padding: 9px 14px;
        font-size: 13px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}