/* ================================================================
   GANGA SADAN
   MAIN STYLESHEET
================================================================ */


/* ================================================================
   ROOT VARIABLES
================================================================ */

:root {

    --maroon: #6B1E1E;
    --maroon-dark: #4B1212;
    --maroon-light: #8A2B2B;

    --saffron: #E8751A;
    --saffron-dark: #C95F0D;

    --gold: #C99A2E;
    --gold-light: #E7C86A;

    --cream: #FFF8EC;
    --cream-dark: #F7EEDC;

    --white: #FFFFFF;

    --text: #2D211B;
    --text-light: #6B625C;

    --border: #E9DED0;

    --success: #218838;

    --shadow-sm:
        0 4px 15px rgba(45, 33, 27, 0.07);

    --shadow-md:
        0 10px 35px rgba(45, 33, 27, 0.10);

    --shadow-lg:
        0 20px 60px rgba(45, 33, 27, 0.15);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --container: 1200px;

    --transition:
        all 0.3s ease;

}


/* ================================================================
   RESET
================================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}


img {

    max-width: 100%;

    height: auto;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    cursor: pointer;

}


ul {

    list-style: none;

}


/* ================================================================
   CONTAINER
================================================================ */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* ================================================================
   TYPOGRAPHY
================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Playfair Display", serif;

    line-height: 1.2;

    color: var(--maroon);

}


h1 {

    font-size: clamp(
        2.5rem,
        6vw,
        4.8rem
    );

}


h2 {

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

}


h3 {

    font-size: 1.5rem;

}


p {

    color: var(--text-light);

}


/* ================================================================
   SECTION
================================================================ */

.section {

    padding: 90px 0;

}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--saffron);

    text-transform: uppercase;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 45px;

}


.section-heading p {

    margin-top: 15px;

}


/* ================================================================
   BUTTONS
================================================================ */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 12px 25px;

    border-radius: 6px;

    font-size: 0.9rem;

    font-weight: 700;

    transition: var(--transition);

}


.btn-primary {

    color: var(--white);

    background: var(--saffron);

}


.btn-primary:hover {

    background: var(--saffron-dark);

    transform: translateY(-2px);

}


.btn-maroon {

    color: var(--white);

    background: var(--maroon);

}


.btn-maroon:hover {

    background: var(--maroon-dark);

    transform: translateY(-2px);

}


.btn-light {

    color: var(--maroon);

    background: var(--white);

}


.btn-light:hover {

    background: var(--cream);

    transform: translateY(-2px);

}


/* ================================================================
   HEADER
================================================================ */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    transition: var(--transition);

}


.site-header.scrolled {

    box-shadow: var(--shadow-sm);

}


.header-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.site-logo {

    flex-shrink: 0;

}


.site-logo img {

    width: 175px;

    height: auto;

}


/* ================================================================
   NAVIGATION
================================================================ */

.main-nav {

    display: flex;

    align-items: center;

    gap: 25px;

}


.main-nav > a {

    position: relative;

    padding: 30px 0;

    color: var(--text);

    font-size: 0.9rem;

    font-weight: 600;

    transition: var(--transition);

}


.main-nav > a:hover,
.main-nav > a.active {

    color: var(--maroon);

}


.main-nav > a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 21px;

    width: 0;

    height: 2px;

    background: var(--saffron);

    transition: var(--transition);

}


.main-nav > a:hover::after,
.main-nav > a.active::after {

    width: 100%;

}


/* ================================================================
   BOOK BUTTON
================================================================ */

.nav-book-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 20px;

    color: var(--white) !important;

    background: var(--maroon);

    border-radius: 6px;

    font-size: 0.85rem;

    font-weight: 700;

    transition: var(--transition);

}


.nav-book-btn:hover {

    background: var(--saffron);

    transform: translateY(-2px);

}


.mobile-book-btn {

    display: none !important;

}


/* ================================================================
   MOBILE MENU BUTTON
================================================================ */

.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    padding: 9px;

    border: 0;

    background: transparent;

}


.menu-toggle span {

    display: block;

    width: 26px;

    height: 2px;

    margin: 5px auto;

    background: var(--maroon);

    transition: var(--transition);

}


.menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* ================================================================
   FOOTER CTA
================================================================ */

.footer-cta {

    padding: 65px 0;

    color: var(--white);

    background: var(--maroon);

}


.footer-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-cta h2 {

    color: var(--white);

    margin-bottom: 10px;

}


.footer-cta p {

    color: rgba(255,255,255,0.8);

}


/* ================================================================
   FOOTER
================================================================ */

.site-footer {

    background: #321010;

    color: rgba(255,255,255,0.8);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.3fr;

    gap: 50px;

    padding: 70px 0;

}


.footer-logo img {

    width: 175px;

    margin-bottom: 20px;

}


.footer-about p {

    max-width: 330px;

    color: rgba(255,255,255,0.65);

}


.footer-column h3 {

    margin-bottom: 20px;

    color: var(--white);

    font-family: "Inter", sans-serif;

    font-size: 1rem;

}


.footer-column ul {

    display: grid;

    gap: 10px;

}


.footer-column li a {

    color: rgba(255,255,255,0.65);

    transition: var(--transition);

}


.footer-column li a:hover {

    color: var(--gold-light);

    padding-left: 4px;

}


