
/* Container for the alert */
.facility-alert {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8); /* Slight white background */
    border: 1px solid #e0e0e0;
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    margin-bottom: 25px; /* Spacing before the mini-boxes */
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* The colorful, pulsing NEW badge */
.badge-new {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%); /* Bright red/orange gradient */
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse-glow 2s infinite; /* Adds the glowing effect */
}

/* The announcement text */
.alert-text {
    font-weight: 600;
    color: #222; /* Dark text for readability */
    font-size: 0.95rem;
    font-family: sans-serif;
}

/* The Pulsing Animation Keyframes */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 8, 68, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 8, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 8, 68, 0);
    }
}





/* Styling for the Services Section to blend with the page */
.available-services {
    text-align: center;
    padding: 60px 20px;
    background-color: transparent; /* Lets the page background show through */
    max-width: 1000px;
    margin: 0 auto; /* Centers the section block */
}

/* Flexbox container for the logos */
.service-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 50px; 
    margin-top: 30px;
}

/* Logo styling & Hover Effects */
.brand-logo {
    height: 45px; 
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    
    transform: translateY(-5px); /* Gentle float up instead of zoom */
}


/* =========================
LOCATION SECTION
========================= */
.blinking-text {
    size: 0.8rem;
    color:gold;
    animation: blinker 0.8s step-start infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.location-section {
    position: relative;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 55px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
}

.location-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.location-card p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.map-box {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    min-height: 500px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}




/* =========================
RESET
========================= */

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

:root {
    --gold: #C9A84C;
    --gold-soft: #E6C978;
    --dark: #10110B;
    --panel: #171811;
    --panel-soft: #202116;
    --cream: #F6F1E8;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.1);
    --radius: 8px;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

body.theme-light {
    --gold: #A97814;
    --gold-soft: #CFA64A;
    --dark: #F7F2E8;
    --panel: #FFFFFF;
    --panel-soft: #F1E8D9;
    --muted: rgba(36, 31, 20, 0.72);
    --line: rgba(36, 31, 20, 0.12);
    --shadow: 0 18px 45px rgba(70, 52, 18, 0.14);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, var(--dark), #15160f 46%, #0b0c08);
    color: white;
    overflow-x: hidden;
    line-height: 1.5;
}

body.theme-light {
    background: linear-gradient(180deg, #F7F2E8, #FFFDF8 48%, #EEE2CE);
    color: #201D14;
}

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

section {
    padding: 96px 8%;
    position: relative;
}

/* =========================
GOOGLE REVIEW WIDGET
========================= */

.reviews-widget-box {
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}





/* =========================
NAVBAR
========================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 8%;
    background: rgba(10, 11, 7, 0.82);
    backdrop-filter: blur(12px);
    z-index: 999;
    border-bottom: 1px solid var(--line);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

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

.nav-btn {
    background: var(--gold);
    color: black;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    min-height: 44px;
    white-space: nowrap;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    flex: 0 0 auto;
}

.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: 0.25s ease;
}

.menu-toggle span {
    top: 21px;
}

.menu-toggle::before {
    top: 14px;
}

.menu-toggle::after {
    top: 28px;
}

body.menu-open .menu-toggle span {
    opacity: 0;
}

body.menu-open .menu-toggle::before {
    top: 21px;
    transform: rotate(45deg);
}

body.menu-open .menu-toggle::after {
    top: 21px;
    transform: rotate(-45deg);
}

body.theme-light nav {
    background: rgba(255, 250, 239, 0.9);
}

body.theme-light .nav-links a,
body.theme-light .btn-outline,
body.theme-light .menu-toggle,
body.theme-light .theme-toggle {
    color: #201D14;
}

body.theme-light .hero::after {
    background:
        linear-gradient(90deg, rgba(255, 250, 239, 0.88), rgba(255, 250, 239, 0.68) 48%, rgba(255, 250, 239, 0.38)),
        rgba(255, 250, 239, 0.28);
}

body.theme-light .hero p,
body.theme-light .section-sub,
body.theme-light .feature-card p,
body.theme-light .testimonial p,
body.theme-light .location-card p,
body.theme-light .mini-box span,
body.theme-light .booking-box-modal p,
body.theme-light .booking-form input,
body.theme-light .booking-form select,
body.theme-light .booking-form textarea {
    color: rgba(36, 31, 20, 0.72);
}

body.theme-light .hero-tag,
body.theme-light .mini-box,
body.theme-light .feature-card,
body.theme-light .testimonial,
body.theme-light .location-card,
body.theme-light .reviews-widget-box,
body.theme-light .booking-box-modal {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(36, 31, 20, 0.1);
    box-shadow: var(--shadow);
}

body.theme-light .booking-form input,
body.theme-light .booking-form select,
body.theme-light .booking-form textarea {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(36, 31, 20, 0.14);
}

body.theme-light .close-modal {
    color: #201D14;
}

body.theme-light .mobile-bottom-bar {
    background: rgba(255, 250, 239, 0.94);
}

/* =========================
HERO
========================= */

.hero {
    min-height: 100svh;
    padding-top: 150px;
    padding-bottom: 88px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background: url("Images/main.jpeg") center/cover no-repeat; */
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.32)),
        rgba(0, 0, 0, 0.32);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

/* 
        .hero-tag {
            display: inline-block;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            margin-bottom: 25px;
            font-size: 0.85rem;
        } */

.hero h1 {
    font-size: clamp(3.3rem, 7vw, 5rem);
    line-height: 1.05;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    margin-top: 40px;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-mini-info {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.mini-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    padding: 14px 20px;
    border-radius: var(--radius);
    min-width: 170px;
}

.mini-box strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.mini-box span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* =========================
BUTTONS
========================= */

.btn-primary {
    background: var(--gold);
    color: black;
    padding: 14px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gold-soft);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    transition: 0.25s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
}

/* =========================
SECTION
========================= */

.section-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.2rem, 4.6vw, 3rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
}

.section-sub {
    color: var(--muted);
    max-width: 650px;
    line-height: 1.8;
}

/* =========================
FEATURES
========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature-card h3 {
    margin: 20px 0 12px;
    font-size: 1.3rem;
}

.feature-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================
GALLERY
========================= */

.gallery-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gallery-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
    align-items: center;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    min-width: 340px;
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: .5s cubic-bezier(.22, 1, .36, 1);
}

