:root {
    --primary-color: #006d77;
    --primary-hover: #00565e;
    --secondary-color: #83c5be;
    --text-dark: #1f2937;
    --text-light: #ffffff;
    --text-grey: #4b5563;
    --bg-light: #f9fafb;
    --footer-bg: #e5e7eb;
    --accent: #edf6f9;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 4px 15px rgba(0, 109, 119, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 15px 40px rgba(0, 109, 119, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 76px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.hero-title,
.section-title,
.btn-custom,
.btn-book-card,
.price-tag,
.nav-link {
    font-family: 'Outfit', sans-serif;
}

/* --- Global Styles --- */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 16px auto 0;
    border-radius: 4px;
}

/* ===========================
   RESPONSIVE NAVBAR & BRAND
=========================== */
.navbar {
    background: transparent !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1045; /* Keeps navbar above backdrop */
}

/* Move backdrop-filter to a pseudo-element to avoid breaking position:fixed on offcanvas */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.offcanvas-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Toggler Styling */
.navbar-toggler {
    border: none;
    padding: 5px;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hide scrollbar for offcanvas menu */
.offcanvas, .offcanvas-body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.offcanvas::-webkit-scrollbar, .offcanvas-body::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* --- Hero Section --- */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(44, 51, 43, 0.8), rgba(44, 51, 43, 0.4)), url('./Images/Hero_section_shree.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 60px 15px;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
}

.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: var(--text-grey);
}

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Buttons --- */
.btn-custom {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px;
    transition: var(--transition);
}

.btn-filled {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 109, 119, 0.3);
}

.btn-filled:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 109, 119, 0.4);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-book-card {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 14px 25px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.btn-book-card:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 109, 119, 0.25);
    border-color: var(--primary-color);
}

/* --- Components --- */
.room-card {
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: var(--transition);
    background: #fff;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.room-img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-card .card-body {
    padding: 24px;
    background: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.price-tag {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* ===========================
   RESPONSIVE GALLERY STYLES
=========================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    height: 280px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 51, 43, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    font-size: 2.5rem;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

#galleryModal .modal-content {
    background: transparent;
    border: none;
}

#galleryModal .modal-body {
    padding: 0;
    position: relative;
}

#galleryModal .modal-body img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#galleryModal .btn-close {
    filter: invert(1);
    position: absolute;
    top: -40px;
    right: 0;
}

/* --- FAQ Accordion --- */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px !important;
    background-color: #fff !important;
    color: var(--text-dark) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: var(--bg-light) !important;
}

.accordion-body {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.8;
    padding: 0 24px 24px !important;
    background-color: #fff;
    border-top: none;
}

/* --- Map --- */
.map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 0;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- NAP Section --- */
.nap-section {
    background-color: #fff;
    padding: 80px 0;
}

.nap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.nap-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.nap-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 109, 119, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.nap-item:hover .nap-icon-wrapper {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
}

.nap-content h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.nap-content p,
.nap-content a {
    color: var(--text-grey);
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
    word-break: break-word;
    transition: var(--transition);
}

.nap-content a:hover {
    color: var(--primary-color);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-dark);
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Media Queries for Small Devices */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 60vh;
        padding: 100px 15px 60px;
    }

    .nap-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px 20px;
    }

    .nap-icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .btn-custom {
        width: 100%;
        margin: 8px 0;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 350px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===========================
   FLOATING ACTION BUTTONS CSS
=========================== */
#floating-buttons {
    position: fixed;
    right: 24px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: var(--transition);
}

.float-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* WhatsApp */
.float-wa {
    background-color: #25D366;
}

/* Call Button */
.float-call {
    background-color: var(--primary-color);
}

/* Location Button */
.float-location {
    background-color: #EA4335;
}

/* ===========================
   TESTIMONIAL CAROUSEL CSS
=========================== */
.testimonial-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 4px solid var(--bg-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

.client-name {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.client-location {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.3;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.3);
}

.carousel-indicators {
    bottom: -60px;
}

#testimonials {
    padding-bottom: 110px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(50%) sepia(90%) saturate(3000%) hue-rotate(340deg) brightness(95%) contrast(90%);
}

/* Custom Scrollbar for FAQ */
#faqAccordion {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    counter-reset: faq-counter;
}
#faqAccordion .accordion-button::before {
    counter-increment: faq-counter;
    content: counter(faq-counter) ". ";
    font-weight: 600;
    margin-right: 10px;
    color: var(--primary-color);
}
#faqAccordion::-webkit-scrollbar { width: 6px; }
#faqAccordion::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 10px; }
#faqAccordion::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

/* ===========================
   LIGHTBOX CUSTOM CSS
=========================== */
.custom-lightbox-img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    max-height: 85vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .custom-lightbox-img {
        height: 300px;
        object-fit: cover;
        width: 100%;
    }
}
/* --- About Us Scroll Container --- */
.about-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
    text-align: left;
    margin: 0 auto;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

.about-scroll-container::-webkit-scrollbar {
    width: 8px;
}
.about-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.about-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.about-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