/* ================================================================
   FOOTER CONTACT
================================================================ */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: rgba(255,255,255,0.7);

}


.footer-contact-item i {

    width: 20px;

    margin-top: 4px;

    color: var(--gold-light);

}


/* ================================================================
   SOCIAL
================================================================ */

.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 25px;

}


.footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    color: var(--white);

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    transition: var(--transition);

}


.footer-social a:hover {

    background: var(--saffron);

    border-color: var(--saffron);

}


/* ================================================================
   FOOTER BOTTOM
================================================================ */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

}


.footer-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

}


.footer-bottom p {

    color: rgba(255,255,255,0.5);

    font-size: 0.8rem;

}


/* ================================================================
   FLOATING WHATSAPP
================================================================ */

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 25px;

    z-index: 999;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 18px;

    color: var(--white);

    background: #25D366;

    border-radius: 50px;

    box-shadow: var(--shadow-md);

    font-size: 0.9rem;

    font-weight: 700;

    transition: var(--transition);

}


.floating-whatsapp i {

    font-size: 1.25rem;

}


.floating-whatsapp:hover {

    transform: translateY(-3px);

}


/* ================================================================
   MOBILE BOTTOM BAR
================================================================ */

.mobile-bottom-bar {

    display: none;

}


/* ================================================================
   REVEAL ANIMATION
================================================================ */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


/* ================================================================
   RESPONSIVE - TABLET
================================================================ */

@media (max-width: 1100px) {

    .main-nav {

        gap: 15px;

    }


    .main-nav > a {

        font-size: 0.82rem;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ================================================================
   RESPONSIVE - MOBILE
================================================================ */

@media (max-width: 900px) {

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );

    }


    .header-container {

        min-height: 70px;

    }


    .site-logo img {

        width: 150px;

    }


    .desktop-book-btn {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .main-nav {

        position: absolute;

        top: 70px;

        left: 0;

        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        max-height: 0;

        overflow: hidden;

        background: var(--white);

        box-shadow: var(--shadow-md);

        transition:
            max-height 0.35s ease;

    }


    .main-nav.active {

        max-height: 600px;

        overflow-y: auto;

    }


    .main-nav > a {

        padding: 15px 25px;

        border-bottom: 1px solid var(--border);

    }


    .main-nav > a::after {

        display: none;

    }


    .mobile-book-btn {

        display: flex !important;

        margin: 15px 20px 20px;

        padding: 13px 20px !important;

    }


    .section {

        padding: 65px 0;

    }


    .footer-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .floating-whatsapp {

        right: 15px;

        bottom: 80px;

    }


    .mobile-bottom-bar {

        position: fixed;

        left: 0;

        right: 0;

        bottom: 0;

        z-index: 998;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: 0 -5px 20px rgba(0,0,0,0.08);

    }


    .mobile-bottom-bar a {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        min-height: 62px;

        color: var(--maroon);

        font-size: 0.72rem;

        font-weight: 700;

    }


    .mobile-bottom-bar i {

        font-size: 1.1rem;

    }


    body {

        padding-bottom: 62px;

    }

}


/* ================================================================
   RESPONSIVE - SMALL MOBILE
================================================================ */

@media (max-width: 575px) {

    h1 {

        font-size: 2.35rem;

    }


    h2 {

        font-size: 2rem;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;

    }


    .footer-bottom-inner {

        flex-direction: column;

        text-align: center;

    }


    .floating-whatsapp span {

        display: none;

    }


    .floating-whatsapp {

        width: 50px;

        height: 50px;

        padding: 0;

        justify-content: center;

    }

}


/* ================================================================
   ACCESSIBILITY
================================================================ */

:focus-visible {

    outline: 3px solid var(--gold);

    outline-offset: 3px;

}


@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

    }

}




/* HERO */

.hero-section {

    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    background:
        url("../images/hero/hero.jpg")
        center center / cover
        no-repeat;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(55, 15, 15, 0.88),
            rgba(55, 15, 15, 0.55),
            rgba(55, 15, 15, 0.15)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

}


.hero-label {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold-light);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 3px;

}


.hero-content h1 {

    color: var(--white);

    margin-bottom: 22px;

}


.hero-content h1 span {

    color: var(--gold-light);

}


.hero-content p {

    max-width: 600px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.85);

    font-size: 1.05rem;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.hero-whatsapp-btn {

    color: var(--white);

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.5);

    backdrop-filter: blur(5px);

}


.hero-whatsapp-btn:hover {

    background: #25D366;

    border-color: #25D366;

}


/* TRUST STRIP */

.trust-strip {

    background: var(--maroon);

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 20px;

    border-right: 1px solid
        rgba(255,255,255,0.12);

}


.trust-item:last-child {

    border-right: 0;

}


.trust-item > i {

    color: var(--gold-light);

    font-size: 1.5rem;

}


.trust-item strong {

    display: block;

    color: var(--white);

    font-size: 0.9rem;

}


.trust-item span {

    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,0.6);

    font-size: 0.75rem;

}


/* ABOUT */

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


.about-image {

    position: relative;

}


.about-image img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

}


.about-badge {

    position: absolute;

    right: -25px;

    bottom: 30px;

    padding: 18px 22px;

    background: var(--white);

    border-left: 4px solid var(--saffron);

    box-shadow: var(--shadow-md);

}