.gallery-slide:hover {
    transform: translateY(-8px);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.gallery-slide:hover img {
    transform: scale(1.06);
}

.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent,
            rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

.gallery-btn:hover {
    background: var(--gold);
    color: black;
}

.gallery-btn.prev {
    left: 10px;
}

.gallery-btn.next {
    right: 10px;
}

/* =========================
TESTIMONIALS
========================= */

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin: 20px 0;
}

/* =========================
VIDEO
========================= */

.video-section {
    text-align: center;
}

.video-wrapper {
    position: relative;
    margin-top: 55px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-wrapper iframe {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

/* =========================
BOOKING BOX
========================= */

.booking-box {
    background: linear-gradient(135deg, var(--gold), #e0bf66);
    padding: 70px;
    text-align: center;
    border-radius: var(--radius);
    color: black;
    margin-top: 60px;
}

.booking-box h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.booking-box p {
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* =========================
FOOTER
========================= */

footer {
    padding: 80px 8%;
    background: black;
}

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

.footer-grid h3 {
    margin-bottom: 20px;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    text-decoration: none;
}

.footer-credit {
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-size: 0.95rem;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* =========================
MODAL
========================= */

.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
}

.booking-modal.active {
    display: flex;
}

.booking-box-modal {
    background: #111;
    width: 100%;
    max-width: 520px;
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popup .4s ease;
}

@keyframes popup {

    from {
        opacity: 0;
        transform: translateY(40px) scale(.95);
    }

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

}

.close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.booking-box-modal h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.booking-box-modal p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: rgba(201, 168, 76, 0.65);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.booking-form select option {
    color: #10110B;
}

.booking-form textarea {
    min-height: 100px;
    resize: none;
}

.form-error {
    display: none;
    margin-top: -4px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.28);
    color: #ffb8b8;
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-error.active {
    display: block;
}

.booking-form .input-error {
    border-color: rgba(255, 92, 92, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.12);
}

.submit-booking {
    background: #25D366;
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-booking:hover {
    transform: translateY(-3px);
}

.call-direct-btn {
    background: var(--gold);
    color: black;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    display: block;
}

/* =========================
WHATSAPP
========================= */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
}

.mobile-bottom-bar {
    display: none;
}

/* =========================
REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
FACILITY CARDS
========================= */

.facility-card {
    position: relative;
    overflow: hidden;
}

.facility-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(180deg,
            transparent,
            rgba(0, 0, 0, 0.88));
    z-index: 5;
}

.facility-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.facility-overlay p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

/* MINI BOX LINK */

/* =========================
PREMIUM MINI BUTTON
========================= */

.mini-link {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: 0.4s cubic-bezier(.22, 1, .36, 1);

    background:
        linear-gradient(135deg,
            rgba(201, 168, 76, 0.18),
            rgba(255, 255, 255, 0.05));

    border: 1px solid rgba(201, 168, 76, 0.25);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* GLOW EFFECT */

.mini-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);

    transition: 0.8s;
}

.mini-link:hover::before {
    left: 120%;
}

/* HOVER */

.mini-link:hover {
    transform:
        translateY(-6px) scale(1.02);

    border-color: rgba(201, 168, 76, 0.5);

    box-shadow:
        0 18px 40px rgba(201, 168, 76, 0.18),
        0 12px 30px rgba(0, 0, 0, 0.35);
}

.mini-link strong {
    font-size: 1rem;
    color: var(--gold-soft);
    transition: 0.3s;
}

.mini-link span {
    color: rgba(255, 255, 255, 0.82);
    transition: 0.3s;
}

.mini-link:hover strong {
    color: #FFD978;
    letter-spacing: 0.3px;
}

.mini-link:hover span {
    color: white;
}

/* =========================
PREMIUM YOUTUBE BUTTON
========================= */

.youtube-premium-link {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 18px;
    padding: 16px 20px;

    border-radius: var(--radius);

    text-decoration: none;
    color: white;

    background:
        linear-gradient(135deg,
            rgba(255, 0, 0, 0.18),
            rgba(255, 255, 255, 0.05));

    border: 1px solid rgba(255, 0, 0, 0.25);

    transition: 0.4s cubic-bezier(.22, 1, .36, 1);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* SHINE EFFECT */

.youtube-premium-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);

    transition: 0.8s;
}

.youtube-premium-link:hover::before {
    left: 120%;
}

/* HOVER */

.youtube-premium-link:hover {
    transform:
        translateY(-6px) scale(1.02);

    border-color: rgba(255, 0, 0, 0.45);

    box-shadow:
        0 20px 40px rgba(255, 0, 0, 0.16),
        0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ICON */

.youtube-icon {
    width: 56px;
    height: 56px;

    border-radius: var(--radius);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.4rem;
    font-weight: 700;

    background: #FF0000;
    color: white;

    flex-shrink: 0;

    box-shadow:
        0 10px 25px rgba(255, 0, 0, 0.35);
}

/* TEXT */

.youtube-text {
    display: flex;
    flex-direction: column;
}

.youtube-text strong {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

.youtube-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* =========================
LOCATION IMAGE MODAL
========================= */

.view-location-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

.view-location-map:hover {
    opacity: .8;
}

/* MODAL */

.map-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
}

.map-modal.active {
    display: flex;
}

.map-modal-box {
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #111;
    border-radius: 28px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);
}

.map-modal-box img {
    width: 100%;
    display: block;
    max-height: 80vh;
    object-fit: cover;
}

.close-map-modal {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
}

.map-actions {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.download-map-btn {
    background: var(--gold);
    color: black;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.download-map-btn:hover {
    transform: translateY(-3px);
}

/* =========================
SUPPORT INITIATIVE
========================= */

.support-section {
    padding-top: 30px;
}

.support-container {
    display: grid;
    grid-template-columns: 1.2fr 380px;
    gap: 60px;
    align-items: center;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 34px;

    padding: 60px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.support-text {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
    font-size: 1rem;
}

.support-qr {
    text-align: center;
}

.support-qr img {
    width: 100%;
    max-width: 280px;
    margin: auto;

    background: white;
    padding: 14px;
    border-radius: 26px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}

.support-qr p {
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

/* =========================
HERO TOP BAR
========================= */

.hero-top-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: white;
}

.contribute-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 22px;

    background: rgba(201, 168, 76, 0.95);
    color: black;

    border-radius: 50px;

    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;

    transition: .3s;
}

.contribute-btn:hover {
    transform: translateY(-3px);
}




/* =========================
TABLET
========================= */

@media(max-width:992px) {

    .facility-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .hero-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-tag {
        font-size: 0.78rem;
        line-height: 1.5;
        padding: 12px 16px;
    }

    .contribute-btn {
        width: 100%;
        justify-content: center;
    }

    .support-container {
        grid-template-columns: 1fr;
        padding: 34px 24px;
        gap: 40px;
        border-radius: 28px;
    }

    .support-qr img {
        max-width: 240px;
    }

    .support-qr .btn-primary {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .map-modal-box {
        border-radius: 22px;
    }

    .close-map-modal {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .download-map-btn {
        width: 100%;
        text-align: center;
    }


    /* FACILITY MINI BUTTON */

    .mini-link {
        width: 100%;
        padding: 18px 20px;
        border-radius: var(--radius);

        display: flex;
        flex-direction: column;
        justify-content: center;

        min-height: 92px;

        background:
            linear-gradient(135deg,
                rgba(201, 168, 76, 0.22),
                rgba(255, 255, 255, 0.05));

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .mini-link strong {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .mini-link span {
        font-size: 0.88rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.82);
    }

    /* YOUTUBE BUTTON */

    .youtube-premium-link {
        width: 100%;

        padding: 16px;
        border-radius: var(--radius);

        gap: 14px;

        align-items: center;

        background:
            linear-gradient(135deg,
                rgba(255, 0, 0, 0.20),
                rgba(255, 255, 255, 0.05));

        box-shadow:
            0 14px 35px rgba(0, 0, 0, 0.28);
    }

    .youtube-icon {
        width: 52px;
        height: 52px;

        min-width: 52px;

        border-radius: 16px;

        font-size: 1.2rem;

        box-shadow:
            0 10px 25px rgba(255, 0, 0, 0.30);
    }

    .youtube-text {
        flex: 1;
        min-width: 0;
    }

    .youtube-text strong {
        display: block;
        font-size: 0.98rem;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .youtube-text span {
        display: block;
        font-size: 0.84rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.78);
    }

    .mini-link {
        transition:
            transform .35s cubic-bezier(.22, 1, .36, 1),
            box-shadow .35s ease,
            border-color .35s ease,
            background .35s ease;
    }

    .mini-link:hover,
    .mini-link:active {

        transform:
            translateY(-4px) scale(1.02);

        background:
            linear-gradient(135deg,
                rgba(201, 168, 76, 0.32),
                rgba(255, 255, 255, 0.08));

        border-color:
            rgba(201, 168, 76, 0.45);

        box-shadow:
            0 18px 40px rgba(201, 168, 76, 0.18),
            0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .mini-link:hover strong,
    .mini-link:active strong {
        color: #FFD978;
    }

    .mini-link:hover span,
    .mini-link:active span {
        color: white;
    }

    /* YOUTUBE BUTTON HOVER */

    .youtube-premium-link {
        transition:
            transform .35s cubic-bezier(.22, 1, .36, 1),
            box-shadow .35s ease,
            border-color .35s ease,
            background .35s ease;
    }

    .youtube-premium-link:hover,
    .youtube-premium-link:active {

        transform:
            translateY(-4px) scale(1.02);

        background:
            linear-gradient(135deg,
                rgba(255, 0, 0, 0.30),
                rgba(255, 255, 255, 0.08));

        border-color:
            rgba(255, 0, 0, 0.5);

        box-shadow:
            0 20px 40px rgba(255, 0, 0, 0.18),
            0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .youtube-premium-link:hover .youtube-icon,
    .youtube-premium-link:active .youtube-icon {

        transform: scale(1.08);

        box-shadow:
            0 14px 30px rgba(255, 0, 0, 0.45);
    }

    .youtube-icon {
        transition:
            transform .35s ease,
            box-shadow .35s ease;
    }

    .youtube-text strong,
    .youtube-text span {
        transition: 0.3s;
    }

    .youtube-premium-link:hover .youtube-text strong,
    .youtube-premium-link:active .youtube-text strong {
        color: white;
    }

    .youtube-premium-link:hover .youtube-text span,
    .youtube-premium-link:active .youtube-text span {
        color: rgba(255, 255, 255, 0.95);
    }

    .reviews-widget-box {
        padding: 14px;
        border-radius: var(--radius);
        margin-top: 35px;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location-card {
        padding: 24px;
        border-radius: var(--radius);
    }

    .location-buttons {
        flex-direction: column;
    }

    .map-box {
        min-height: 320px;
        border-radius: var(--radius);
    }


    .facility-carousel {
        gap: 16px;
        padding: 10px 10px 20px;
    }

    .facility-slide {
        flex: 0 0 88%;
        min-width: 88%;
        border-radius: var(--radius);
    }

    .facility-image {
        height: 220px;
    }

    .facility-content {
        padding: 24px;
    }

    .facility-btn {
        width: 46px;
        height: 46px;
        font-size: 1rem;
        background: rgba(201, 168, 76, 0.95);
        color: black;
    }

    .facility-btn.prev {
        left: 6px;
    }

    .facility-btn.next {
        right: 6px;
    }


    section {
        padding: 75px 5%;
    }

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    nav {
        padding: 12px 5%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        font-size: 1rem;
        max-width: calc(100% - 220px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 4px;
        border-top: 1px solid var(--line);
    }

    body.menu-open .nav-links {
        display: flex;
    }

    .nav-links a {
        padding: 13px 0;
        min-height: 44px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .theme-toggle {
        order: 2;
    }

    .nav-btn {
        order: 3;
        padding: 10px 12px;
        min-height: 44px;
    }

    .hero {
        padding: 60px 5% 60px;
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        margin-top: 40px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.2rem);
        line-height: 1.1;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-mini-info {
        flex-direction: column;
    }

    .mini-box {
        min-width: 0;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 2.35rem);
    }

    .features-grid,
    .testimonials-slider,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* GALLERY */

    .gallery-carousel {
        gap: 14px;
        padding: 10px 4px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-slide {
        min-width: 82%;
        max-width: 82%;
        height: 420px;
        scroll-snap-align: center;
    }

    .gallery-btn {
        width: 46px;
        height: 46px;
        font-size: 1rem;
        background: rgba(201, 168, 76, 0.95);
        color: black;
    }

    .gallery-btn.prev {
        left: 8px;
    }

    .gallery-btn.next {
        right: 8px;
    }

    /* VIDEO */

    .video-wrapper {
        margin-top: 35px;
        border-radius: var(--radius);
    }

    .video-wrapper iframe {
        height: 240px;
    }

    /* BOOKING */

    .booking-box {
        padding: 38px 22px;
        border-radius: var(--radius);
    }

    .booking-box h2 {
        font-size: 2rem;
    }

    .booking-box-modal {
        padding: 30px 22px;
        border-radius: var(--radius);
        max-height: 90vh;
        overflow-y: auto;
    }

    .whatsapp {
        display: none;
    }

    .mobile-bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 998;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 5% calc(10px + env(safe-area-inset-bottom));
        background: rgba(10, 11, 7, 0.92);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-bar a {
        min-height: 52px;
        border-radius: var(--radius);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-weight: 800;
        font-size: 0.98rem;
    }

    .mobile-call {
        background: var(--gold);
        color: #10110B;
    }

    .mobile-whatsapp {
        background: #25D366;
        color: white;
    }

  .service-logos {
        gap: 30px;
    }
    .brand-logo {
        height: 35px; /* Slightly smaller on phones */
    }
   .facility-alert {
        padding: 5px 12px 5px 5px;
        gap: 8px;
    }
    .alert-text {
        font-size: 0.85rem;
    }
}