.about-badge strong {

    display: block;

    color: var(--maroon);

}


.about-badge span {

    color: var(--text-light);

    font-size: 0.78rem;

}


.about-content h2 {

    margin-bottom: 20px;

}


.about-content p + p {

    margin-top: 15px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: var(--maroon);

    font-weight: 700;

}


.text-link:hover {

    color: var(--saffron);

}


/* CENTERED HEADING */

.centered {

    margin-inline: auto;

    text-align: center;

}


.center-button {

    margin-top: 45px;

    text-align: center;

}


/* ROOMS */

.rooms-section {

    background: var(--cream);

}


.rooms-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.room-card {

    overflow: hidden;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}


.room-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);

}


.room-image {

    position: relative;

    overflow: hidden;

}


.room-image img {

    width: 100%;

    aspect-ratio: 1.35 / 1;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.room-card:hover .room-image img {

    transform: scale(1.05);

}


.room-tag {

    position: absolute;

    left: 15px;

    bottom: 15px;

    padding: 6px 11px;

    color: var(--white);

    background: var(--maroon);

    border-radius: 4px;

    font-size: 0.68rem;

    font-weight: 700;

}


.room-content {

    padding: 25px;

}


.room-content h3 {

    margin-bottom: 10px;

}


.room-content p {

    font-size: 0.88rem;

}


.room-features {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin: 18px 0;

}


.room-features span {

    display: flex;

    align-items: center;

    gap: 5px;

    color: var(--text-light);

    font-size: 0.72rem;

}


.room-features i {

    color: var(--saffron);

}


.room-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--maroon);

    font-size: 0.85rem;

    font-weight: 700;

}


/* WHY */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.why-card {

    padding: 30px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);

}


.why-card:hover {

    border-color: var(--gold);

    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);

}


.why-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    margin-bottom: 20px;

    color: var(--saffron);

    background: var(--cream);

    border-radius: 50%;

}


.why-card h3 {

    margin-bottom: 10px;

    font-size: 1.25rem;

}


/* GALLERY */

.gallery-section {

    background: var(--cream);

}


.gallery-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 20px;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    grid-template-rows:
        260px 260px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-md);

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.gallery-item:hover img {

    transform: scale(1.05);

}


.gallery-large {

    grid-row: span 2;

}


/* PLACES */

.places-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.place-card {

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);

}


.place-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}


.place-card > img {

    width: 100%;

    aspect-ratio: 1.35 / 1;

    object-fit: cover;

}


.place-content {

    padding: 20px;

}


.place-content h3 {

    margin-bottom: 8px;

    font-size: 1.2rem;

}


.place-content p {

    font-size: 0.82rem;

}


/* REVIEWS */

.reviews-section {

    background: var(--cream);

}


.google-rating-summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

}


.google-rating-score {

    text-align: center;

}


.google-rating-score strong {

    display: block;

    color: var(--maroon);

    font-family: "Playfair Display", serif;

    font-size: 3rem;

    line-height: 1;

}


.rating-stars {

    margin: 8px 0;

    color: #F4B400;

}


.google-rating-score span {

    color: var(--text-light);

    font-size: 0.75rem;

}


.google-rating-text strong {

    color: var(--maroon);

    font-size: 1.2rem;

}


.google-rating-text p {

    margin-top: 5px;

    font-size: 0.8rem;

}


.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.review-card {

    padding: 25px;

    background: var(--white);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

}


.review-top {

    display: grid;

    grid-template-columns:
        42px 1fr auto;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

}


.review-avatar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    color: var(--white);

    background: var(--maroon);

    border-radius: 50%;

    font-weight: 700;

}


.review-top h3 {

    font-family: "Inter", sans-serif;

    font-size: 0.85rem;

}


.review-top span {

    display: block;

    color: var(--text-light);

    font-size: 0.65rem;

}


.review-stars {

    color: #F4B400;

    font-size: 0.72rem;

}


.review-card p {

    color: var(--text);

    font-size: 0.86rem;

    line-height: 1.7;

}


.reviews-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 0.75rem;

}


.reviews-note i {

    color: #4285F4;

    font-size: 1rem;

}


/* FAQ */

.faq-section {

    background: var(--white);

}


.faq-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

    align-items: start;

}


.faq-intro h2 {

    margin-bottom: 15px;

}


.faq-list {

    display: grid;

    gap: 10px;

}


.faq-item {

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

}


.faq-item summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    cursor: pointer;

    color: var(--maroon);

    font-weight: 700;

}


.faq-item summary i {

    transition: transform 0.3s ease;

}


.faq-item[open] summary i {

    transform: rotate(45deg);

}


.faq-item p {

    padding: 0 20px 20px;

    font-size: 0.85rem;

}


/* BOOKING CTA */

.booking-cta {

    padding: 75px 0;

    background: var(--maroon);

}


.booking-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.booking-cta h2 {

    color: var(--white);

    margin-bottom: 12px;

}


.booking-cta p {

    color: rgba(255,255,255,0.75);

}


.booking-cta .section-label {

    color: var(--gold-light);

}


.booking-cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.booking-call-btn {

    color: var(--white);

    border: 1px solid rgba(255,255,255,0.5);

}


.booking-call-btn:hover {

    background: rgba(255,255,255,0.1);

}


/* HOMEPAGE MOBILE */

@media (max-width: 1000px) {

    .rooms-grid,
    .places-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .reviews-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-grid,
    .faq-grid {

        gap: 45px;

    }

}


@media (max-width: 768px) {

    .hero-section {

        min-height: 600px;

    }


    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-item:nth-child(2) {

        border-right: 0;

    }


    .trust-item:nth-child(-n+2) {

        border-bottom:
            1px solid rgba(255,255,255,0.12);

    }


    .about-grid,
    .faq-grid {

        grid-template-columns: 1fr;

    }


    .about-badge {

        right: 15px;

    }


    .gallery-heading {

        align-items: flex-start;

        flex-direction: column;

    }


    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            220px 220px 220px;

    }


    .gallery-large {

        grid-row: span 2;

    }


    .google-rating-summary {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .booking-cta-inner {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 575px) {

    .hero-section {

        min-height: 570px;

    }


    .hero-content p {

        font-size: 0.9rem;

    }


    .trust-grid {

        grid-template-columns: 1fr;

    }


    .trust-item {

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,0.12);

    }


    .trust-item:last-child {

        border-bottom: 0;

    }


    .rooms-grid,
    .places-grid,
    .why-grid,
    .reviews-grid {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(5, 220px);

    }


    .gallery-large {

        grid-row: auto;

    }


    .review-top {

        grid-template-columns:
            42px 1fr;

    }


    .review-stars {

        grid-column: 2;

    }

}
/* ================================================================
   INNER PAGE HERO
================================================================ */

.inner-page-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        url("../images/hero/hero.jpg")
        center center / cover
        no-repeat;

}


.inner-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(55, 15, 15, 0.88),
            rgba(55, 15, 15, 0.52),
            rgba(55, 15, 15, 0.20)
        );

}


.inner-page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

}


.inner-page-hero-content h1 {

    margin-bottom: 18px;

    color: var(--white);

}


.inner-page-hero-content h1 span {

    color: var(--gold-light);

}


.inner-page-hero-content p {

    max-width: 600px;

    color: rgba(255,255,255,0.85);

}


/* ================================================================
   BREADCRUMB
================================================================ */

.breadcrumb-wrapper {

    background: var(--cream);

    border-bottom: 1px solid var(--border);

}


.breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    min-height: 55px;

    color: var(--text-light);

    font-size: 0.78rem;

}


.breadcrumb a {

    color: var(--maroon);

    font-weight: 600;

}


.breadcrumb i {

    color: var(--gold);

    font-size: 0.65rem;

}


/* ================================================================
   ABOUT INTRO
================================================================ */

.about-intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


.about-main-image img {

    width: 100%;

    aspect-ratio: 1.15 / 1;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

}


.about-main-content h2 {

    margin-bottom: 20px;

}


.about-main-content p + p {

    margin-top: 15px;

}


.about-contact-box {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding: 18px;

    background: var(--cream);

    border-left: 4px solid var(--saffron);

}


.about-contact-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    color: var(--white);

    background: var(--maroon);

    border-radius: 50%;

}


.about-contact-box span {

    display: block;

    color: var(--text-light);

    font-size: 0.75rem;

}


.about-contact-box a {

    display: block;

    margin-top: 2px;

    color: var(--maroon);

    font-weight: 700;

}


/* ================================================================
   APPROACH
================================================================ */

.approach-section {

    background: var(--cream);

}


.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.approach-card {

    padding: 30px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);

}


.approach-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--gold);

}


.approach-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    margin-bottom: 20px;

    color: var(--saffron);

    background: var(--cream);

    border-radius: 50%;

    font-size: 1.2rem;

}


.approach-card h3 {

    margin-bottom: 10px;

    font-size: 1.25rem;

}


.approach-card p {

    font-size: 0.84rem;

}


/* ================================================================
   PROPERTY SECTION
================================================================ */

.property-section {

    background: var(--white);

}


.property-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


.property-content h2 {

    margin-bottom: 20px;

}


.property-content p + p {

    margin-top: 15px;

}


.property-image img {

    width: 100%;

    aspect-ratio: 1.15 / 1;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

}


/* ================================================================
   CHECK LIST
================================================================ */

.check-list {

    display: grid;

    gap: 12px;

    margin: 25px 0 30px;

}


.check-list li {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: var(--text);

    font-size: 0.88rem;

}


.check-list i {

    margin-top: 5px;

    color: var(--saffron);

}


/* ================================================================
   SRISAILAM ABOUT
================================================================ */

.srisailam-about-section {

    background: var(--cream);

}


.srisailam-about-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.srisailam-about-card {

    padding: 35px 30px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);

}


.srisailam-about-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}


.srisailam-about-card > i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 65px;

    height: 65px;

    margin: 0 auto 20px;

    color: var(--saffron);

    background: var(--cream);

    border-radius: 50%;

    font-size: 1.4rem;

}


.srisailam-about-card h3 {

    margin-bottom: 10px;

}


.srisailam-about-card p {

    font-size: 0.85rem;

}


/* ================================================================
   QUICK FACTS
================================================================ */

.quick-facts {

    background: var(--maroon);

}


.quick-facts-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.quick-fact {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 30px 20px;

    border-right:
        1px solid rgba(255,255,255,0.12);

}


.quick-fact:last-child {

    border-right: 0;

}


.quick-fact > i {

    color: var(--gold-light);

    font-size: 1.4rem;

}


.quick-fact strong {

    display: block;

    color: var(--white);

    font-size: 0.85rem;

}


.quick-fact span {

    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.62);

    font-size: 0.7rem;

}


/* ================================================================
   ABOUT FAQ
================================================================ */

.about-faq-list {

    max-width: 850px;

    margin-inline: auto;

}


/* ================================================================
   INNER PAGE CTA
================================================================ */

.inner-page-cta {

    padding: 70px 0;

    background: var(--maroon);

}


.inner-page-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.inner-page-cta h2 {

    color: var(--white);

    margin-bottom: 10px;

}


.inner-page-cta p {

    color: rgba(255,255,255,0.75);

}


.inner-page-cta .section-label {

    color: var(--gold-light);

}


.inner-page-cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.cta-whatsapp-btn {

    color: var(--white);

    border: 1px solid rgba(255,255,255,0.45);

}


.cta-whatsapp-btn:hover {

    background: #25D366;

    border-color: #25D366;

}


/* ================================================================
   ABOUT RESPONSIVE
================================================================ */

@media (max-width: 1000px) {

    .about-intro-grid,
    .property-grid {

        gap: 45px;

    }


    .approach-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-facts-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-fact:nth-child(2) {

        border-right: 0;

    }


    .quick-fact:nth-child(-n+2) {

        border-bottom:
            1px solid rgba(255,255,255,0.12);

    }

}


@media (max-width: 768px) {

    .inner-page-hero {

        min-height: 380px;

    }


    .about-intro-grid,
    .property-grid {

        grid-template-columns: 1fr;

    }


    .about-main-image {

        max-width: 700px;

        margin-inline: auto;

    }


    .property-content {

        order: 1;

    }


    .property-image {

        order: 2;

    }


    .srisailam-about-grid {

        grid-template-columns: 1fr;

    }


    .inner-page-cta-inner {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 575px) {

    .inner-page-hero {

        min-height: 340px;

    }


    .approach-grid {

        grid-template-columns: 1fr;

    }


    .quick-facts-grid {

        grid-template-columns: 1fr;

    }


    .quick-fact {

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,0.12);

    }


    .quick-fact:last-child {

        border-bottom: 0;

    }

}

/* ================================================================
   ROOMS PAGE
================================================================ */


/* ROOMS INTRO */

.rooms-intro {

    padding-bottom: 35px;

}


.rooms-list-section {

    padding-top: 35px;

    background: var(--cream);

}


/* ROOM DETAIL GRID */

.rooms-list-grid {

    display: grid;

    gap: 35px;

}


.room-detail-card {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}


.room-detail-card:hover {

    box-shadow: var(--shadow-md);

}


/* ROOM IMAGE */

.room-detail-image {

    position: relative;

    min-height: 450px;

    overflow: hidden;

}


.room-detail-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.room-detail-card:hover
.room-detail-image img {

    transform: scale(1.04);

}


.room-detail-badge {

    position: absolute;

    left: 20px;

    bottom: 20px;

    padding: 8px 13px;

    color: var(--white);

    background: var(--maroon);

    border-radius: 4px;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.5px;

}


/* ROOM CONTENT */

.room-detail-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;

}


.room-type-label {

    display: block;

    margin-bottom: 5px;

    color: var(--saffron);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.room-detail-title h2 {

    margin-bottom: 15px;

}


.room-detail-content > p {

    max-width: 600px;

}


/* AMENITIES */

.room-amenities {

    margin-top: 25px;

}


.room-amenities h3 {

    margin-bottom: 15px;

    font-family: "Inter", sans-serif;

    font-size: 0.95rem;

}


.amenities-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

}


.amenities-grid span {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--text-light);

    font-size: 0.8rem;

}


.amenities-grid i {

    width: 18px;

    color: var(--saffron);

    text-align: center;

}


/* ACTIONS */

.room-card-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

}


.room-enquire-link {

    color: var(--maroon);

    font-size: 0.85rem;

    font-weight: 700;

}


.room-enquire-link:hover {

    color: var(--saffron);

}


/* BOOKING INFORMATION */

.room-booking-info {

    background: var(--white);

}


.room-booking-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


.room-booking-image img {

    width: 100%;

    aspect-ratio: 1.15 / 1;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

}


.room-booking-content h2 {

    margin-bottom: 20px;

}


.booking-info-points {

    display: grid;

    gap: 15px;

    margin: 25px 0 30px;

}


.booking-info-points div {

    display: flex;

    align-items: center;

    gap: 12px;

}


.booking-info-points i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    color: var(--saffron);

    background: var(--cream);

    border-radius: 50%;

}


.booking-info-points span {

    color: var(--text);

    font-size: 0.85rem;

}


/* ROOMS WHY */

.rooms-why-section {

    background: var(--cream);

}


.rooms-why-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.rooms-why-card {

    padding: 35px 30px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);

}


.rooms-why-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--gold);

}


.rooms-why-card > i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin: 0 auto 20px;

    color: var(--saffron);

    background: var(--cream);

    border-radius: 50%;

    font-size: 1.3rem;

}


.rooms-why-card h3 {

    margin-bottom: 10px;

}


.rooms-why-card p {

    font-size: 0.84rem;

}


/* FAQ */

.room-faq-section {

    background: var(--white);

}


.room-faq-list {

    max-width: 900px;

    margin-inline: auto;

}


/* ================================================================
   ROOMS RESPONSIVE
================================================================ */

@media (max-width: 900px) {

    .room-detail-card {

        grid-template-columns: 1fr;

    }


    .room-detail-image {

        min-height: 350px;

    }


    .room-detail-content {

        padding: 35px;

    }


    .room-booking-grid {

        gap: 45px;

    }

}


@media (max-width: 768px) {

    .room-booking-grid {

        grid-template-columns: 1fr;

    }


    .rooms-why-grid {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 575px) {

    .room-detail-image {

        min-height: 260px;

    }


    .room-detail-content {

        padding: 25px;

    }


    .amenities-grid {

        grid-template-columns:
            1fr;

    }


    .room-card-actions {

        align-items: flex-start;

        flex-direction: column;

    }

}

/* =========================================
   FACILITIES PAGE
========================================= */

.facilities-intro {
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.facility-card {
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 33, 27, 0.05);
}

.facility-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(45, 33, 27, 0.10);
    border-color: rgba(201, 154, 46, 0.45);
}

.facility-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.facility-card h3 {
    margin-bottom: 10px;
    color: var(--dark-brown);
    font-size: 21px;
}

.facility-card p {
    margin: 0;
    color: #6c625d;
    line-height: 1.7;
    font-size: 15px;
}


/* =========================================
   FACILITY HIGHLIGHTS
========================================= */

.facility-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.facility-highlight {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 16px;
    padding: 28px;
    transition: 0.3s ease;
}

.facility-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(45, 33, 27, 0.08);
}

.highlight-number {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--deep-maroon);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
}

.facility-highlight h3 {
    margin-bottom: 7px;
    color: var(--dark-brown);
}

.facility-highlight p {
    margin: 0;
    color: #6c625d;
    line-height: 1.65;
}


/* =========================================
   MINI PLACE CARDS
========================================= */

.mini-place-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.mini-place-card {
    display: block;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(107, 30, 30, 0.10);
    box-shadow: 0 8px 25px rgba(45, 33, 27, 0.06);
    transition: 0.3s ease;
}

.mini-place-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(45, 33, 27, 0.12);
}

.mini-place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.mini-place-content {
    padding: 20px;
}

.mini-place-content h3 {
    margin: 0 0 10px;
    color: var(--dark-brown);
    font-size: 20px;
}

.mini-place-content span {
    color: var(--deep-maroon);
    font-size: 14px;
    font-weight: 600;
}

.mini-place-content span i {
    margin-left: 5px;
    transition: 0.3s ease;
}

.mini-place-card:hover .mini-place-content span i {
    transform: translateX(5px);
}


/* =========================================
   FACILITIES RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-place-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .facility-card {
        padding: 25px 20px;
    }

    .facility-highlight-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .facility-highlight {
        padding: 22px;
    }

    .mini-place-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mini-place-card img {
        height: 210px;
    }

}


/* =========================================
   GALLERY PAGE
========================================= */

.gallery-intro {
    background: var(--white);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.gallery-page-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: var(--dark-brown);
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 25px rgba(45, 33, 27, 0.08);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 33, 27, 0.35);
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-page-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--white);
    color: var(--deep-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 20px;
    background: var(--cream);
    border-radius: 16px;
}

.gallery-empty > i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.gallery-empty h3 {
    margin-bottom: 10px;
    color: var(--dark-brown);
}

.gallery-empty p {
    color: #6c625d;
}


/* =========================================
   GALLERY RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

}


@media (max-width: 600px) {

    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-page-item {
        aspect-ratio: 4 / 3;
    }

}

 /* =========================================
    SRISAILAM PAGE
 ========================================= */

.srisailam-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(45, 33, 27, 0.88),
            rgba(107, 30, 30, 0.60)
        ),
        url("../images/places/srisailam.jpg") center/cover no-repeat;
}


.srisailam-places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 45px;
}


.srisailam-place-card {
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(45, 33, 27, 0.06);
    transition: 0.3s ease;
}


.srisailam-place-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(45, 33, 27, 0.12);
}


.srisailam-place-image {
    height: 230px;
    overflow: hidden;
}


.srisailam-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.srisailam-place-card:hover .srisailam-place-image img {
    transform: scale(1.06);
}


.srisailam-place-content {
    position: relative;
    padding: 27px;
}


.place-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}


.srisailam-place-content h3 {
    color: var(--dark-brown);
    font-size: 21px;
    margin-bottom: 10px;
}


.srisailam-place-content p {
    color: #6c625d;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 17px;
}


/* =========================================
   TRAVEL TIPS
 ========================================= */

.travel-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}


.travel-tip-card {
    padding: 28px 22px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 16px;
    transition: 0.3s ease;
}


.travel-tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(45, 33, 27, 0.08);
}


.travel-tip-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    font-size: 24px;
}


.travel-tip-card h3 {
    color: var(--dark-brown);
    margin-bottom: 9px;
    font-size: 19px;
}


.travel-tip-card p {
    margin: 0;
    color: #6c625d;
    line-height: 1.65;
    font-size: 14px;
}


/* =========================================
   BOOKING INFO
 ========================================= */

.booking-info-section {
    background: var(--cream);
}


.booking-info-box {
    position: relative;
    overflow: hidden;
    padding: 55px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.12);
    box-shadow: 0 12px 35px rgba(45, 33, 27, 0.07);
}


.booking-info-box::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(201, 154, 46, 0.10);
}


.booking-info-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}


.booking-info-content h2 {
    margin-bottom: 16px;
}


.booking-info-content p {
    color: #6c625d;
    line-height: 1.8;
}


.booking-info-content strong {
    color: var(--deep-maroon);
}


/* =========================================
   RESPONSIVE
 ========================================= */

@media (max-width: 1100px) {

    .srisailam-places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .srisailam-places-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .srisailam-place-image {
        height: 220px;
    }

    .srisailam-place-content {
        padding: 22px;
    }

    .travel-tips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .travel-tip-card {
        padding: 24px 20px;
    }

    .booking-info-box {
        padding: 30px 22px;
    }

}


@media (max-width: 480px) {

    .srisailam-place-image {
        height: 200px;
    }

    .booking-info-box {
        padding: 26px 18px;
        border-radius: 16px;
    }

}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(45, 33, 27, 0.88),
            rgba(107, 30, 30, 0.65)
        ),
        url("../images/property/exterior.jpg") center/cover no-repeat;
}


/* =========================================
   CONTACT LAYOUT
========================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
    margin-top: 45px;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.contact-info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 23px;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 15px;
    transition: 0.3s ease;
}


.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 33, 27, 0.08);
}


.contact-card-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


.contact-card-icon.whatsapp-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.10);
}


.contact-info-card span {
    display: block;
    color: var(--saffron);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 5px;
}


.contact-info-card h3 {
    color: var(--dark-brown);
    font-size: 18px;
    margin-bottom: 5px;
}


.contact-info-card h3 a {
    color: inherit;
}


.contact-info-card p {
    margin: 0;
    color: #6c625d;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   QUICK BOOKING
========================================= */

.contact-quick-book {
    margin-top: 5px;
    padding: 28px;
    border-radius: 17px;
    background: var(--deep-maroon);
    color: var(--white);
}


.contact-quick-book .eyebrow {
    color: var(--gold);
}


.contact-quick-book h3 {
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin: 7px 0 10px;
}


.contact-quick-book p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 20px;
}


.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}


.btn-whatsapp:hover {
    background: #1fb85a;
    color: #fff;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 12px 35px rgba(45, 33, 27, 0.07);
}


.contact-form-heading {
    margin-bottom: 28px;
}


.contact-form-heading h2 {
    margin: 5px 0 10px;
}


.contact-form-heading p {
    margin: 0;
    color: #6c625d;
    line-height: 1.7;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.form-group label {
    color: var(--dark-brown);
    font-size: 14px;
    font-weight: 600;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ded6cf;
    border-radius: 9px;
    background: #fffdf9;
    color: var(--dark-brown);
    padding: 13px 14px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.08);
}


.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


.btn-full {
    width: 100%;
    justify-content: center;
}


.form-note {
    text-align: center;
    color: #8a817a;
    font-size: 12px;
    margin: 0;
}


/* =========================================
   LOCATION
========================================= */

.location-box {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 25px;
    margin-top: 40px;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(107, 30, 30, 0.10);
    box-shadow: 0 10px 30px rgba(45, 33, 27, 0.07);
}


.location-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


.location-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 20px;
}


.location-details h3 {
    color: var(--dark-brown);
    font-size: 25px;
    margin-bottom: 8px;
}


.location-details p {
    color: #6c625d;
    line-height: 1.7;
    margin-bottom: 22px;
}


.location-map {
    min-height: 400px;
}


.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}


/* =========================================
   BOOKING STEPS
========================================= */

.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}


.booking-step {
    position: relative;
    padding: 30px 25px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 17px;
    transition: 0.3s ease;
}


.booking-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(45, 33, 27, 0.08);
}


.booking-step-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: rgba(107, 30, 30, 0.16);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
}


.booking-step-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}


.booking-step h3 {
    color: var(--dark-brown);
    font-size: 20px;
    margin-bottom: 9px;
}


.booking-step p {
    margin: 0;
    color: #6c625d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .location-box {
        grid-template-columns: 1fr;
    }

    .location-details {
        padding: 30px;
    }

}


@media (max-width: 768px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form-box {
        padding: 28px 22px;
    }

    .booking-steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .location-map,
    .location-map iframe {
        min-height: 320px;
    }

}


@media (max-width: 480px) {

    .contact-info-card {
        padding: 19px;
    }

    .contact-card-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .contact-quick-book {
        padding: 24px 20px;
    }

    .contact-form-box {
        padding: 24px 17px;
    }

    .location-details {
        padding: 25px 20px;
    }

}


/* =========================================
   BOOKING PAGE
========================================= */

.booking-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(45, 33, 27, 0.90),
            rgba(107, 30, 30, 0.68)
        ),
        url("../images/rooms/room-detail.jpg") center/cover no-repeat;
}


/* =========================================
   BOOKING LAYOUT
========================================= */

.booking-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}


.booking-content {
    padding-top: 15px;
}


.booking-content h2 {
    margin-bottom: 18px;
}


.booking-content > p {
    color: #6c625d;
    line-height: 1.8;
}


.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}


.booking-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}


.booking-benefit-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


.booking-benefit h3 {
    color: var(--dark-brown);
    font-size: 18px;
    margin-bottom: 4px;
}


.booking-benefit p {
    margin: 0;
    color: #6c625d;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   BOOKING FORM
========================================= */

.booking-form-box {
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.11);
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 15px 40px rgba(45, 33, 27, 0.09);
}


.booking-form-header {
    margin-bottom: 28px;
}


.booking-form-header h2 {
    margin: 5px 0 8px;
}


.booking-form-header p {
    margin: 0;
    color: #6c625d;
    line-height: 1.6;
}


.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.booking-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.booking-form .form-group label {
    color: var(--dark-brown);
    font-size: 14px;
    font-weight: 600;
}


.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ddd5ce;
    border-radius: 9px;
    background: #fffdf9;
    color: var(--dark-brown);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;
}


.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.08);
}


.booking-form textarea {
    min-height: 105px;
    resize: vertical;
}


.booking-form .btn-full {
    width: 100%;
    justify-content: center;
}


.booking-form-note {
    text-align: center;
    margin: 0;
    color: #8a817a;
    font-size: 12px;
}


/* =========================================
   BOOKING PROCESS
========================================= */

.booking-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}


.booking-process-card {
    position: relative;
    padding: 32px 25px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 17px;
    transition: 0.3s ease;
}


.booking-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(45, 33, 27, 0.08);
}


.process-number {
    position: absolute;
    top: 14px;
    right: 17px;
    color: rgba(107, 30, 30, 0.16);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
}


.process-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}


.booking-process-card h3 {
    color: var(--dark-brown);
    font-size: 20px;
    margin-bottom: 8px;
}


.booking-process-card p {
    margin: 0;
    color: #6c625d;
    line-height: 1.7;
    font-size: 14px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 768px) {

    .booking-form-box {
        padding: 28px 22px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


@media (max-width: 480px) {

    .booking-form-box {
        padding: 24px 17px;
        border-radius: 16px;
    }

    .booking-benefit-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

}
/* =========================================
   ROOM DETAIL PAGE
========================================= */

.room-detail-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(45, 33, 27, 0.90),
            rgba(107, 30, 30, 0.62)
        ),
        url("../images/rooms/room-detail.jpg") center/cover no-repeat;
}

.room-detail-hero-content {
    max-width: 780px;
    color: var(--white);
}

.room-detail-hero h1 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 62px);
    margin: 8px 0 18px;
}

.room-detail-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
}

.room-detail-hero .breadcrumb {
    margin-top: 25px;
}


/* =========================================
   ROOM DETAIL LAYOUT
========================================= */

.room-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.room-detail-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 33, 27, 0.12);
}

.room-detail-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.room-detail-content h2 {
    margin: 7px 0 18px;
}

.room-detail-content > p {
    color: #6c625d;
    line-height: 1.8;
}

.amenities-title {
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--dark-brown);
    font-size: 21px;
}


/* =========================================
   ROOM AMENITIES
========================================= */

.room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #554b45;
    font-size: 14px;
}

.room-amenity i {
    color: var(--saffron);
}


/* =========================================
   ROOM ACTIONS
========================================= */

.room-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.room-booking-note {
    font-size: 12px !important;
    color: #8a817a !important;
    margin-top: 13px;
}


/* =========================================
   BOOKING BANNER
========================================= */

.room-booking-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 48px;
    border-radius: 22px;
    background: var(--deep-maroon);
    color: var(--white);
}

.room-booking-banner-content {
    max-width: 720px;
}

.room-booking-banner .eyebrow {
    color: var(--gold);
}

.room-booking-banner h2 {
    color: var(--white);
    margin: 7px 0 12px;
}

.room-booking-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}


/* =========================================
   ROOM BENEFITS
========================================= */

.room-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.room-benefit {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid rgba(107, 30, 30, 0.10);
    border-radius: 16px;
    transition: 0.3s ease;
}

.room-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(45, 33, 27, 0.08);
}

.room-benefit-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: rgba(232, 117, 26, 0.10);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.room-benefit h3 {
    color: var(--dark-brown);
    font-size: 18px;
    margin-bottom: 8px;
}

.room-benefit p {
    margin: 0;
    color: #6c625d;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .room-detail-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .room-detail-image img {
        height: 450px;
    }

    .room-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .room-detail-hero {
        min-height: 390px;
    }

    .room-detail-hero h1 {
        font-size: 38px;
    }

    .room-detail-hero p {
        font-size: 15px;
    }

    .room-detail-image img {
        height: 350px;
    }

    .room-amenities {
        grid-template-columns: 1fr;
    }

    .room-detail-actions {
        flex-direction: column;
    }

    .room-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .room-booking-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
    }

    .room-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}


@media (max-width: 480px) {

    .room-detail-hero {
        min-height: 350px;
    }

    .room-detail-hero h1 {
        font-size: 32px;
    }

    .room-detail-image {
        border-radius: 15px;
    }

    .room-detail-image img {
        height: 290px;
    }

    .room-booking-banner {
        border-radius: 16px;
        padding: 27px 20px;
    }

}

