```css
/* =========================================================
   MALLIKARJUNA SADAN
   PREMIUM HOSPITALITY WEBSITE
   COMPLETE MAIN CSS
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #263936;
    background: #ffffff;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.home-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --green-dark: #173f3b;
    --green: #245c55;
    --green-mid: #315f58;
    --green-light: #e9f0ed;

    --gold: #c29a55;
    --gold-dark: #a47c3c;
    --gold-light: #f5ead6;

    --cream: #f8f6f1;
    --cream-dark: #eee9df;

    --white: #ffffff;

    --text: #263936;
    --text-light: #687570;
    --text-muted: #8b9691;

    --border: #e3e6e2;

    --shadow: 0 20px 55px rgba(23, 63, 59, 0.10);
    --shadow-small: 0 10px 30px rgba(23, 63, 59, 0.08);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    width: 100%;
    min-height: 40px;
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-contact i {
    color: var(--gold);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-social a {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    font-size: 10px;

    transition: all 0.3s ease;
}

.top-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #eeeeeb;
}

.header-inner {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-dark);
    color: var(--gold);

    border-radius: 50%;

    font-size: 17px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: var(--green-dark);

    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;
}

.logo-text small {
    margin-top: 5px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.main-nav a {
    position: relative;

    padding: 31px 0;

    color: #364944;

    font-size: 13px;
    font-weight: 600;

    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--green-dark);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 20px;

    background: var(--green-dark);
    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.header-btn:hover {
    background: var(--gold-dark);
}

.header-btn i {
    font-size: 10px;
}

.mobile-menu-btn {
    display: none;

    border: 0;
    outline: 0;

    background: transparent;
    color: var(--green-dark);

    font-size: 23px;

    padding: 5px;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(12, 42, 39, 0.96) 0%,
            rgba(23, 63, 59, 0.84) 48%,
            rgba(23, 63, 59, 0.42) 100%
        ),
        linear-gradient(
            135deg,
            #315f58,
            #173f3b 60%,
            #102f2c
        );
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -240px;
    top: -210px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 50%;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: 80px;
    bottom: -250px;

    border: 1px solid rgba(194, 154, 85, 0.25);

    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 790px;

    padding: 100px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-tag::before {
    content: "";

    width: 34px;
    height: 1px;

    background: var(--gold);
}

.hero-content h1 {
    margin: 0;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.07;

    font-weight: 600;

    letter-spacing: -1.5px;
}

.hero-content h1 span {
    display: block;

    color: var(--gold);
}

.hero-content p {
    max-width: 650px;

    margin: 25px 0 32px;

    color: rgba(255, 255, 255, 0.79);

    font-size: 15px;

    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.btn-light,
.btn-gold {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 23px;

    font-size: 12px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
}

.hero-scroll {
    position: absolute;

    right: 38px;
    bottom: 32px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 9px;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-scroll i {
    color: var(--gold);

    animation: scrollArrow 1.8s infinite;
}

@keyframes scrollArrow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   QUICK INFORMATION
========================================================= */

.quick-info-section {
    position: relative;

    z-index: 5;

    margin-top: -42px;
}

.quick-info-box {
    display: grid;

    grid-template-columns:
        1.15fr
        0.9fr
        1.15fr
        auto;

    background: var(--white);

    border-top: 3px solid var(--gold);

    box-shadow: var(--shadow);
}

.quick-info-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 22px 20px;

    border-right: 1px solid var(--border);
}

.quick-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-light);
    color: var(--green-dark);

    border-radius: 50%;
}

.quick-info-item span {
    display: block;

    margin-bottom: 2px;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.quick-info-item strong {
    display: block;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
}

.quick-info-action {
    min-width: 175px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-dark);
}

.quick-info-action a {
    color: var(--white);

    font-size: 12px;
    font-weight: 800;
}

.quick-info-action i {
    margin-left: 7px;

    color: var(--gold);
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.about-section,
.rooms-section,
.facilities-section,
.temple-section,
.destination-section,
.why-section,
.gallery-section,
.reviews-section,
.faq-section {
    padding: 105px 0;
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading.centered {
    max-width: 740px;

    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    width: 25px;
    height: 1px;

    background: var(--gold);
}

.section-heading h2,
.about-content h2,
.destination-content h2,
.faq-intro h2 {
    margin: 12px 0 17px;

    color: var(--green-dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 49px);

    line-height: 1.18;

    font-weight: 600;
}

.section-heading h2 strong,
.about-content h2 strong,
.destination-content h2 strong,
.faq-intro h2 strong {
    display: block;

    color: var(--gold-dark);

    font-weight: 600;
}

.section-heading p {
    margin: 0;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 85px;

    align-items: center;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-visual {
    position: relative;

    width: 100%;

    min-height: 500px;

    overflow: visible;
}

.about-visual img {
    position: relative;

    width: calc(100% - 45px);

    height: 500px;

    object-fit: cover;

    display: block;

    border-radius: 0;

    box-shadow: var(--shadow);
}


/* Image decorative frame */

.about-visual::before {
    content: "";

    position: absolute;

    top: 25px;
    right: 20px;

    width: calc(100% - 45px);
    height: calc(100% - 50px);

    border: 1px solid var(--gold);

    z-index: 0;

    pointer-events: none;
}


/* Make image stay above frame */

.about-visual img {
    z-index: 1;
}


/* =========================================================
   ABOUT BADGE
========================================================= */

.about-badge {
    position: absolute;

    right: 0;
    bottom: 30px;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--white);

    border-radius: 50%;

    box-shadow: var(--shadow-small);

    z-index: 3;
}

.about-badge strong {
    font-family: "Playfair Display", serif;

    font-size: 23px;

    line-height: 1.2;
}

.about-badge span {
    margin-top: 4px;

    font-size: 10px;

    letter-spacing: 1px;

    text-align: center;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content p {
    margin: 0 0 17px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px 25px;

    margin: 28px 0 30px;
}

.about-points div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
}

.about-points i {
    color: var(--gold-dark);
}

.text-btn {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--gold);

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.text-btn i {
    color: var(--gold-dark);

    transition: transform 0.3s ease;
}

.text-btn:hover {
    color: var(--gold-dark);
}

.text-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ROOMS
========================================================= */

.rooms-section {
    background: var(--cream);
}

.rooms-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.room-card {
    position: relative;

    padding: 37px 30px 32px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    transition: all 0.35s ease;
}

.room-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}

.room-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.room-card:hover::before {
    transform: scaleX(1);
}

.featured-room {
    background: var(--green-dark);
}

.featured-room h3 {
    color: var(--white);
}

.featured-room p {
    color: rgba(255, 255, 255, 0.66);
}

.featured-room .room-number {
    color: rgba(255, 255, 255, 0.12);
}

.featured-room .room-features {
    border-color: rgba(255, 255, 255, 0.12);
}

.featured-room .room-features span {
    color: rgba(255, 255, 255, 0.78);
}

.featured-room .room-link {
    color: var(--gold);
}

.room-icon-box {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: var(--green-light);
    color: var(--green-dark);

    border-radius: 50%;

    font-size: 22px;
}

.featured-room .room-icon-box {
    background: rgba(255, 255, 255, 0.10);
    color: var(--gold);
}

.room-number {
    position: absolute;

    top: 28px;
    right: 28px;

    color: rgba(23, 63, 59, 0.08);

    font-family: "Playfair Display", serif;

    font-size: 46px;

    font-weight: 700;

    line-height: 1;
}

.room-card h3 {
    margin: 0 0 10px;

    color: var(--green-dark);

    font-family: "Playfair Display", serif;

    font-size: 24px;

    font-weight: 600;
}

.room-card p {
    min-height: 82px;

    margin: 0 0 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.8;
}

.room-features {
    display: flex;
    flex-direction: column;

    gap: 9px;

    padding: 17px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.room-features span {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #596864;

    font-size: 11px;

    font-weight: 600;
}

.room-features i {
    width: 16px;

    color: var(--gold-dark);

    text-align: center;
}

.room-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}

.room-link i {
    transition: transform 0.3s ease;
}

.room-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FACILITIES
========================================================= */

.facilities-section {
    background: var(--white);
}

.facilities-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.facility-card {
    min-height: 205px;

    padding: 30px 25px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: background 0.3s ease;
}

.facility-card:hover {
    background: var(--cream);
}

.facility-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: var(--green-light);
    color: var(--green-dark);

    border-radius: 50%;

    font-size: 17px;

    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background: var(--gold);
    color: var(--white);
}

.facility-card h3 {
    margin: 0 0 7px;

    color: var(--green-dark);

    font-family: "Playfair Display", serif;

    font-size: 19px;

    font-weight: 600;
}

.facility-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   NEARBY TEMPLE
========================================================= */

.temple-section {
    position: relative;

    overflow: hidden;

    background: var(--green-dark);
}

.temple-section::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -220px;
    top: -250px;

    border: 1px solid rgba(194, 154, 85, 0.20);

    border-radius: 50%;
}

.temple-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -190px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.temple-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.temple-visual {
    min-height: 430px;

    padding: 50px 40px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #285b53,
            #102f2c
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    text-align: center;
}

.temple-icon-wrap {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(194, 154, 85, 0.55);

    border-radius: 50%;

    color: var(--gold);

    font-size: 31px;
}

.temple-location-label {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.temple-visual h3 {
    margin: 13px 0 15px;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: 29px;

    line-height: 1.3;

    font-weight: 600;
}

.temple-visual h3 strong {
    display: block;

    color: var(--gold);

    font-weight: 600;
}

.temple-visual p {
    max-width: 430px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.85;
}

.temple-content .section-label {
    color: var(--gold);
}

.temple-content h2 {
    margin: 13px 0 20px;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 49px);

    line-height: 1.2;

    font-weight: 600;
}

.temple-content h2 strong {
    display: block;

    color: var(--gold);

    font-weight: 600;
}

.temple-content > p {
    margin: 0 0 17px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;

    line-height: 1.9;
}

.temple-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin: 28px 0 30px;
}

.temple-points div {
    padding: 17px 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

.temple-points i {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 17px;
}

.temple-points span {
    color: rgba(255, 255, 255, 0.74);

    font-size: 9px;

    font-weight: 700;
}

.temple-map-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 49px;

    padding: 0 21px;

    background: var(--gold);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    transition: all 0.3s ease;
}

.temple-map-btn:hover {
    background: var(--gold-dark);

    transform: translateY(-2px);
}


/* =========================================================
   DESTINATION
========================================================= */

.destination-section {
    background: var(--cream);
}

.destination-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;
}

.destination-content p {
    margin: 0 0 17px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;
}

.destination-highlights {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin: 28px 0 30px;
}

.destination-highlights div {
    padding: 15px 10px;

    background: var(--white);

    border: 1px solid var(--border);

    text-align: center;
}

.destination-highlights i {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-dark);

    font-size: 18px;
}

.destination-highlights span {
    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;
}

.destination-visual {
    position: relative;

    min-height: 450px;

    overflow: hidden;
}

.destination-placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #d2b171,
            #a47c3c
        );

    color: var(--white);

    text-align: center;
}

.destination-placeholder::before {
    content: "";

    position: absolute;

    inset: 22px;

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.destination-placeholder i {
    position: relative;

    margin-bottom: 15px;

    font-size: 48px;
}

.destination-placeholder strong {
    position: relative;

    font-family: "Playfair Display", serif;

    font-size: 32px;
}

.destination-placeholder span {
    position: relative;

    margin-top: 5px;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    position: relative;

    min-height: 265px;

    padding: 34px 25px;

    overflow: hidden;

    background: var(--cream);

    border: 1px solid var(--border);
}

.why-card > span {
    position: absolute;

    top: 14px;
    right: 20px;

    color: rgba(23, 63, 59, 0.08);

    font-family: "Playfair Display", serif;

    font-size: 45px;

    font-weight: 700;
}

.why-card i {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 21px;

    background: var(--green-dark);

    color: var(--gold);

    border-radius: 50%;
}

.why-card h3 {
    margin: 0 0 9px;

    color: var(--green-dark);

    font-family: "Playfair Display", serif;

    font-size: 20px;

    font-weight: 600;
}

.why-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    background: var(--cream);
}

.gallery-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    grid-template-rows: 210px 210px;

    gap: 12px;
}

.gallery-placeholder {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--green-dark);

    color: rgba(255, 255, 255, 0.80);
}

.gallery-placeholder::before {
    content: "";

    position: absolute;

    inset: 14px;

    border: 1px solid rgba(255, 255, 255, 0.13);
}

.gallery-placeholder i {
    position: relative;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 30px;
}

.gallery-placeholder span {
    position: relative;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.gallery-placeholder.large {
    grid-row: 1 / 3;
}

.gallery-placeholder:nth-child(2) {
    background: #28544e;
}

.gallery-placeholder:nth-child(3) {
    background: #3d655f;
}

.gallery-placeholder:nth-child(4) {
    background: #a47c3c;
}

.gallery-placeholder:nth-child(5) {
    background: #6d705d;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    background: var(--white);
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.review-card {
    padding: 32px 28px;

    background: var(--cream);

    border: 1px solid var(--border);
}

.review-stars {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 15px;

    letter-spacing: 3px;
}

.review-card > p {
    margin: 0 0 25px;

    color: #55635f;

    font-family: "Playfair Display", serif;

    font-size: 16px;

    line-height: 1.8;

    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;

    gap: 11px;

    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-dark);

    color: var(--gold);

    border-radius: 50%;

    font-family: "Playfair Display", serif;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author strong {
    color: var(--green-dark);

    font-size: 11px;
}

.review-author span {
    margin-top: 2px;

    color: #8a9490;

    font-size: 9px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--cream);
}

.faq-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 85px;

    align-items: start;
}

.faq-intro p {
    margin: 0 0 28px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.faq-list details {
    background: var(--white);

    border: 1px solid var(--border);
}

.faq-list summary {
    position: relative;

    list-style: none;

    padding: 20px 50px 20px 22px;

    color: var(--green-dark);

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    position: absolute;

    top: 50%;
    right: 20px;

    color: var(--gold-dark);

    transform: translateY(-50%);

    transition: transform 0.3s ease;
}

.faq-list details[open] summary i {
    transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
    margin: 0;

    padding: 0 22px 20px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            #102f2c,
            #173f3b
        );
}

.final-cta-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -250px;

    border: 1px solid rgba(194, 154, 85, 0.20);

    border-radius: 50%;
}

.final-cta-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -160px;
    bottom: -190px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.final-cta-content {
    position: relative;

    z-index: 2;

    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}

.final-cta-content > span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.final-cta-content h2 {
    margin: 13px 0 15px;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(36px, 4vw, 53px);

    line-height: 1.2;

    font-weight: 600;
}

.final-cta-content h2 strong {
    display: block;

    color: var(--gold);

    font-weight: 600;
}

.final-cta-content p {
    max-width: 590px;

    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.69);

    font-size: 14px;
}

.cta-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn-light {
    background: var(--white);

    color: var(--green-dark);
}

.btn-light:hover {
    background: var(--cream);
}

.btn-gold {
    background: var(--gold);

    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #102f2c;

    color: rgba(255, 255, 255, 0.69);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.9fr
        1.25fr;

    gap: 55px;

    padding: 75px 0 60px;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;
}

.footer-logo .logo-icon {
    background: rgba(255, 255, 255, 0.08);
}

.footer-logo span:last-child {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}

.footer-logo strong {
    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: 20px;
}

.footer-logo small {
    margin-top: 4px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.footer-about p {
    max-width: 330px;

    margin: 0 0 23px;

    font-size: 12px;

    line-height: 1.9;
}

.footer-social {
    display: flex;

    gap: 8px;
}

.footer-social a {
    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: var(--white);

    font-size: 11px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);

    border-color: var(--gold);
}

.footer-column h3 {
    position: relative;

    margin: 0 0 22px;

    padding-bottom: 12px;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 600;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 1px;

    background: var(--gold);
}

.footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column li a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;

    transition: color 0.3s ease;
}

.footer-column li a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;
}

.footer-contact-item i {
    width: 18px;

    margin-top: 3px;

    color: var(--gold);
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.64);

    font-size: 11px;

    line-height: 1.7;
}

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 7px;

    padding: 11px 15px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: var(--white);

    font-size: 11px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.footer-whatsapp i {
    color: #25d366;
}

.footer-whatsapp:hover {
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 999;

    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    color: var(--white);

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(940px, calc(100% - 35px));
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .header-btn {
        padding: 12px 15px;
    }

    .quick-info-box {
        grid-template-columns: 1fr 1fr;
    }

    .quick-info-item {
        border-bottom: 1px solid var(--border);
    }

    .quick-info-action {
        min-height: 65px;
    }

    .about-grid,
    .destination-grid,
    .temple-grid,
    .faq-grid {
        gap: 50px;
    }

    .footer-grid {
        gap: 35px;
    }
}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 1000px) {

    .top-bar {
        display: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .main-nav,
    .header-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        padding: 8px 20px;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

        z-index: 99;
    }

    .mobile-nav.active {
        display: flex;

        flex-direction: column;
    }

    .mobile-nav a {
        padding: 13px 5px;

        border-bottom: 1px solid #eeeeee;

        color: var(--green-dark);

        font-size: 13px;

        font-weight: 600;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .hero-section {
        min-height: 620px;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-scroll {
        display: none;
    }

    .quick-info-section {
        margin-top: -25px;
    }

    .about-grid,
    .destination-grid,
    .temple-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* About image on tablet */

    .about-visual {
        min-height: 500px;

        max-width: 760px;

        margin: 0 auto;
    }

    .about-visual img {
        width: calc(100% - 35px);

        height: 500px;
    }

    .about-visual::before {
        width: calc(100% - 35px);
    }

    .destination-visual {
        order: -1;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 30px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 15px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .hero-section {
        min-height: 600px;

        background:
            linear-gradient(
                90deg,
                rgba(12, 42, 39, 0.97),
                rgba(23, 63, 59, 0.83)
            );
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-tag {
        font-size: 9px;

        letter-spacing: 1.4px;
    }

    .hero-content h1 {
        font-size: 42px;

        letter-spacing: -0.7px;
    }

    .hero-content p {
        margin-top: 21px;

        font-size: 13px;

        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .quick-info-section {
        margin-top: 0;

        background: var(--white);
    }

    .quick-info-box {
        grid-template-columns: 1fr;

        border-top: 0;

        box-shadow: none;
    }

    .quick-info-item {
        padding: 17px 5px;

        border-right: 0;
    }

    .quick-info-action {
        min-height: 58px;
    }


    /* =====================================================
       SECTION SPACING MOBILE
    ===================================================== */

    .about-section,
    .rooms-section,
    .facilities-section,
    .temple-section,
    .destination-section,
    .why-section,
    .gallery-section,
    .reviews-section,
    .faq-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-content h2,
    .destination-content h2,
    .faq-intro h2,
    .temple-content h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 13px;
    }


    /* =====================================================
       ABOUT IMAGE — MOBILE
    ===================================================== */

    .about-visual {
        width: 100%;

        min-height: 430px;

        margin: 0;

        overflow: visible;
    }

    .about-visual img {
        width: calc(100% - 22px);

        height: 430px;

        object-fit: cover;

        border-radius: 18px;

        box-shadow: 0 15px 40px rgba(23, 63, 59, 0.12);
    }

    .about-visual::before {
        top: 18px;

        right: 0;

        width: calc(100% - 22px);

        height: calc(100% - 36px);

        border-radius: 18px;
    }

    .about-badge {
        right: 0;

        bottom: 20px;

        width: 125px;
        height: 125px;

        border-radius: 50%;

        padding: 15px;
    }

    .about-badge strong {
        font-size: 18px;
    }

    .about-badge span {
        font-size: 9px;

        text-align: center;
    }


    /* =====================================================
       ROOMS
    ===================================================== */

    .rooms-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .room-card p {
        min-height: auto;
    }


    /* =====================================================
       FACILITIES
    ===================================================== */

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-card {
        min-height: 185px;

        padding: 24px 18px;
    }

    .facility-card h3 {
        font-size: 17px;
    }


    /* =====================================================
       TEMPLE
    ===================================================== */

    .temple-visual {
        min-height: 340px;

        padding: 40px 22px;
    }

    .temple-visual h3 {
        font-size: 25px;
    }

    .temple-content > p {
        font-size: 13px;
    }

    .temple-points {
        grid-template-columns: 1fr;
    }

    .temple-map-btn {
        width: 100%;
    }


    /* =====================================================
       DESTINATION
    ===================================================== */

    .destination-visual {
        min-height: 320px;
    }

    .destination-highlights {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       WHY
    ===================================================== */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }


    /* =====================================================
       GALLERY
    ===================================================== */

    .gallery-heading {
        display: block;
    }

    .gallery-heading .text-btn {
        margin-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: repeat(3, 150px);
    }

    .gallery-placeholder.large {
        grid-column: 1 / 3;

        grid-row: auto;
    }

    .gallery-placeholder {
        min-height: 150px;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .faq-list summary {
        padding: 18px 45px 18px 17px;

        font-size: 12px;
    }

    .faq-list details p {
        padding: 0 17px 18px;
    }


    /* =====================================================
       FINAL CTA
    ===================================================== */

    .final-cta-section {
        padding: 75px 0;
    }

    .final-cta-content h2 {
        font-size: 34px;
    }

    .final-cta-content p {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn-light,
    .btn-gold {
        width: 100%;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 60px 0 45px;
    }

    .footer-about p {
        max-width: none;
    }

    .footer-bottom-inner {
        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .whatsapp-float {
        width: 49px;
        height: 49px;

        right: 15px;
        bottom: 15px;

        font-size: 22px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .facility-card {
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 160px);
    }

    .gallery-placeholder.large {
        grid-column: auto;
    }

    .section-heading h2,
    .about-content h2,
    .destination-content h2,
    .faq-intro h2,
    .temple-content h2 {
        font-size: 31px;
    }

    .about-visual {
        min-height: 380px;
    }

    .about-visual img {
        height: 380px;
    }
}
```css
/* =========================================================
   MALLIKARJUNA SADAN
   ABOUT PAGE CSS
   Add this at the END of assets/css/style.css
========================================================= */


/* =========================================================
   INNER HERO
========================================================= */

.inner-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #173f3b 0%,
            #245b55 50%,
            #102f2d 100%
        );
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(201, 155, 66, 0.18),
            transparent 32%
        );
    pointer-events: none;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 32, 30, 0.55),
            rgba(10, 32, 30, 0.15)
        );
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 900px;
}

.inner-hero .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #e7c77d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
}

.inner-hero h1 {
    max-width: 850px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.inner-hero h1 span {
    display: block;
    color: #d8b86b;
}

.inner-hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #d8b86b;
}

.breadcrumb i {
    color: #d8b86b;
    font-size: 10px;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 85px;
    align-items: center;
}


/* IMAGE */

.about-intro-visual {
    position: relative;
    min-height: 560px;
    padding-right: 35px;
    padding-bottom: 35px;
}

.about-main-image {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #edf2ef;
    box-shadow: 0 25px 60px rgba(23, 63, 59, 0.14);
    z-index: 2;
}

.about-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(12, 35, 33, 0.16)
    );
    pointer-events: none;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-intro-visual::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: calc(100% - 10px);
    height: calc(100% - 40px);
    border: 1px solid #c9a44c;
    z-index: 1;
    pointer-events: none;
}

.about-intro-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 13px;
    width: 255px;
    min-height: 88px;
    padding: 16px 20px;
    background: #173f3b;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(23, 63, 59, 0.22);
}

.about-intro-badge > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 1px solid rgba(216, 184, 107, 0.5);
    border-radius: 50%;
    color: #d8b86b;
    font-size: 18px;
}

.about-intro-badge div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-intro-badge strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
}

.about-intro-badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}


/* CONTENT */

.about-intro-content {
    max-width: 650px;
}

.about-intro-content .section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #b28732;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-intro-content h2 {
    margin: 0 0 25px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.16;
}

.about-intro-content h2 strong {
    display: block;
    color: #b28732;
    font-weight: 600;
}

.about-intro-content > p {
    margin: 0 0 18px;
    color: #66716f;
    font-size: 15px;
    line-height: 1.9;
}

.about-intro-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    margin: 28px 0 32px;
}

.about-intro-points > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344744;
    font-size: 13px;
    font-weight: 600;
}

.about-intro-points i {
    color: #b28732;
    font-size: 15px;
}


/* =========================================================
   APPROACH SECTION
========================================================= */

.about-approach-section {
    padding: 105px 0;
    background: #f7f5ef;
}

.about-approach-section .section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.approach-card {
    position: relative;
    padding: 42px 32px;
    background: #ffffff;
    border: 1px solid #ebe6da;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-7px);
    border-color: rgba(194, 145, 48, 0.45);
    box-shadow: 0 20px 45px rgba(23, 63, 59, 0.10);
}

.approach-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #edf3f0;
    color: #173f3b;
    font-size: 22px;
}

.approach-card h3 {
    margin: 0 0 13px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 600;
}

.approach-card p {
    margin: 0;
    color: #687471;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   TRAVELLER SECTION
========================================================= */

.traveller-section {
    padding: 110px 0;
    background: #ffffff;
}

.traveller-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 80px;
    align-items: center;
}

.traveller-content {
    max-width: 680px;
}

.traveller-content .section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #b28732;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.traveller-content h2 {
    margin: 0 0 22px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.16;
}

.traveller-content h2 strong {
    display: block;
    color: #b28732;
    font-weight: 600;
}

.traveller-content > p {
    margin: 0 0 16px;
    color: #687471;
    font-size: 15px;
    line-height: 1.85;
}

.traveller-list {
    margin-top: 34px;
}

.traveller-item {
    display: flex;
    gap: 17px;
    padding: 19px 0;
    border-bottom: 1px solid #e9e9e5;
}

.traveller-item:first-child {
    border-top: 1px solid #e9e9e5;
}

.traveller-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    background: #f5f0e4;
    color: #b28732;
    font-size: 17px;
}

.traveller-item h3 {
    margin: 0 0 4px;
    color: #173f3b;
    font-size: 16px;
    font-weight: 700;
}

.traveller-item p {
    margin: 0;
    color: #75807d;
    font-size: 13px;
    line-height: 1.65;
}


/* VISUAL */

.traveller-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #173f3b,
            #285e57
        );
    overflow: hidden;
}

.traveller-visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(216, 184, 107, 0.35);
    border-radius: 50%;
}

.traveller-visual::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(216, 184, 107, 0.22);
    border-radius: 50%;
}

.traveller-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.traveller-card > i {
    margin-bottom: 22px;
    color: #d8b86b;
    font-size: 45px;
}

.traveller-card span {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.traveller-card strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 65px;
    font-weight: 600;
    line-height: 1;
}

.traveller-card small {
    margin-top: 10px;
    color: #d8b86b;
    font-size: 16px;
    letter-spacing: 1px;
}


/* =========================================================
   FACILITIES HIGHLIGHT
========================================================= */

.about-facilities-section {
    padding: 105px 0;
    background: #f7f5ef;
}

.about-facilities-section .section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
}

.about-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.about-facility-item {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 15px;
    background: #ffffff;
    border: 1px solid #e8e3d8;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23, 63, 59, 0.08);
}

.about-facility-item i {
    color: #b28732;
    font-size: 23px;
}

.about-facility-item span {
    color: #344744;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   PURI SECTION
========================================================= */

.about-puri-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-puri-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 85px;
    align-items: center;
}


/* VISUAL */

.about-puri-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #173f3b,
            #214f4a
        );
    overflow: hidden;
}

.about-puri-visual::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(216, 184, 107, 0.3);
    border-radius: 50%;
}

.about-puri-visual::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(216, 184, 107, 0.2);
    border-radius: 50%;
}

.puri-location-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.puri-location-card i {
    margin-bottom: 22px;
    color: #d8b86b;
    font-size: 42px;
}

.puri-location-card span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.puri-location-card strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 68px;
    line-height: 1;
}

.puri-location-card small {
    margin-top: 12px;
    color: #d8b86b;
    font-size: 16px;
}


/* CONTENT */

.about-puri-content {
    max-width: 650px;
}

.about-puri-content .section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #b28732;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-puri-content h2 {
    margin: 0 0 24px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 51px);
    font-weight: 500;
    line-height: 1.16;
}

.about-puri-content h2 strong {
    display: block;
    color: #b28732;
    font-weight: 600;
}

.about-puri-content > p {
    margin: 0 0 17px;
    color: #687471;
    font-size: 15px;
    line-height: 1.85;
}

.puri-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.puri-highlights > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: #f6f2e8;
    color: #3f514d;
    font-size: 12px;
    font-weight: 700;
}

.puri-highlights i {
    color: #b28732;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #173f3b,
            #285d56
        );
}

.about-cta-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(216, 184, 107, 0.18);
    border-radius: 50%;
}

.about-cta-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(216, 184, 107, 0.12);
    border-radius: 50%;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content > span {
    display: inline-block;
    margin-bottom: 17px;
    color: #d8b86b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.about-cta-content h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.15;
}

.about-cta-content h2 strong {
    color: #d8b86b;
    font-weight: 600;
}

.about-cta-content > p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.8;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.about-cta-buttons .btn-light,
.about-cta-buttons .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 23px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.about-cta-buttons .btn-light {
    background: #ffffff;
    color: #173f3b;
}

.about-cta-buttons .btn-gold {
    background: #d8b86b;
    color: #173f3b;
}

.about-cta-buttons .btn-light:hover,
.about-cta-buttons .btn-gold:hover {
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .inner-hero {
        min-height: 450px;
    }

    .inner-hero-content {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .about-intro-section,
    .traveller-section,
    .about-puri-section {
        padding: 85px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-intro-visual {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-intro-content {
        max-width: 760px;
    }

    .about-approach-section,
    .about-facilities-section {
        padding: 85px 0;
    }

    .about-approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .traveller-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .traveller-content {
        max-width: 760px;
    }

    .traveller-visual {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        min-height: 430px;
    }

    .about-facilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-puri-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-puri-visual {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-puri-content {
        max-width: 760px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .inner-hero {
        min-height: 430px;
    }

    .inner-hero-content {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .inner-hero .hero-tag {
        margin-bottom: 16px;
        padding: 8px 13px;
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .inner-hero h1 {
        margin-bottom: 17px;
        font-size: 42px;
        letter-spacing: -0.5px;
    }

    .inner-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .breadcrumb {
        font-size: 12px;
    }


    .about-intro-section,
    .traveller-section,
    .about-puri-section {
        padding: 70px 0;
    }

    .about-intro-grid {
        gap: 48px;
    }

    .about-intro-visual {
        min-height: 430px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .about-main-image {
        height: 430px;
    }

    .about-intro-visual::before {
        top: 18px;
        width: calc(100% - 5px);
        height: calc(100% - 25px);
    }

    .about-intro-badge {
        width: 215px;
        min-height: 75px;
        padding: 12px 15px;
    }

    .about-intro-badge > i {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 15px;
    }

    .about-intro-badge strong {
        font-size: 14px;
    }

    .about-intro-badge span {
        font-size: 11px;
    }

    .about-intro-content h2,
    .traveller-content h2,
    .about-puri-content h2 {
        font-size: 35px;
    }

    .about-intro-content > p,
    .traveller-content > p,
    .about-puri-content > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-intro-points {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }


    .about-approach-section,
    .about-facilities-section {
        padding: 70px 0;
    }

    .about-approach-section .section-heading,
    .about-facilities-section .section-heading {
        margin-bottom: 40px;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .approach-card {
        padding: 30px 25px;
    }

    .approach-card h3 {
        font-size: 23px;
    }


    .traveller-grid {
        gap: 45px;
    }

    .traveller-list {
        margin-top: 25px;
    }

    .traveller-item {
        gap: 13px;
        padding: 16px 0;
    }

    .traveller-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        font-size: 15px;
    }

    .traveller-item h3 {
        font-size: 15px;
    }

    .traveller-item p {
        font-size: 12px;
    }

    .traveller-visual {
        min-height: 360px;
    }

    .traveller-visual::before {
        width: 270px;
        height: 270px;
    }

    .traveller-visual::after {
        width: 180px;
        height: 180px;
    }

    .traveller-card strong {
        font-size: 55px;
    }


    .about-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-facility-item {
        min-height: 110px;
        padding: 18px 10px;
    }

    .about-facility-item i {
        font-size: 20px;
    }

    .about-facility-item span {
        font-size: 11px;
    }


    .about-puri-grid {
        gap: 45px;
    }

    .about-puri-visual {
        min-height: 360px;
    }

    .about-puri-visual::before {
        width: 285px;
        height: 285px;
    }

    .about-puri-visual::after {
        width: 195px;
        height: 195px;
    }

    .puri-location-card strong {
        font-size: 58px;
    }

    .puri-highlights {
        gap: 8px;
    }

    .puri-highlights > div {
        padding: 9px 11px;
        font-size: 11px;
    }


    .about-cta-section {
        padding: 70px 0;
    }

    .about-cta-content h2 {
        font-size: 38px;
    }

    .about-cta-content > p {
        font-size: 13px;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-buttons .btn-light,
    .about-cta-buttons .btn-gold {
        width: 100%;
        max-width: 300px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .inner-hero {
        min-height: 400px;
    }

    .inner-hero h1 {
        font-size: 36px;
    }

    .inner-hero p {
        font-size: 13px;
    }

    .about-intro-visual {
        min-height: 370px;
        padding-right: 12px;
        padding-bottom: 15px;
    }

    .about-main-image {
        height: 370px;
    }

    .about-intro-badge {
        width: 190px;
        min-height: 68px;
        padding: 10px 12px;
    }

    .about-intro-badge > i {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 13px;
    }

    .about-intro-badge strong {
        font-size: 12px;
    }

    .about-intro-badge span {
        font-size: 10px;
    }

    .about-intro-content h2,
    .traveller-content h2,
    .about-puri-content h2 {
        font-size: 31px;
    }

    .about-facilities-grid {
        gap: 8px;
    }

    .about-facility-item {
        min-height: 100px;
    }

    .about-puri-visual {
        min-height: 320px;
    }

    .puri-location-card strong {
        font-size: 50px;
    }

    .about-cta-content h2 {
        font-size: 34px;
    }

}

/* =========================================================
   ABOUT PAGE RESET
========================================================= */

.about-page,
.about-page * {
    box-sizing: border-box;
}

.about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    color: #4b5b5e;
    font-family: "DM Sans", sans-serif;
}

.about-page img {
    max-width: 100%;
}


/* =========================================================
   ABOUT INNER HERO
========================================================= */

.about-page .inner-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #173f3b 0%,
            #22534e 55%,
            #102d2b 100%
        );
}

.about-page .inner-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(216, 184, 107, 0.22);
    border-radius: 50%;
}

.about-page .inner-hero::after {
    content: "";
    position: absolute;
    bottom: -240px;
    right: 180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(216, 184, 107, 0.12);
    border-radius: 50%;
}

.about-page .inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 28, 27, 0.58),
            rgba(8, 28, 27, 0.15)
        );
}

.about-page .inner-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 20px;
}

.about-page .inner-hero .hero-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 22px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: #d9ba70;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-page .inner-hero h1 {
    max-width: 820px;
    margin: 0 0 22px;
    padding: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
}

.about-page .inner-hero h1 span {
    display: block;
    margin-top: 5px;
    color: #d9ba70;
}

.about-page .inner-hero p {
    max-width: 650px;
    margin: 0 0 27px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.about-page .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.about-page .breadcrumb a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.about-page .breadcrumb a:hover {
    color: #d9ba70;
}

.about-page .breadcrumb i {
    color: #d9ba70;
    font-size: 9px;
}

.about-page .breadcrumb span {
    color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   COMMON ABOUT SECTION HEADING
========================================================= */

.about-page .section-label {
    display: inline-block;
    margin: 0 0 15px;
    color: #b28632;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-page .section-heading {
    width: 100%;
}

.about-page .section-heading.centered {
    max-width: 730px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-page .section-heading h2 {
    margin: 0 0 18px;
    padding: 0;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.15;
}

.about-page .section-heading h2 strong {
    color: #b28632;
    font-weight: 600;
}

.about-page .section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #687674;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.about-page .about-intro-section {
    width: 100%;
    padding: 105px 0;
    background: #ffffff;
}

.about-page .about-intro-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 75px;
    align-items: center;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.about-page .about-intro-visual {
    position: relative;
    width: 100%;
    min-height: 535px;
    padding: 0 35px 35px 0;
}

.about-page .about-main-image {
    position: relative;
    width: 100%;
    height: 535px;
    overflow: hidden;
    background: #eef2f0;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(23, 63, 59, 0.14);
}

.about-page .about-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 50%,
        rgba(10, 30, 28, 0.20) 100%
    );
    pointer-events: none;
}

.about-page .about-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-page .about-intro-visual::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    width: calc(100% - 10px);
    height: calc(100% - 45px);
    border: 1px solid #c8a04a;
    z-index: 1;
    pointer-events: none;
}

.about-page .about-intro-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    width: 260px;
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    background: #173f3b;
    box-shadow: 0 18px 40px rgba(23, 63, 59, 0.22);
}

.about-page .about-intro-badge > i {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 184, 107, 0.45);
    border-radius: 50%;
    color: #d9ba70;
    font-size: 17px;
}

.about-page .about-intro-badge div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-page .about-intro-badge strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.about-page .about-intro-badge span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.about-page .about-intro-content {
    width: 100%;
    max-width: 650px;
}

.about-page .about-intro-content h2 {
    margin: 0 0 23px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 51px);
    font-weight: 500;
    line-height: 1.15;
}

.about-page .about-intro-content h2 strong {
    display: block;
    color: #b28632;
    font-weight: 600;
}

.about-page .about-intro-content > p {
    margin: 0 0 16px;
    color: #667472;
    font-size: 14px;
    line-height: 1.9;
}

.about-page .about-intro-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 28px 0 30px;
}

.about-page .about-intro-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #334643;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.about-page .about-intro-points i {
    flex: 0 0 auto;
    color: #b28632;
    font-size: 14px;
}

.about-page .text-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #173f3b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.about-page .text-btn i {
    transition: transform 0.25s ease;
}

.about-page .text-btn:hover {
    color: #b28632;
}

.about-page .text-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   APPROACH SECTION
========================================================= */

.about-page .about-approach-section {
    width: 100%;
    padding: 100px 0;
    background: #f7f5ef;
}

.about-page .about-approach-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-page .approach-card {
    position: relative;
    min-height: 285px;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e9e4d9;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-page .approach-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 134, 50, 0.45);
    box-shadow: 0 20px 45px rgba(23, 63, 59, 0.09);
}

.about-page .approach-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border-radius: 50%;
    background: #edf3f0;
    color: #173f3b;
    font-size: 20px;
}

.about-page .approach-card h3 {
    margin: 0 0 12px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.about-page .approach-card p {
    margin: 0;
    color: #6c7875;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   TRAVELLER SECTION
========================================================= */

.about-page .traveller-section {
    width: 100%;
    padding: 105px 0;
    background: #ffffff;
}

.about-page .traveller-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 75px;
    align-items: center;
}

.about-page .traveller-content {
    width: 100%;
    max-width: 650px;
}

.about-page .traveller-content h2 {
    margin: 0 0 22px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.15;
}

.about-page .traveller-content h2 strong {
    display: block;
    color: #b28632;
    font-weight: 600;
}

.about-page .traveller-content > p {
    margin: 0 0 15px;
    color: #697674;
    font-size: 14px;
    line-height: 1.85;
}

.about-page .traveller-list {
    width: 100%;
    margin-top: 30px;
}

.about-page .traveller-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 0;
    border-top: 1px solid #e7e7e2;
}

.about-page .traveller-item:last-child {
    border-bottom: 1px solid #e7e7e2;
}

.about-page .traveller-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f0e4;
    color: #b28632;
    font-size: 16px;
}

.about-page .traveller-item h3 {
    margin: 0 0 4px;
    color: #173f3b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.about-page .traveller-item p {
    margin: 0;
    color: #78827f;
    font-size: 12px;
    line-height: 1.65;
}


/* TRAVELLER VISUAL */

.about-page .traveller-visual {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #173f3b 0%,
            #285d56 100%
        );
}

.about-page .traveller-visual::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(216, 184, 107, 0.30);
    border-radius: 50%;
}

.about-page .traveller-visual::after {
    content: "";
    position: absolute;
    width: 235px;
    height: 235px;
    border: 1px solid rgba(216, 184, 107, 0.18);
    border-radius: 50%;
}

.about-page .traveller-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-page .traveller-card > i {
    margin-bottom: 20px;
    color: #d9ba70;
    font-size: 42px;
}

.about-page .traveller-card span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.about-page .traveller-card strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
}

.about-page .traveller-card small {
    margin-top: 10px;
    color: #d9ba70;
    font-size: 15px;
}


/* =========================================================
   FACILITIES
========================================================= */

.about-page .about-facilities-section {
    width: 100%;
    padding: 100px 0;
    background: #f7f5ef;
}

.about-page .about-facilities-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-page .about-facility-item {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 20px 12px;
    background: #ffffff;
    border: 1px solid #e8e3d8;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-page .about-facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23, 63, 59, 0.08);
}

.about-page .about-facility-item i {
    color: #b28632;
    font-size: 22px;
}

.about-page .about-facility-item span {
    color: #344643;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   PURI SECTION
========================================================= */

.about-page .about-puri-section {
    width: 100%;
    padding: 105px 0;
    background: #ffffff;
}

.about-page .about-puri-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 75px;
    align-items: center;
}

.about-page .about-puri-visual {
    position: relative;
    width: 100%;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #173f3b 0%,
            #285b55 100%
        );
}

.about-page .about-puri-visual::before {
    content: "";
    position: absolute;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(216, 184, 107, 0.30);
    border-radius: 50%;
}

.about-page .about-puri-visual::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(216, 184, 107, 0.18);
    border-radius: 50%;
}

.about-page .puri-location-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-page .puri-location-card i {
    margin-bottom: 19px;
    color: #d9ba70;
    font-size: 39px;
}

.about-page .puri-location-card span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.about-page .puri-location-card strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
}

.about-page .puri-location-card small {
    margin-top: 10px;
    color: #d9ba70;
    font-size: 15px;
}

.about-page .about-puri-content {
    width: 100%;
    max-width: 650px;
}

.about-page .about-puri-content h2 {
    margin: 0 0 22px;
    color: #173f3b;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.15;
}

.about-page .about-puri-content h2 strong {
    display: block;
    color: #b28632;
    font-weight: 600;
}

.about-page .about-puri-content > p {
    margin: 0 0 16px;
    color: #687573;
    font-size: 14px;
    line-height: 1.85;
}

.about-page .puri-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 30px;
}

.about-page .puri-highlights > div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    background: #f5f0e5;
    color: #3d4d49;
    font-size: 11px;
    font-weight: 700;
}

.about-page .puri-highlights i {
    color: #b28632;
}


/* =========================================================
   CTA
========================================================= */

.about-page .about-cta-section {
    position: relative;
    width: 100%;
    padding: 85px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #173f3b 0%,
            #285d56 100%
        );
}

.about-page .about-cta-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -100px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(216, 184, 107, 0.18);
    border-radius: 50%;
}

.about-page .about-cta-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -100px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(216, 184, 107, 0.11);
    border-radius: 50%;
}

.about-page .about-cta-content {
    position: relative;
    z-index: 2;
    width: min(800px, calc(100% - 40px));
    margin: 0 auto;
    text-align: center;
}

.about-page .about-cta-content > span {
    display: inline-block;
    margin-bottom: 15px;
    color: #d9ba70;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.about-page .about-cta-content h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 5vw, 57px);
    font-weight: 500;
    line-height: 1.15;
}

.about-page .about-cta-content h2 strong {
    color: #d9ba70;
    font-weight: 600;
}

.about-page .about-cta-content > p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 14px;
    line-height: 1.8;
}

.about-page .about-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-page .about-cta-buttons .btn-light,
.about-page .about-cta-buttons .btn-gold {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.about-page .about-cta-buttons .btn-light {
    background: #ffffff;
    color: #173f3b;
}

.about-page .about-cta-buttons .btn-gold {
    background: #d9ba70;
    color: #173f3b;
}

.about-page .about-cta-buttons .btn-light:hover,
.about-page .about-cta-buttons .btn-gold:hover {
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-page .inner-hero {
        min-height: 440px;
    }

    .about-page .inner-hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-page .about-intro-section,
    .about-page .traveller-section,
    .about-page .about-puri-section {
        padding: 80px 0;
    }

    .about-page .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page .about-intro-visual {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .about-page .about-intro-content {
        max-width: 760px;
    }

    .about-page .about-approach-section,
    .about-page .about-facilities-section {
        padding: 80px 0;
    }

    .about-page .about-approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-page .traveller-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page .traveller-content {
        max-width: 760px;
    }

    .about-page .traveller-visual {
        max-width: 720px;
        margin: 0 auto;
        min-height: 420px;
    }

    .about-page .about-facilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-page .about-puri-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page .about-puri-visual {
        max-width: 720px;
        margin: 0 auto;
    }

    .about-page .about-puri-content {
        max-width: 760px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-page .inner-hero {
        min-height: 410px;
    }

    .about-page .inner-hero-content {
        padding: 60px 20px;
    }

    .about-page .inner-hero h1 {
        font-size: 40px;
        line-height: 1.10;
    }

    .about-page .inner-hero p {
        font-size: 13px;
        line-height: 1.75;
    }

    .about-page .inner-hero .hero-tag {
        margin-bottom: 17px;
        padding: 8px 12px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .about-page .about-intro-section,
    .about-page .traveller-section,
    .about-page .about-puri-section {
        padding: 65px 0;
    }

    .about-page .about-intro-grid,
    .about-page .about-approach-grid,
    .about-page .traveller-grid,
    .about-page .about-facilities-grid,
    .about-page .about-puri-grid {
        width: calc(100% - 30px);
    }

    .about-page .about-intro-grid {
        gap: 45px;
    }

    .about-page .about-intro-visual {
        min-height: 400px;
        padding-right: 18px;
        padding-bottom: 18px;
    }

    .about-page .about-main-image {
        height: 400px;
    }

    .about-page .about-intro-visual::before {
        top: 17px;
        width: calc(100% - 4px);
        height: calc(100% - 25px);
    }

    .about-page .about-intro-badge {
        width: 215px;
        min-height: 72px;
        padding: 11px 13px;
    }

    .about-page .about-intro-badge > i {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 14px;
    }

    .about-page .about-intro-badge strong {
        font-size: 13px;
    }

    .about-page .about-intro-badge span {
        font-size: 10px;
    }

    .about-page .about-intro-content h2,
    .about-page .traveller-content h2,
    .about-page .about-puri-content h2 {
        font-size: 34px;
    }

    .about-page .about-intro-content > p,
    .about-page .traveller-content > p,
    .about-page .about-puri-content > p {
        font-size: 13px;
        line-height: 1.8;
    }

    .about-page .about-intro-points {
        grid-template-columns: 1fr;
        gap: 11px;
        margin: 24px 0 28px;
    }

    .about-page .about-intro-points > div {
        font-size: 12px;
    }


    /* APPROACH */

    .about-page .about-approach-section,
    .about-page .about-facilities-section {
        padding: 65px 0;
    }

    .about-page .section-heading.centered {
        margin-bottom: 38px;
    }

    .about-page .section-heading h2 {
        font-size: 34px;
    }

    .about-page .section-heading p {
        font-size: 13px;
    }

    .about-page .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .about-page .approach-card {
        min-height: auto;
        padding: 28px 23px;
    }

    .about-page .approach-card h3 {
        font-size: 22px;
    }

    .about-page .approach-card p {
        font-size: 12px;
    }


    /* TRAVELLER */

    .about-page .traveller-grid {
        gap: 42px;
    }

    .about-page .traveller-list {
        margin-top: 24px;
    }

    .about-page .traveller-item {
        gap: 12px;
        padding: 15px 0;
    }

    .about-page .traveller-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 14px;
    }

    .about-page .traveller-item h3 {
        font-size: 14px;
    }

    .about-page .traveller-item p {
        font-size: 11px;
        line-height: 1.6;
    }

    .about-page .traveller-visual {
        min-height: 350px;
    }

    .about-page .traveller-visual::before {
        width: 270px;
        height: 270px;
    }

    .about-page .traveller-visual::after {
        width: 180px;
        height: 180px;
    }

    .about-page .traveller-card > i {
        font-size: 35px;
    }

    .about-page .traveller-card strong {
        font-size: 55px;
    }


    /* FACILITIES */

    .about-page .about-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .about-page .about-facility-item {
        min-height: 105px;
        padding: 16px 9px;
    }

    .about-page .about-facility-item i {
        font-size: 19px;
    }

    .about-page .about-facility-item span {
        font-size: 10px;
    }


    /* PURI */

    .about-page .about-puri-grid {
        gap: 42px;
    }

    .about-page .about-puri-visual {
        min-height: 340px;
    }

    .about-page .about-puri-visual::before {
        width: 275px;
        height: 275px;
    }

    .about-page .about-puri-visual::after {
        width: 185px;
        height: 185px;
    }

    .about-page .puri-location-card i {
        font-size: 34px;
    }

    .about-page .puri-location-card strong {
        font-size: 56px;
    }

    .about-page .puri-highlights {
        gap: 7px;
        margin: 23px 0 27px;
    }

    .about-page .puri-highlights > div {
        padding: 9px 10px;
        font-size: 10px;
    }


    /* CTA */

    .about-page .about-cta-section {
        padding: 65px 0;
    }

    .about-page .about-cta-content {
        width: calc(100% - 30px);
    }

    .about-page .about-cta-content h2 {
        font-size: 36px;
    }

    .about-page .about-cta-content > p {
        font-size: 12px;
        line-height: 1.75;
    }

    .about-page .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-page .about-cta-buttons .btn-light,
    .about-page .about-cta-buttons .btn-gold {
        width: 100%;
        max-width: 300px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-page .inner-hero {
        min-height: 390px;
    }

    .about-page .inner-hero-content {
        padding: 50px 16px;
    }

    .about-page .inner-hero h1 {
        font-size: 35px;
    }

    .about-page .inner-hero p {
        font-size: 12px;
    }

    .about-page .about-intro-grid,
    .about-page .about-approach-grid,
    .about-page .traveller-grid,
    .about-page .about-facilities-grid,
    .about-page .about-puri-grid {
        width: calc(100% - 24px);
    }

    .about-page .about-intro-visual {
        min-height: 365px;
        padding-right: 12px;
        padding-bottom: 14px;
    }

    .about-page .about-main-image {
        height: 365px;
    }

    .about-page .about-intro-badge {
        width: 190px;
        min-height: 65px;
        padding: 9px 11px;
    }

    .about-page .about-intro-badge > i {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        font-size: 12px;
    }

    .about-page .about-intro-badge strong {
        font-size: 11px;
    }

    .about-page .about-intro-badge span {
        font-size: 9px;
    }

    .about-page .about-intro-content h2,
    .about-page .traveller-content h2,
    .about-page .about-puri-content h2,
    .about-page .section-heading h2 {
        font-size: 30px;
    }

    .about-page .traveller-visual {
        min-height: 310px;
    }

    .about-page .traveller-card strong {
        font-size: 48px;
    }

    .about-page .about-puri-visual {
        min-height: 300px;
    }

    .about-page .puri-location-card strong {
        font-size: 49px;
    }

    .about-page .about-cta-content h2 {
        font-size: 32px;
    }

}
```css
/* =========================================================
   MALLIKARJUNA SADAN
   ROOMS PAGE — COMPLETE CSS
   Uses Existing Site Color Variables
   var(--green-dark)
========================================================= */


/* =========================================================
   PAGE RESET
========================================================= */

.rooms-page,
.rooms-page * {
    box-sizing: border-box;
}

.rooms-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    color: #30383a;
    font-family: "DM Sans", sans-serif;
}

.rooms-page img {
    max-width: 100%;
    display: block;
}

.rooms-page a {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.rooms-page .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
========================================================= */

.rooms-page .rooms-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 120px 0 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.48)
        ),
        url("../images/room1.jfif") center center / cover no-repeat;
}

.rooms-page .rooms-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--green-dark) 35%, transparent),
            rgba(0, 0, 0, 0.35)
        );
}

.rooms-page .rooms-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;
    padding: 0 20px;

    text-align: center;
}

.rooms-page .rooms-hero-tag {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rooms-page .rooms-hero h1 {
    margin: 0;

    color: #fff;

    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.08;
}

.rooms-page .rooms-hero h1 span {
    display: block;

    margin-top: 8px;

    color: var(--green-dark);
}

.rooms-page .rooms-hero p {
    max-width: 690px;

    margin: 24px auto 0;

    color: rgba(255,255,255,.88);

    font-size: 16px;
    line-height: 1.8;
}

.rooms-page .rooms-breadcrumb {
    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: rgba(255,255,255,.75);

    font-size: 14px;
}

.rooms-page .rooms-breadcrumb a {
    color: #fff;
}

.rooms-page .rooms-breadcrumb a:hover {
    color: var(--green-dark);
}

.rooms-page .rooms-breadcrumb i {
    color: var(--green-dark);
    font-size: 10px;
}


/* =========================================================
   COMMON SECTION LABEL
========================================================= */

.rooms-page .rooms-section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.rooms-page .rooms-intro-section {
    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #fff;

    clear: both;
}

.rooms-page .rooms-intro-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .9fr);

    gap: 70px;

    align-items: center;
}

.rooms-page .rooms-intro-content {
    width: 100%;
    min-width: 0;
}

.rooms-page .rooms-intro-content h2 {
    margin: 0 0 22px;

    color: #26383b;

    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.15;
}

.rooms-page .rooms-intro-content h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-intro-content p {
    max-width: 620px;

    margin: 0 0 16px;

    color: #6d797c;

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   INTRO POINTS
========================================================= */

.rooms-page .rooms-intro-points {
    margin-top: 25px;

    display: grid;

    grid-template-columns: repeat(2,minmax(0,1fr));

    gap: 13px 25px;
}

.rooms-page .rooms-intro-points > div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #46575a;

    font-size: 14px;
    font-weight: 600;
}

.rooms-page .rooms-intro-points i {
    color: var(--green-dark);
    font-size: 15px;
}


/* =========================================================
   INTRO VISUAL
========================================================= */

.rooms-page .rooms-intro-visual {
    position: relative;

    width: 100%;
    min-width: 0;

    padding-bottom: 35px;
}

.rooms-page .rooms-intro-image {
    width: 100%;
    height: 450px;

    overflow: hidden;

    border-radius: 6px;

    box-shadow: 0 18px 45px rgba(0,0,0,.13);
}

.rooms-page .rooms-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.rooms-page .rooms-intro-image:hover img {
    transform: scale(1.03);
}


/* Floating Card */

.rooms-page .rooms-intro-card {
    position: absolute;

    left: 25px;
    bottom: 0;

    width: calc(100% - 50px);

    padding: 18px 20px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: #fff;

    border-left: 4px solid var(--green-dark);

    box-shadow: 0 12px 35px rgba(0,0,0,.15);
}

.rooms-page .rooms-intro-card > i {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: color-mix(
        in srgb,
        var(--green-dark) 10%,
        white
    );

    color: var(--green-dark);

    font-size: 18px;
}

.rooms-page .rooms-intro-card strong {
    display: block;

    margin-bottom: 3px;

    color: #26383b;

    font-size: 15px;
}

.rooms-page .rooms-intro-card span {
    display: block;

    color: #788386;

    font-size: 13px;
}


/* =========================================================
   ROOM OPTIONS SECTION
========================================================= */

.rooms-page .rooms-options-section {
    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #f7faf9;

    clear: both;
}

.rooms-page .rooms-section-heading {
    width: 100%;
    max-width: 720px;

    margin: 0 auto 45px;

    text-align: center;
}

.rooms-page .rooms-section-heading h2 {
    margin: 0 0 15px;

    color: #26383b;

    font-family: "Playfair Display", serif;
    font-size: clamp(34px,4vw,48px);
    font-weight: 600;
    line-height: 1.15;
}

.rooms-page .rooms-section-heading h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-section-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #6d797c;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   ROOM CARD GRID
   DESKTOP = TWO CARDS SIDE BY SIDE
========================================================= */

.rooms-page .rooms-cards-grid {
    position: relative;

    width: 100%;
    max-width: 820px;

    margin: 0 auto;
    padding: 0;

    display: grid !important;

    grid-template-columns:
        repeat(2,minmax(0,370px)) !important;

    column-gap: 50px !important;
    row-gap: 30px !important;

    justify-content: center !important;
    align-items: stretch !important;

    clear: both;
}


/* =========================================================
   ROOM CARD
========================================================= */

.rooms-page .room-card,
.rooms-page .room-card.room-card-featured {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    max-width: 370px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    float: none !important;

    transform: none !important;

    overflow: hidden !important;

    background: #fff;

    border: 1px solid #dfe9e7;

    border-radius: 7px;

    box-shadow: 0 12px 35px rgba(0,0,0,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.rooms-page .room-card:hover {
    transform: translateY(-5px) !important;

    box-shadow: 0 20px 45px rgba(0,0,0,.13);
}

.rooms-page .room-card-featured {
    border-color: color-mix(
        in srgb,
        var(--green-dark) 40%,
        white
    );
}


/* =========================================================
   CARD IMAGE
========================================================= */

.rooms-page .room-card-image {
    position: relative !important;

    width: 100% !important;
    height: 215px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
}

.rooms-page .room-card-image img {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;

    transition: transform .45s ease;
}

.rooms-page .room-card:hover .room-card-image img {
    transform: scale(1.04);
}


/* Badge */

.rooms-page .room-card-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 7px 11px;

    background: var(--green-dark);

    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.rooms-page .room-card-content {
    position: relative !important;

    width: 100% !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 22px 20px 25px !important;

    display: block !important;

    text-align: center;

    transform: none !important;
}


/* Card Top */

.rooms-page .room-card-top {
    position: relative !important;

    width: 100% !important;

    margin: 0 0 12px !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 10px;
}

.rooms-page .room-card-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: color-mix(
        in srgb,
        var(--green-dark) 10%,
        white
    );

    color: var(--green-dark);

    font-size: 15px;
}

.rooms-page .room-card-type {
    color: var(--green-dark);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Card Heading */

.rooms-page .room-card-content h3 {
    position: relative !important;

    width: 100% !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    color: #26383b;

    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;

    text-align: center;
}


/* Card Description */

.rooms-page .room-card-content > p {
    position: relative !important;

    width: 100% !important;
    max-width: 315px;

    margin: 0 auto 17px !important;
    padding: 0 !important;

    color: #718083;

    font-size: 13px;
    line-height: 1.7;

    text-align: center;
}


/* =========================================================
   CARD FEATURES
========================================================= */

.rooms-page .room-card-features {
    position: relative !important;

    width: 100% !important;
    max-width: 325px;

    margin: 0 auto 20px !important;
    padding: 0 !important;

    display: flex !important;

    flex-wrap: wrap !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 7px;
}

.rooms-page .room-card-features span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 9px;

    background: #f6faf9;

    border: 1px solid #dfebe8;

    color: #5f6d70;

    font-size: 10px;
    font-weight: 600;
}

.rooms-page .room-card-features i {
    color: var(--green-dark);

    font-size: 9px;
}


/* =========================================================
   CARD BUTTON
========================================================= */

.rooms-page .room-card-link {
    position: relative !important;

    width: auto !important;

    margin: 0 auto !important;
    padding: 10px 15px;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px;

    background: var(--green-dark);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    transition: .25s ease;
}

.rooms-page .room-card-link:hover {
    background: #041b1e;

    color: #fff;
}

.rooms-page .room-card-link i {
    font-size: 10px;

    transition: transform .25s ease;
}

.rooms-page .room-card-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   COMFORT SECTION
========================================================= */

.rooms-page .rooms-comfort-section {
    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #fff;

    clear: both;
}

.rooms-page .rooms-comfort-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,.85fr)
        minmax(0,1.15fr);

    gap: 65px;

    align-items: center;
}


/* Comfort Visual */

.rooms-page .rooms-comfort-visual {
    position: relative;

    width: 100%;
    min-height: 430px;

    padding: 50px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 7px;

    background:
        linear-gradient(
            rgba(0,0,0,.78),
            rgba(0,0,0,.78)
        ),
        url("../images/room1.jfif") center / cover no-repeat;
}

.rooms-page .rooms-comfort-pattern {
    position: absolute;

    inset: 25px;

    border: 1px solid
        color-mix(
            in srgb,
            var(--green-dark) 45%,
            transparent
        );
}

.rooms-page .rooms-comfort-icon {
    position: relative;

    width: 75px;
    height: 75px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-dark);

    color: #fff;

    font-size: 28px;
}

.rooms-page .rooms-comfort-visual > span {
    position: relative;

    margin-bottom: 12px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.rooms-page .rooms-comfort-visual > strong {
    position: relative;

    max-width: 360px;

    color: #fff;

    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;

    text-align: center;
}

.rooms-page .rooms-comfort-visual > strong em {
    display: block;

    color: var(--green-dark);

    font-style: normal;
}


/* Comfort Content */

.rooms-page .rooms-comfort-content {
    width: 100%;
    min-width: 0;
}

.rooms-page .rooms-comfort-content h2 {
    margin: 0 0 18px;

    color: #26383b;

    font-family: "Playfair Display", serif;
    font-size: clamp(34px,4vw,48px);
    font-weight: 600;
    line-height: 1.15;
}

.rooms-page .rooms-comfort-content h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-comfort-content > p {
    max-width: 650px;

    margin: 0 0 14px;

    color: #6d797c;

    font-size: 14px;
    line-height: 1.8;
}


/* Comfort List */

.rooms-page .rooms-comfort-list {
    margin-top: 27px;

    display: grid;

    grid-template-columns: repeat(2,minmax(0,1fr));

    gap: 16px;
}

.rooms-page .rooms-comfort-item {
    padding: 17px;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    background: #f7faf9;

    border: 1px solid #dfebe8;
}

.rooms-page .rooms-comfort-item-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: color-mix(
        in srgb,
        var(--green-dark) 10%,
        white
    );

    color: var(--green-dark);

    font-size: 15px;
}

.rooms-page .rooms-comfort-item h3 {
    margin: 1px 0 5px;

    color: #26383b;

    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
}

.rooms-page .rooms-comfort-item p {
    margin: 0;

    color: #788386;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   BOOKING CTA
========================================================= */

.rooms-page .rooms-booking-section {
    position: relative;

    width: 100%;

    padding: 80px 0;

    background: var(--green-dark);

    clear: both;
}

.rooms-page .rooms-booking-box {
    width: 100%;
    max-width: 920px;

    margin: 0 auto;

    padding: 48px 45px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(255,255,255,.25);
}

.rooms-page .rooms-booking-content {
    width: 100%;
    max-width: 720px;
}

.rooms-page .rooms-booking-content > span {
    display: block;

    margin-bottom: 12px;

    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.rooms-page .rooms-booking-content h2 {
    margin: 0 0 15px;

    color: #fff;

    font-family: "Playfair Display", serif;
    font-size: clamp(30px,4vw,45px);
    font-weight: 600;
    line-height: 1.15;
}

.rooms-page .rooms-booking-content h2 strong {
    color: #fff;
}

.rooms-page .rooms-booking-content p {
    max-width: 620px;

    margin: 0 auto;

    color: rgba(255,255,255,.78);

    font-size: 14px;
    line-height: 1.75;
}


/* Booking Buttons */

.rooms-page .rooms-booking-actions {
    margin-top: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.rooms-page .rooms-btn {
    min-height: 46px;

    padding: 12px 19px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    font-size: 12px;
    font-weight: 700;

    transition: .25s ease;
}

.rooms-page .rooms-btn-light {
    background: #fff;

    color: var(--green-dark);
}

.rooms-page .rooms-btn-light:hover {
    background: #eef7f6;

    color: var(--green-dark);
}

.rooms-page .rooms-btn-gold {
    background: #fff;

    color: var(--green-dark);
}

.rooms-page .rooms-btn-gold:hover {
    background: #041b1e;

    color: #fff;
}


/* =========================================================
   INFORMATION SECTION
========================================================= */

.rooms-page .rooms-note-section {
    position: relative;

    width: 100%;

    padding: 75px 0;

    background: #f7faf9;

    clear: both;
}

.rooms-page .rooms-note-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,.8fr)
        minmax(0,1.2fr);

    gap: 60px;

    align-items: center;
}

.rooms-page .rooms-note-grid h2 {
    margin: 0;

    color: #26383b;

    font-family: "Playfair Display", serif;
    font-size: clamp(32px,4vw,45px);
    font-weight: 600;
    line-height: 1.15;
}

.rooms-page .rooms-note-grid h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-note-content p {
    max-width: 650px;

    margin: 0 0 18px;

    color: #6d797c;

    font-size: 14px;
    line-height: 1.8;
}

.rooms-page .rooms-note-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 700;
}

.rooms-page .rooms-note-link:hover {
    color: #041b1e;
}


/* =========================================================
   FINAL CTA
========================================================= */

.rooms-page .rooms-final-cta {
    position: relative;

    width: 100%;

    min-height: 440px;

    padding: 100px 0;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.72)
        ),
        url("../images/room1.jfif") center / cover no-repeat;

    clear: both;
}

.rooms-page .rooms-final-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            color-mix(in srgb,var(--green-dark) 30%,transparent),
            rgba(0,0,0,.40)
        );
}

.rooms-page .rooms-final-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.rooms-page .rooms-final-content > span {
    display: block;

    margin-bottom: 13px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.rooms-page .rooms-final-content h2 {
    margin: 0 0 17px;

    color: #fff;

    font-family: "Playfair Display", serif;
    font-size: clamp(35px,5vw,55px);
    font-weight: 600;
    line-height: 1.1;
}

.rooms-page .rooms-final-content h2 strong {
    display: block;

    color: var(--green-dark);
}

.rooms-page .rooms-final-content p {
    max-width: 650px;

    margin: 0 auto;

    color: rgba(255,255,255,.80);

    font-size: 15px;
    line-height: 1.8;
}


/* Final Buttons */

.rooms-page .rooms-final-buttons {
    margin-top: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.rooms-page .rooms-final-btn {
    min-height: 48px;

    padding: 13px 21px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    font-size: 12px;
    font-weight: 700;

    transition: .25s ease;
}

.rooms-page .rooms-final-btn-primary {
    background: var(--green-dark);

    color: #fff;
}

.rooms-page .rooms-final-btn-primary:hover {
    background: #fff;

    color: var(--green-dark);
}

.rooms-page .rooms-final-btn-outline {
    background: transparent;

    color: #fff;

    border: 1px solid rgba(255,255,255,.60);
}

.rooms-page .rooms-final-btn-outline:hover {
    background: #fff;

    color: var(--green-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .rooms-page .rooms-intro-grid {
        gap: 45px;
    }

    .rooms-page .rooms-comfort-grid {
        gap: 40px;
    }

    .rooms-page .rooms-note-grid {
        gap: 40px;
    }

    .rooms-page .rooms-cards-grid {
        max-width: 760px !important;

        grid-template-columns:
            repeat(2,minmax(0,350px)) !important;

        column-gap: 30px !important;
    }

    .rooms-page .room-card,
    .rooms-page .room-card.room-card-featured {
        max-width: 350px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .rooms-page .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Hero */

    .rooms-page .rooms-hero {
        min-height: 500px;
        padding: 100px 0 80px;
    }

    .rooms-page .rooms-hero h1 {
        font-size: 40px;
    }

    .rooms-page .rooms-hero p {
        font-size: 14px;
    }


    /* Intro */

    .rooms-page .rooms-intro-section {
        padding: 65px 0;
    }

    .rooms-page .rooms-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rooms-page .rooms-intro-image {
        height: 360px;
    }

    .rooms-page .rooms-intro-points {
        grid-template-columns: 1fr;
    }


    /* Room Options */

    .rooms-page .rooms-options-section {
        padding: 65px 0;
    }

    .rooms-page .rooms-cards-grid {
        width: 100% !important;
        max-width: 390px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        grid-template-columns: 1fr !important;

        column-gap: 0 !important;
        row-gap: 25px !important;
    }

    .rooms-page .room-card,
    .rooms-page .room-card.room-card-featured {
        width: 100% !important;
        max-width: 390px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* Comfort */

    .rooms-page .rooms-comfort-section {
        padding: 65px 0;
    }

    .rooms-page .rooms-comfort-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rooms-page .rooms-comfort-visual {
        min-height: 360px;
    }


    /* Booking */

    .rooms-page .rooms-booking-section {
        padding: 60px 0;
    }

    .rooms-page .rooms-booking-box {
        padding: 40px 22px;
    }


    /* Information */

    .rooms-page .rooms-note-section {
        padding: 60px 0;
    }

    .rooms-page .rooms-note-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* Final CTA */

    .rooms-page .rooms-final-cta {
        min-height: 430px;
        padding: 80px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rooms-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Hero */

    .rooms-page .rooms-hero {
        min-height: 470px;
        padding: 90px 0 70px;
    }

    .rooms-page .rooms-hero h1 {
        font-size: 34px;
    }

    .rooms-page .rooms-hero p {
        font-size: 13px;
    }


    /* Intro */

    .rooms-page .rooms-intro-image {
        height: 300px;
    }

    .rooms-page .rooms-intro-card {
        left: 12px;

        width: calc(100% - 24px);

        padding: 14px;
    }


    /* Cards */

    .rooms-page .rooms-cards-grid {
        max-width: 350px !important;
    }

    .rooms-page .room-card,
    .rooms-page .room-card.room-card-featured {
        max-width: 350px !important;
    }

    .rooms-page .room-card-image {
        height: 200px !important;
    }

    .rooms-page .room-card-content {
        padding: 20px 15px 23px !important;
    }

    .rooms-page .room-card-content h3 {
        font-size: 23px;
    }


    /* Comfort */

    .rooms-page .rooms-comfort-visual {
        min-height: 320px;
    }

    .rooms-page .rooms-comfort-visual > strong {
        font-size: 34px;
    }

    .rooms-page .rooms-comfort-list {
        grid-template-columns: 1fr;
    }


    /* Buttons */

    .rooms-page .rooms-booking-actions,
    .rooms-page .rooms-final-buttons {
        width: 100%;

        flex-direction: column;
    }

    .rooms-page .rooms-btn,
    .rooms-page .rooms-final-btn {
        width: 100%;
    }
}
```
```css
/* =========================================================
   MALLIKARJUNA SADAN
   ROOMS PAGE — COMPLETE FINAL CSS
   CLEAN • RESPONSIVE • NO OVERLAP • NO IMAGE REPEAT
========================================================= */


/* =========================================================
   GLOBAL ROOMS RESET
========================================================= */

.rooms-page,
.rooms-page * {
    box-sizing: border-box;
}

.rooms-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    overflow-x: hidden;

    background: #ffffff;
    color: #30383a;

    font-family: "DM Sans", sans-serif;
}

.rooms-page img {
    max-width: 100%;
    display: block;
}

.rooms-page a {
    text-decoration: none;
}

.rooms-page section {
    position: relative;
    width: 100%;
    clear: both;
}


/* =========================================================
   CONTAINER
========================================================= */

.rooms-page .container {
    width: 100%;
    max-width: 1180px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
========================================================= */

.rooms-page .rooms-hero {
    position: relative;

    width: 100%;
    min-height: 520px;

    padding: 120px 0 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image: url("../images/room1.jfif") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.rooms-page .rooms-hero-overlay {
    display: none !important;
}

.rooms-page .rooms-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;
    padding: 0 20px;

    text-align: center;
}

.rooms-page .rooms-hero-tag {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rooms-page .rooms-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 65px);
    font-weight: 600;

    line-height: 1.08;
}

.rooms-page .rooms-hero h1 span {
    display: block;

    margin-top: 8px;

    color: var(--green-dark);
}

.rooms-page .rooms-hero p {
    max-width: 680px;

    margin: 24px auto 0;

    color: rgba(255,255,255,.90);

    font-size: 15px;
    line-height: 1.8;
}

.rooms-page .rooms-breadcrumb {
    margin-top: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: rgba(255,255,255,.82);

    font-size: 13px;
}

.rooms-page .rooms-breadcrumb a {
    color: #ffffff;
}

.rooms-page .rooms-breadcrumb a:hover {
    color: var(--green-dark);
}

.rooms-page .rooms-breadcrumb i {
    color: var(--green-dark);

    font-size: 9px;
}


/* =========================================================
   COMMON SECTION LABEL
========================================================= */

.rooms-page .rooms-section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.rooms-page .rooms-intro-section {
    padding: 90px 0;

    background: #ffffff;
}

.rooms-page .rooms-intro-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .9fr);

    gap: 65px;

    align-items: center;
}

.rooms-page .rooms-intro-content {
    width: 100%;
    min-width: 0;
}

.rooms-page .rooms-intro-content h2 {
    margin: 0 0 20px;

    color: #26383b;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;

    line-height: 1.15;
}

.rooms-page .rooms-intro-content h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-intro-content p {
    max-width: 620px;

    margin: 0 0 15px;

    color: #6c797c;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   INTRO POINTS
========================================================= */

.rooms-page .rooms-intro-points {
    margin-top: 25px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 13px 22px;
}

.rooms-page .rooms-intro-points > div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #4c5b5e;

    font-size: 13px;
    font-weight: 600;
}

.rooms-page .rooms-intro-points i {
    color: var(--green-dark);

    font-size: 14px;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.rooms-page .rooms-intro-visual {
    position: relative;

    width: 100%;

    padding-bottom: 30px;
}

.rooms-page .rooms-intro-image {
    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 7px;

    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.rooms-page .rooms-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.rooms-page .rooms-intro-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   INTRO FLOATING CARD
========================================================= */

.rooms-page .rooms-intro-card {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 0;

    min-height: 72px;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: #ffffff;

    border-left: 4px solid var(--green-dark);

    box-shadow: 0 12px 35px rgba(0,0,0,.14);
}

.rooms-page .rooms-intro-card > i {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: color-mix(
        in srgb,
        var(--green-dark) 10%,
        #ffffff
    );

    color: var(--green-dark);

    font-size: 16px;
}

.rooms-page .rooms-intro-card strong {
    display: block;

    margin-bottom: 2px;

    color: #26383b;

    font-size: 14px;
}

.rooms-page .rooms-intro-card span {
    display: block;

    color: #7a8587;

    font-size: 12px;
}


/* =========================================================
   ROOM OPTIONS
========================================================= */

.rooms-page .rooms-options-section {
    padding: 90px 0;

    background: #f7faf9;
}

.rooms-page .rooms-section-heading {
    width: 100%;
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.rooms-page .rooms-section-heading h2 {
    margin: 0 0 15px;

    color: #26383b;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px,4vw,48px);
    font-weight: 600;

    line-height: 1.15;
}

.rooms-page .rooms-section-heading h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-section-heading p {
    max-width: 600px;

    margin: 0 auto;

    color: #6c797c;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   ROOM CARDS
   TWO CARDS CENTERED
========================================================= */

.rooms-page .rooms-cards-grid {
    position: relative;

    width: 100%;
    max-width: 790px;

    margin: 0 auto !important;
    padding: 0 !important;

    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 360px)) !important;

    gap: 42px !important;

    justify-content: center !important;
    align-items: stretch !important;

    float: none !important;
}


/* =========================================================
   ROOM CARD
========================================================= */

.rooms-page .room-card,
.rooms-page .room-card.room-card-featured {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    max-width: 360px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    float: none !important;

    display: flex !important;
    flex-direction: column !important;

    transform: none;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe8e6;

    border-radius: 7px;

    box-shadow: 0 10px 30px rgba(0,0,0,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.rooms-page .room-card:hover {
    transform: translateY(-5px) !important;

    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}


/* =========================================================
   ROOM IMAGE
========================================================= */

.rooms-page .room-card-image {
    position: relative !important;

    width: 100% !important;
    height: 205px !important;

    flex: 0 0 205px;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    background: #ffffff !important;
}

.rooms-page .room-card-image img {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;

    opacity: 1 !important;

    filter: none !important;

    mix-blend-mode: normal !important;

    transition: transform .4s ease;
}

.rooms-page .room-card:hover .room-card-image img {
    transform: scale(1.035);
}


/* =========================================================
   ROOM BADGE
========================================================= */

.rooms-page .room-card-badge {
    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 4;

    padding: 6px 10px;

    background: var(--green-dark);

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* =========================================================
   ROOM CARD CONTENT
========================================================= */

.rooms-page .room-card-content {
    position: relative !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 20px 18px 22px !important;

    display: flex !important;
    flex-direction: column !important;

    flex: 1 1 auto;

    text-align: center;

    transform: none !important;
}

.rooms-page .room-card-top {
    position: relative !important;

    width: 100% !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 9px;
}

.rooms-page .room-card-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: color-mix(
        in srgb,
        var(--green-dark) 10%,
        #ffffff
    );

    color: var(--green-dark);

    font-size: 14px;
}

.rooms-page .room-card-type {
    color: var(--green-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


/* =========================================================
   ROOM TITLE
========================================================= */

.rooms-page .room-card-content h3 {
    width: 100% !important;

    margin: 0 0 9px !important;
    padding: 0 !important;

    color: #26383b;

    font-family: "Playfair Display", serif;

    font-size: 24px;
    font-weight: 600;

    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   ROOM DESCRIPTION
========================================================= */

.rooms-page .room-card-content > p {
    width: 100% !important;
    max-width: 315px;

    margin: 0 auto 16px !important;
    padding: 0 !important;

    color: #718083;

    font-size: 12px;
    line-height: 1.7;

    text-align: center;
}


/* =========================================================
   ROOM FEATURES
========================================================= */

.rooms-page .room-card-features {
    width: 100% !important;
    max-width: 320px;

    margin: 0 auto 18px !important;
    padding: 0 !important;

    display: flex !important;

    flex-wrap: wrap !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 6px;
}

.rooms-page .room-card-features span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 8px;

    background: #f5f9f8;

    border: 1px solid #e0eae8;

    color: #637073;

    font-size: 9px;
    font-weight: 600;
}

.rooms-page .room-card-features i {
    color: var(--green-dark);

    font-size: 8px;
}


/* =========================================================
   ROOM BUTTON
========================================================= */

.rooms-page .room-card-link {
    align-self: center;

    width: auto !important;

    margin: 0 auto !important;
    padding: 10px 14px;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 7px;

    background: var(--green-dark);

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    transition: .25s ease;
}

.rooms-page .room-card-link:hover {
    background: #ffffff;

    color: var(--green-dark);

    box-shadow:
        inset 0 0 0 1px var(--green-dark);
}

.rooms-page .room-card-link i {
    font-size: 9px;

    transition: transform .25s ease;
}

.rooms-page .room-card-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   COMFORT SECTION
========================================================= */

.rooms-page .rooms-comfort-section {
    padding: 90px 0;

    background: #ffffff;
}

.rooms-page .rooms-comfort-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,.85fr)
        minmax(0,1.15fr);

    gap: 60px;

    align-items: center;
}


/* =========================================================
   COMFORT VISUAL
========================================================= */

.rooms-page .rooms-comfort-visual {
    position: relative;

    width: 100%;
    min-height: 410px;

    padding: 45px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 7px;

    background-image: url("../images/room1.jfif") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* NO BLACK OVERLAY */

.rooms-page .rooms-comfort-visual::before,
.rooms-page .rooms-comfort-visual::after {
    display: none !important;

    content: none !important;
}


/* Pattern */

.rooms-page .rooms-comfort-pattern {
    position: absolute;

    inset: 25px;

    border: 1px solid
        color-mix(
            in srgb,
            var(--green-dark) 65%,
            transparent
        );

    pointer-events: none;
}

.rooms-page .rooms-comfort-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-dark);

    color: #ffffff;

    font-size: 25px;
}

.rooms-page .rooms-comfort-visual > span {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.rooms-page .rooms-comfort-visual > strong {
    position: relative;
    z-index: 2;

    max-width: 350px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 38px;
    font-weight: 600;

    line-height: 1.15;

    text-align: center;
}

.rooms-page .rooms-comfort-visual > strong em {
    display: block;

    color: var(--green-dark);

    font-style: normal;
}


/* =========================================================
   COMFORT CONTENT
========================================================= */

.rooms-page .rooms-comfort-content {
    width: 100%;
    min-width: 0;
}

.rooms-page .rooms-comfort-content h2 {
    margin: 0 0 17px;

    color: #26383b;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px,4vw,48px);
    font-weight: 600;

    line-height: 1.15;
}

.rooms-page .rooms-comfort-content h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-comfort-content > p {
    max-width: 650px;

    margin: 0 0 13px;

    color: #6c797c;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   COMFORT LIST
========================================================= */

.rooms-page .rooms-comfort-list {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 14px;
}

.rooms-page .rooms-comfort-item {
    padding: 15px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    background: #f7faf9;

    border: 1px solid #e0eae8;
}

.rooms-page .rooms-comfort-item-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: color-mix(
        in srgb,
        var(--green-dark) 10%,
        #ffffff
    );

    color: var(--green-dark);

    font-size: 14px;
}

.rooms-page .rooms-comfort-item h3 {
    margin: 0 0 4px;

    color: #26383b;

    font-family: "Playfair Display", serif;

    font-size: 16px;
    font-weight: 600;
}

.rooms-page .rooms-comfort-item p {
    margin: 0;

    color: #788386;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   BOOKING CTA
========================================================= */

.rooms-page .rooms-booking-section {
    padding: 80px 0;

    background: var(--green-dark);
}

.rooms-page .rooms-booking-box {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 45px 35px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(255,255,255,.28);
}

.rooms-page .rooms-booking-content {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;
}

.rooms-page .rooms-booking-content > span {
    display: block;

    margin-bottom: 10px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.rooms-page .rooms-booking-content h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(30px,4vw,44px);
    font-weight: 600;

    line-height: 1.15;
}

.rooms-page .rooms-booking-content h2 strong {
    color: #ffffff;
}

.rooms-page .rooms-booking-content p {
    max-width: 620px;

    margin: 0 auto;

    color: rgba(255,255,255,.82);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   BOOKING BUTTONS
========================================================= */

.rooms-page .rooms-booking-actions {
    margin-top: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;
}

.rooms-page .rooms-btn {
    min-height: 44px;

    padding: 11px 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 11px;
    font-weight: 700;

    transition: .25s ease;
}

.rooms-page .rooms-btn-light {
    background: #ffffff;

    color: var(--green-dark);
}

.rooms-page .rooms-btn-light:hover {
    background: #eef7f5;

    color: var(--green-dark);
}

.rooms-page .rooms-btn-gold {
    background: #ffffff;

    color: var(--green-dark);
}

.rooms-page .rooms-btn-gold:hover {
    background: #041b1e;

    color: #ffffff;
}


/* =========================================================
   INFORMATION SECTION
========================================================= */

.rooms-page .rooms-note-section {
    padding: 70px 0;

    background: #f7faf9;
}

.rooms-page .rooms-note-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,.8fr)
        minmax(0,1.2fr);

    gap: 55px;

    align-items: center;
}

.rooms-page .rooms-note-grid h2 {
    margin: 0;

    color: #26383b;

    font-family: "Playfair Display", serif;

    font-size: clamp(32px,4vw,44px);
    font-weight: 600;

    line-height: 1.15;
}

.rooms-page .rooms-note-grid h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;
}

.rooms-page .rooms-note-content p {
    max-width: 650px;

    margin: 0 0 17px;

    color: #6c797c;

    font-size: 13px;
    line-height: 1.8;
}

.rooms-page .rooms-note-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
}

.rooms-page .rooms-note-link:hover {
    color: #041b1e;
}


/* =========================================================
   FINAL CTA
   IMPORTANT:
   IMAGE ONLY ONCE
   NO REPEAT
   NO BLACK OVERLAY
========================================================= */

.rooms-page .rooms-final-cta {
    position: relative;

    width: 100%;
    min-height: 440px;

    padding: 95px 0;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image: url("../images/room1.jfif") !important;

    background-position: center center !important;
    background-size: cover !important;

    background-repeat: no-repeat !important;

    background-attachment: scroll !important;
}


/* Completely remove overlay */

.rooms-page .rooms-final-overlay {
    display: none !important;

    opacity: 0 !important;
    visibility: hidden !important;

    background: transparent !important;
}


/* =========================================================
   FINAL CTA CONTENT
========================================================= */

.rooms-page .rooms-final-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 780px;

    margin: 0 auto;

    padding: 0 20px;

    text-align: center;
}


/* Small heading over photo */

.rooms-page .rooms-final-content > span {
    display: block;

    margin-bottom: 12px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* Main heading */

.rooms-page .rooms-final-content h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(35px,5vw,55px);
    font-weight: 600;

    line-height: 1.1;

    text-shadow:
        0 2px 8px rgba(0,0,0,.35);
}

.rooms-page .rooms-final-content h2 strong {
    display: block;

    color: var(--green-dark);

    font-weight: 600;

    text-shadow:
        0 2px 8px rgba(0,0,0,.35);
}


/* Paragraph */

.rooms-page .rooms-final-content p {
    max-width: 650px;

    margin: 0 auto;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.8;

    text-shadow:
        0 1px 6px rgba(0,0,0,.40);
}


/* =========================================================
   FINAL CTA BUTTONS
========================================================= */

.rooms-page .rooms-final-buttons {
    margin-top: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;
}

.rooms-page .rooms-final-btn {
    min-height: 46px;

    padding: 12px 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 11px;
    font-weight: 700;

    transition: .25s ease;
}

.rooms-page .rooms-final-btn-primary {
    background: var(--green-dark);

    color: #ffffff;
}

.rooms-page .rooms-final-btn-primary:hover {
    background: #ffffff;

    color: var(--green-dark);
}

.rooms-page .rooms-final-btn-outline {
    background: rgba(0,0,0,.18);

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.75);

    backdrop-filter: blur(2px);
}

.rooms-page .rooms-final-btn-outline:hover {
    background: #ffffff;

    color: var(--green-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .rooms-page .rooms-intro-grid {
        gap: 40px;
    }

    .rooms-page .rooms-comfort-grid {
        gap: 40px;
    }

    .rooms-page .rooms-note-grid {
        gap: 35px;
    }

    .rooms-page .rooms-cards-grid {
        max-width: 750px !important;

        grid-template-columns:
            repeat(2,minmax(0,340px)) !important;

        gap: 30px !important;
    }

    .rooms-page .room-card,
    .rooms-page .room-card.room-card-featured {
        max-width: 340px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .rooms-page .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Hero */

    .rooms-page .rooms-hero {
        min-height: 480px;

        padding: 95px 0 75px;
    }

    .rooms-page .rooms-hero h1 {
        font-size: 39px;
    }

    .rooms-page .rooms-hero p {
        font-size: 13px;
    }


    /* Intro */

    .rooms-page .rooms-intro-section {
        padding: 65px 0;
    }

    .rooms-page .rooms-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .rooms-page .rooms-intro-image {
        height: 350px;
    }

    .rooms-page .rooms-intro-points {
        grid-template-columns: 1fr;
    }


    /* Room Cards */

    .rooms-page .rooms-options-section {
        padding: 65px 0;
    }

    .rooms-page .rooms-cards-grid {
        width: 100% !important;
        max-width: 390px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        grid-template-columns: 1fr !important;

        gap: 25px !important;
    }

    .rooms-page .room-card,
    .rooms-page .room-card.room-card-featured {
        width: 100% !important;
        max-width: 390px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* Comfort */

    .rooms-page .rooms-comfort-section {
        padding: 65px 0;
    }

    .rooms-page .rooms-comfort-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .rooms-page .rooms-comfort-visual {
        min-height: 350px;
    }


    /* Booking */

    .rooms-page .rooms-booking-section {
        padding: 60px 0;
    }

    .rooms-page .rooms-booking-box {
        padding: 38px 22px;
    }


    /* Information */

    .rooms-page .rooms-note-section {
        padding: 60px 0;
    }

    .rooms-page .rooms-note-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* Final CTA */

    .rooms-page .rooms-final-cta {
        min-height: 420px;

        padding: 80px 0;

        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .rooms-page .rooms-final-content {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rooms-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Hero */

    .rooms-page .rooms-hero {
        min-height: 450px;

        padding: 85px 0 65px;
    }

    .rooms-page .rooms-hero h1 {
        font-size: 33px;
    }


    /* Intro */

    .rooms-page .rooms-intro-image {
        height: 290px;
    }

    .rooms-page .rooms-intro-card {
        left: 12px;
        right: 12px;

        padding: 12px 14px;
    }


    /* Room Cards */

    .rooms-page .rooms-cards-grid {
        max-width: 350px !important;
    }

    .rooms-page .room-card,
    .rooms-page .room-card.room-card-featured {
        max-width: 350px !important;
    }

    .rooms-page .room-card-image {
        height: 195px !important;

        flex-basis: 195px;
    }

    .rooms-page .room-card-content {
        padding: 19px 14px 22px !important;
    }

    .rooms-page .room-card-content h3 {
        font-size: 22px;
    }


    /* Comfort */

    .rooms-page .rooms-comfort-visual {
        min-height: 315px;
    }

    .rooms-page .rooms-comfort-visual > strong {
        font-size: 32px;
    }

    .rooms-page .rooms-comfort-list {
        grid-template-columns: 1fr;
    }


    /* Buttons */

    .rooms-page .rooms-booking-actions,
    .rooms-page .rooms-final-buttons {
        width: 100%;

        flex-direction: column;
    }

    .rooms-page .rooms-btn,
    .rooms-page .rooms-final-btn {
        width: 100%;
    }
}
```css id="s7z1dm"
/* =========================================================
   MALLIKARJUNA SADAN
   FACILITIES PAGE
========================================================= */

.facilities-page,
.facilities-page * {
    box-sizing: border-box;
}

.facilities-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #263a3b;
    font-family: "DM Sans", sans-serif;
}

.facilities-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.facilities-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("../images/hotel.jfif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.facilities-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 27, 30, .42);
}

.facilities-hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    text-align: center;
    color: #fff;
}

.facilities-hero-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 9px 17px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.facilities-hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;

    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.08;
    font-weight: 600;
}

.facilities-hero h1 span {
    display: block;
    margin-top: 7px;
    color: var(--green-dark);
}

.facilities-hero-content > p {
    max-width: 680px;
    margin: 0 auto 28px;

    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
}

.facilities-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    font-size: 14px;
}

.facilities-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.facilities-breadcrumb a:hover {
    color: var(--green-dark);
}

.facilities-breadcrumb i {
    font-size: 10px;
}


/* =========================================================
   COMMON LABEL
========================================================= */

.facilities-label {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--green-dark);
}


/* =========================================================
   INTRO
========================================================= */

.facilities-intro {
    padding: 105px 0;
    background: #fff;
}

.facilities-intro-grid {
    display: grid;
    grid-template-columns: 1fr .88fr;
    gap: 80px;
    align-items: center;
}

.facilities-intro-content h2 {
    max-width: 650px;
    margin: 0 0 22px;

    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.14;
    font-weight: 600;

    color: #203637;
}

.facilities-intro-content h2 strong {
    display: block;
    color: var(--green-dark);
    font-weight: 600;
}

.facilities-intro-content > p {
    max-width: 650px;
    margin: 0 0 17px;

    font-size: 15px;
    line-height: 1.9;
    color: #68797a;
}

.facilities-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    margin-top: 30px;
}

.facilities-check-list div {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
    color: #34494a;
}

.facilities-check-list i {
    color: var(--green-dark);
}

.facilities-intro-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    padding-bottom: 25px;
}

.facilities-intro-image > img {
    display: block;
    width: 100%;
    height: 460px;

    object-fit: cover;
    border-radius: 18px;

    box-shadow: 0 22px 55px rgba(20,55,56,.12);
}

.facilities-image-card {
    position: absolute;
    left: -25px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 245px;
    padding: 17px 20px;

    border-radius: 13px;
    background: #fff;

    box-shadow: 0 15px 40px rgba(20,55,56,.16);
}

.facilities-image-card > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    border-radius: 12px;
    background: var(--green-dark);
    color: #fff;
}

.facilities-image-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    color: #203637;
}

.facilities-image-card span {
    font-size: 12px;
    color: #7a8889;
}


/* =========================================================
   FACILITIES GRID
========================================================= */

.facilities-list-section {
    padding: 105px 0;
    background: #f5f8f7;
}

.facilities-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.facilities-heading h2 {
    margin: 0 0 17px;

    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.15;
    color: #203637;
}

.facilities-heading h2 strong {
    color: var(--green-dark);
    font-weight: 600;
}

.facilities-heading p {
    max-width: 620px;
    margin: auto;

    font-size: 15px;
    line-height: 1.8;
    color: #718081;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.facility-box {
    position: relative;
    min-height: 275px;

    padding: 32px 27px;

    overflow: hidden;

    border: 1px solid #e1e9e7;
    border-radius: 16px;
    background: #fff;

    box-shadow: 0 8px 25px rgba(20,55,56,.045);

    transition: .3s ease;
}

.facility-box:hover {
    transform: translateY(-7px);
    border-color: rgba(18,179,199,.35);
    box-shadow: 0 18px 40px rgba(20,55,56,.10);
}

.facility-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 23px;

    border-radius: 14px;
    background: rgba(18,179,199,.10);

    color: var(--green-dark);
    font-size: 22px;

    transition: .3s ease;
}

.facility-box:hover .facility-icon {
    background: var(--green-dark);
    color: #fff;
}

.facility-no {
    position: absolute;
    top: 27px;
    right: 24px;

    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 600;
    color: #dfe8e7;
}

.facility-box h3 {
    margin: 0 0 11px;

    font-family: "Playfair Display", serif;
    font-size: 23px;
    color: #203637;
}

.facility-box p {
    margin: 0;

    font-size: 13.5px;
    line-height: 1.75;
    color: #748284;
}


/* =========================================================
   COMFORT
========================================================= */

.facilities-comfort {
    padding: 110px 0;
    background: #fff;
}

.facilities-comfort-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 80px;
    align-items: center;
}

.facilities-comfort-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;

    box-shadow: 0 22px 55px rgba(20,55,56,.11);
}

.facilities-comfort-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.facilities-comfort-content h2 {
    margin: 0 0 22px;

    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.14;
    color: #203637;
}

.facilities-comfort-content h2 strong {
    display: block;
    color: var(--green-dark);
    font-weight: 600;
}

.facilities-comfort-content > p {
    max-width: 620px;
    margin: 0 0 17px;

    font-size: 15px;
    line-height: 1.9;
    color: #68797a;
}

.comfort-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    margin-top: 30px;
}

.comfort-points div {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 48px;
    padding: 10px 13px;

    border-radius: 10px;
    background: #f5f8f7;

    font-size: 13px;
    font-weight: 600;
    color: #33494a;
}

.comfort-points i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    flex: 0 0 25px;

    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: 10px;
}


/* =========================================================
   WHATSAPP CTA
========================================================= */

.facilities-cta {
    padding: 0 0 105px;
    background: #fff;
}

.facilities-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 48px 55px;

    border-radius: 18px;
    background: var(--green-dark);

    box-shadow: 0 18px 45px rgba(20,55,56,.14);
}

.facilities-cta-box > div {
    max-width: 700px;
}

.facilities-cta-box > div > span {
    display: block;
    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,.72);
}

.facilities-cta-box h2 {
    margin: 0 0 12px;

    font-family: "Playfair Display", serif;
    font-size: clamp(29px, 3.2vw, 42px);
    line-height: 1.15;
    color: #fff;
}

.facilities-cta-box h2 strong {
    color: #fff;
    font-weight: 600;
}

.facilities-cta-box p {
    margin: 0;

    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
}

.facilities-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 54px;
    padding: 0 25px;

    border-radius: 8px;
    background: #fff;

    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    white-space: nowrap;

    transition: .3s ease;
}

.facilities-whatsapp-btn:hover {
    transform: translateY(-3px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.facilities-final {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/room1.jfif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.facilities-final-overlay {
    position: absolute;
    inset: 0;

    background: rgba(4,27,30,.20);
}

.facilities-final-content {
    position: relative;
    z-index: 2;

    padding: 90px 20px;

    text-align: center;
    color: #fff;
}

.facilities-final-content > span {
    display: block;
    margin-bottom: 16px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.facilities-final-content h2 {
    max-width: 800px;
    margin: 0 auto 18px;

    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.1;

    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.facilities-final-content h2 strong {
    display: block;
    color: var(--green-dark);
}

.facilities-final-content > p {
    max-width: 650px;
    margin: 0 auto 28px;

    font-size: 15px;
    line-height: 1.8;

    color: #fff;
    text-shadow: 0 1px 5px rgba(0,0,0,.20);
}

.facilities-final-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.facilities-final-primary,
.facilities-final-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition: .3s ease;
}

.facilities-final-primary {
    background: var(--green-dark);
    color: #fff;
}

.facilities-final-primary:hover {
    background: #fff;
    color: var(--green-dark);
    transform: translateY(-3px);
}

.facilities-final-outline {
    border: 1px solid rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.facilities-final-outline:hover {
    background: #fff;
    color: var(--green-dark);
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .facilities-intro-grid,
    .facilities-comfort-grid {
        gap: 50px;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .facilities-page .container {
        width: calc(100% - 30px);
    }

    /* HERO */

    .facilities-hero {
        min-height: 510px;
    }

    .facilities-hero-content {
        padding: 70px 0;
    }

    .facilities-hero h1 {
        font-size: 38px;
    }

    .facilities-hero-content > p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* INTRO */

    .facilities-intro {
        padding: 75px 0;
    }

    .facilities-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .facilities-intro-content h2,
    .facilities-comfort-content h2 {
        font-size: 35px;
    }

    .facilities-check-list {
        grid-template-columns: 1fr;
    }

    .facilities-intro-image {
        max-width: 100%;
        padding-bottom: 22px;
    }

    .facilities-intro-image > img {
        height: 350px;
    }

    .facilities-image-card {
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        min-width: 0;
    }


    /* FACILITIES */

    .facilities-list-section {
        padding: 75px 0;
    }

    .facilities-heading {
        margin-bottom: 40px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .facility-box {
        min-height: auto;
    }


    /* COMFORT */

    .facilities-comfort {
        padding: 75px 0;
    }

    .facilities-comfort-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .facilities-comfort-image {
        height: 350px;
    }

    .comfort-points {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .facilities-cta {
        padding-bottom: 75px;
    }

    .facilities-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .facilities-whatsapp-btn {
        width: 100%;
    }


    /* FINAL */

    .facilities-final {
        min-height: 520px;
    }

    .facilities-final-content {
        padding: 75px 15px;
    }

    .facilities-final-content h2 {
        font-size: 39px;
    }

    .facilities-final-buttons {
        flex-direction: column;
        width: 100%;
    }

    .facilities-final-primary,
    .facilities-final-outline {
        width: 100%;
        max-width: 300px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .facilities-hero h1 {
        font-size: 33px;
    }

    .facilities-intro-content h2,
    .facilities-comfort-content h2,
    .facilities-heading h2 {
        font-size: 31px;
    }

    .facilities-final-content h2 {
        font-size: 34px;
    }

}

/* =========================================================
   MALLIKARJUNA SADAN
   CONTACT PAGE — COMPLETE PREMIUM CSS
========================================================= */


/* =========================================================
   RESET / BASE
========================================================= */

.contact-page,
.contact-page * {
    box-sizing: border-box;
}

.contact-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    color: #253a3a;
    font-family: "DM Sans", sans-serif;
}

.contact-page img {
    max-width: 100%;
}

.contact-page a {
    text-decoration: none;
}

.contact-page button,
.contact-page input,
.contact-page select,
.contact-page textarea {
    font-family: "DM Sans", sans-serif;
}

.contact-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;
    width: 100%;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #173b37;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 32, 30, 0.94) 0%,
            rgba(8, 32, 30, 0.76) 45%,
            rgba(8, 32, 30, 0.40) 100%
        ),
        url("../images/hotel.jfif");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 105px 0;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #a8d9ae;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.contact-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #8fc698;
}

.contact-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-hero h1 span {
    display: block;
    margin-top: 5px;
    color: #a8d9ae;
}

.contact-hero p {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.80);
    font-size: 16px;
    line-height: 1.85;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
    font-size: 13px;
}

.contact-breadcrumb a {
    color: #a8d9ae;
    font-weight: 600;
}

.contact-breadcrumb i {
    color: rgba(255,255,255,.38);
    font-size: 10px;
}

.contact-breadcrumb span {
    color: rgba(255,255,255,.66);
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.contact-main {
    position: relative;
    padding: 105px 0 110px;
    background: #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-info {
    padding-top: 5px;
}

.contact-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #3d8650;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.contact-info h2 {
    max-width: 560px;
    margin: 0;
    color: #1f3434;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.10;
    font-weight: 600;
    letter-spacing: -.5px;
}

.contact-info h2 strong {
    display: block;
    margin-top: 3px;
    color: #4a9858;
    font-weight: 600;
}

.contact-intro-text {
    max-width: 590px;
    margin: 23px 0 30px;
    color: #6d7b7a;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #e8eeea;
}

.contact-info-card:first-of-type {
    border-top: 1px solid #e8eeea;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: #edf5ee;
    color: #3d8650;
    font-size: 17px;
}

.contact-info-icon.whatsapp-icon {
    background: #edf5ee;
    color: #3d8650;
}

.contact-info-card > div:last-child {
    min-width: 0;
}

.contact-info-card span {
    display: block;
    margin-bottom: 5px;
    color: #899492;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card strong {
    display: block;
    color: #283d3d;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
    word-break: break-word;
}

.contact-info-card a {
    transition: color .25s ease;
}

.contact-info-card a:hover {
    color: #3d8650;
}

.contact-info-card small {
    display: block;
    margin-top: 3px;
    color: #8a9593;
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   WHATSAPP LARGE BUTTON
========================================================= */

.contact-whatsapp-large {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
    margin-top: 27px;
    padding: 18px 19px;

    border-radius: 13px;
    background: #3d8650;
    color: #ffffff;

    box-shadow: 0 14px 30px rgba(61,134,80,.15);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.contact-whatsapp-large:hover {
    transform: translateY(-3px);
    background: #327244;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(61,134,80,.20);
}

.contact-whatsapp-large > i:first-child {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,.15);
    font-size: 22px;
}

.contact-whatsapp-large span {
    flex: 1;
    min-width: 0;
}

.contact-whatsapp-large strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.contact-whatsapp-large small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    line-height: 1.4;
}

.contact-whatsapp-large .arrow-icon {
    width: auto;
    height: auto;
    background: transparent;
    font-size: 13px;
}


/* =========================================================
   FORM BOX
========================================================= */

.contact-form-box {
    position: relative;
    padding: 40px;
    border: 1px solid #e0e8e1;
    border-radius: 22px;
    background: #f7faf7;

    box-shadow:
        0 18px 50px rgba(32,68,45,.07);
}

.contact-form-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: #4a9858;
}


/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-heading {
    margin-bottom: 29px;
}

.contact-form-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #3d8650;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-form-heading h2 {
    margin: 0;
    color: #203535;
    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1.13;
    font-weight: 600;
}

.contact-form-heading h2 strong {
    color: #4a9858;
    font-weight: 600;
}

.contact-form-heading p {
    max-width: 510px;
    margin: 12px 0 0;
    color: #778381;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FORM ROW
========================================================= */

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* =========================================================
   FORM FIELD
========================================================= */

.contact-field {
    margin-bottom: 18px;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #344747;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    display: block;
    width: 100%;

    border: 1px solid #dce5de;
    outline: none;
    border-radius: 9px;

    background: #ffffff;
    color: #2d4141;

    font-size: 13px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-field input,
.contact-field select {
    height: 48px;
    padding: 0 14px;
}

.contact-field textarea {
    min-height: 125px;
    padding: 13px 14px;
    resize: vertical;
    line-height: 1.65;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a2acab;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #79aa81;
    box-shadow: 0 0 0 3px rgba(61,134,80,.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    width: 100%;
    min-height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 18px;
    border: 0;
    border-radius: 9px;

    background: #3d8650;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 12px 25px rgba(61,134,80,.14);

    transition:
        transform .3s ease,
        background .3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    background: #327244;
}

.contact-submit-btn i:first-child {
    font-size: 18px;
}

.contact-submit-btn i:last-child {
    font-size: 11px;
}


/* =========================================================
   FORM NOTE
========================================================= */

.contact-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    margin: 12px 0 0;

    color: #8a9592;
    font-size: 10px;
    line-height: 1.5;
}

.contact-form-note i {
    font-size: 9px;
}


/* =========================================================
   MAP SECTION
========================================================= */

.contact-map-section {
    padding: 105px 0;
    background: #f3f7f4;
}

.contact-section-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.contact-section-heading .contact-label {
    margin-bottom: 12px;
}

.contact-section-heading h2 {
    margin: 0;
    color: #203535;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 600;
}

.contact-section-heading h2 strong {
    display: block;
    color: #4a9858;
    font-weight: 600;
}

.contact-section-heading p {
    max-width: 610px;
    margin: 18px 0 0;
    color: #71807d;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   MAP CARD
========================================================= */

.contact-map-card {
    overflow: hidden;

    border: 1px solid #dfe8e1;
    border-radius: 21px;

    background: #ffffff;

    box-shadow:
        0 18px 50px rgba(34,72,45,.07);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 470px;
    min-height: 470px;
    border: 0;
}


/* =========================================================
   MAP FOOTER
========================================================= */

.contact-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 21px 25px;
}

.contact-map-address {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.contact-map-address > div {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;
    background: #e5f1e7;
    color: #3d8650;
}

.contact-map-address span {
    color: #566664;
    font-size: 13px;
    line-height: 1.55;
}

.contact-direction-btn {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 44px;
    padding: 0 17px;

    border-radius: 8px;
    background: #3d8650;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .3s ease,
        background .3s ease;
}

.contact-direction-btn:hover {
    transform: translateY(-2px);
    background: #327244;
    color: #ffffff;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final {
    position: relative;
    min-height: 475px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url("../images/room1.jfif")
        center center / cover no-repeat;
}

.contact-final-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,34,30,.94) 0%,
            rgba(10,50,42,.76) 50%,
            rgba(10,50,42,.42) 100%
        );
}

.contact-final-content {
    position: relative;
    z-index: 2;

    padding: 90px 0;

    color: #ffffff;
}

.contact-final-content > span {
    display: inline-block;
    margin-bottom: 14px;

    color: #a9dbae;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.3px;
}

.contact-final-content h2 {
    max-width: 650px;
    margin: 0;

    color: #ffffff;

    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 600;
}

.contact-final-content h2 strong {
    display: block;
    color: #a9dbae;
    font-weight: 600;
}

.contact-final-content p {
    max-width: 570px;
    margin: 20px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 15px;
    line-height: 1.8;
}

.contact-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 51px;
    margin-top: 28px;
    padding: 0 22px;

    border-radius: 8px;
    background: #3d8650;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .3s ease,
        background .3s ease;
}

.contact-final-btn:hover {
    transform: translateY(-2px);
    background: #327244;
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        max-width: 780px;
    }

    .contact-form-box {
        max-width: 780px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-page .container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .contact-hero {
        min-height: 500px;
    }

    .contact-hero-content {
        padding: 80px 0;
    }

    .contact-hero h1 {
        font-size: 43px;
        letter-spacing: -.5px;
    }

    .contact-hero p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }


    /* MAIN */

    .contact-main {
        padding: 72px 0 75px;
    }

    .contact-main-grid {
        gap: 48px;
    }

    .contact-info h2 {
        font-size: 37px;
    }

    .contact-intro-text {
        font-size: 14px;
        line-height: 1.8;
    }


    /* FORM */

    .contact-form-box {
        padding: 31px 20px 24px;
        border-radius: 17px;
    }

    .contact-form-box::before {
        left: 20px;
        right: 20px;
    }

    .contact-form-heading h2 {
        font-size: 32px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* MAP */

    .contact-map-section {
        padding: 72px 0;
    }

    .contact-section-heading {
        margin-bottom: 30px;
    }

    .contact-section-heading h2 {
        font-size: 37px;
    }

    .contact-map-card {
        border-radius: 16px;
    }

    .contact-map-card iframe {
        height: 390px;
        min-height: 390px;
    }

    .contact-map-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
        padding: 18px;
    }

    .contact-direction-btn {
        width: 100%;
    }


    /* FINAL */

    .contact-final {
        min-height: 480px;
    }

    .contact-final-content {
        padding: 80px 0;
    }

    .contact-final-content h2 {
        font-size: 43px;
    }

    .contact-final-content p {
        font-size: 14px;
    }

    .contact-final-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-page .container {
        width: calc(100% - 24px);
    }

    .contact-hero {
        min-height: 470px;
    }

    .contact-hero-content {
        padding: 70px 0;
    }

    .contact-kicker {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .contact-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .contact-hero p {
        font-size: 13px;
    }

    .contact-info h2 {
        font-size: 33px;
    }

    .contact-form-box {
        padding: 29px 16px 22px;
    }

    .contact-form-box::before {
        left: 16px;
        right: 16px;
    }

    .contact-form-heading h2 {
        font-size: 29px;
    }

    .contact-info-card {
        gap: 13px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .contact-whatsapp-large {
        padding: 15px;
        gap: 11px;
    }

    .contact-whatsapp-large > i:first-child {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 19px;
    }

    .contact-whatsapp-large strong {
        font-size: 12px;
    }

    .contact-whatsapp-large small {
        font-size: 10px;
    }

    .contact-map-card iframe {
        height: 340px;
        min-height: 340px;
    }

    .contact-section-heading h2 {
        font-size: 33px;
    }

    .contact-final {
        min-height: 460px;
    }

    .contact-final-content h2 {
        font-size: 38px;
    }

}
/* =========================================================
   FLOATING CALL + WHATSAPP
   BOTTOM RIGHT
========================================================= */

.call-float,
.whatsapp-float {
    position: fixed !important;
    bottom: 22px !important;

    width: 54px !important;
    height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    z-index: 999999 !important;

    text-decoration: none !important;

    font-size: 20px;

    visibility: visible !important;
    opacity: 1 !important;
}

/* CALL — LEFT */

.call-float {
    right: 88px !important;
    left: auto !important;

    background: #118c9c !important;
    color: #ffffff !important;
}

/* WHATSAPP — RIGHT */

.whatsapp-float {
    right: 20px !important;
    left: auto !important;

    background: #25D366 !important;
    color: #ffffff !important;
}

.call-float i,
.whatsapp-float i {
    color: #ffffff !important;
}


/* MOBILE */

@media (max-width: 767px) {

    .call-float,
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        font-size: 18px;
    }

    .call-float {
        right: 75px !important;
    }

    .whatsapp-float {
        right: 15px !important;
    }
}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .call-float,
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        bottom: 12px !important;
    }

    .call-float {
        right: 70px !important;
    }

    .whatsapp-float {
        right: 12px !important;
    }
}
```css
/* =========================================================
   MALLIKARJUNA SADAN
   LOCATION PAGE
   PRIMARY COLOR: #263936
========================================================= */

.location-page,
.location-page * {
    box-sizing: border-box;
}

.location-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    color: #263936;
    font-family: "Poppins", sans-serif;
}

.location-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.location-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #263936;
}

.location-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 57, 54, 0.96) 0%,
            rgba(38, 57, 54, 0.86) 45%,
            rgba(38, 57, 54, 0.55) 100%
        ),
        url("../assets/images/hotel.jfif") center center / cover no-repeat;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.location-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #d3ad62;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location-hero h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.location-hero h1 span {
    color: #d3ad62;
}

.location-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.8;
}

.location-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.location-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.location-breadcrumb a:hover {
    color: #d3ad62;
}

.location-breadcrumb i {
    color: #d3ad62;
    font-size: 11px;
}


/* =========================================================
   INTRO
========================================================= */

.location-intro {
    padding: 100px 0;
    background: #ffffff;
}

.location-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 70px;
}

.location-copy {
    min-width: 0;
}

.location-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #263936;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location-copy h2,
.location-section-heading h2,
.nearby-content h2 {
    margin: 0 0 22px;
    color: #263936;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.location-copy h2 strong,
.location-section-heading h2 strong,
.nearby-content h2 strong {
    color: #263936;
    font-weight: 700;
}

.location-copy > p {
    margin: 0 0 18px;
    color: #66716f;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   ADDRESS CARD
========================================================= */

.location-address-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 22px;
    border: 1px solid #dce5e2;
    border-radius: 14px;
    background: #f5f8f7;
}

.location-card-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #263936;
    color: #ffffff;
    font-size: 18px;
}

.location-address-card > div:last-child {
    min-width: 0;
}

.location-address-card span {
    display: block;
    margin-bottom: 7px;
    color: #78837f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.location-address-card strong {
    display: block;
    color: #263936;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.location-actions a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 21px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.location-whatsapp {
    background: #263936;
    color: #ffffff;
}

.location-whatsapp:hover {
    background: #1d2d2a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(38, 57, 54, 0.18);
}

.location-map-btn {
    border: 1px solid #cbd8d4;
    background: #ffffff;
    color: #263936;
}

.location-map-btn:hover {
    background: #f1f6f4;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   IMAGE
========================================================= */

.location-visual {
    position: relative;
    min-width: 0;
}

.location-image-wrap {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 20px;
    background: #e9efed;
    box-shadow: 0 25px 70px rgba(38, 57, 54, 0.14);
}

.location-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(38, 57, 54, 0) 42%,
        rgba(38, 57, 54, 0.65) 100%
    );
    pointer-events: none;
}

.location-image-wrap img {
    width: 100%;
    height: 540px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.location-image-badge {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(38, 57, 54, 0.92);
    backdrop-filter: blur(10px);
}

.location-image-badge > i {
    color: #d3ad62;
    font-size: 20px;
}

.location-image-badge strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.location-image-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}


/* =========================================================
   MAP SECTION
========================================================= */

.location-map-section {
    padding: 100px 0;
    background: #f5f8f7;
}

.location-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.location-section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #697572;
    font-size: 15px;
    line-height: 1.8;
}

.location-map-card {
    overflow: hidden;
    border: 1px solid #dce5e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(38, 57, 54, 0.09);
}

.location-map-frame {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #e5ece9;
}

.location-map-frame iframe {
    width: 100% !important;
    height: 520px !important;
    display: block;
    border: 0 !important;
}

.map-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 28px;
}

.map-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
}

.map-info-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf3f1;
    color: #263936;
}

.map-info > div:last-child {
    min-width: 0;
}

.map-info span {
    display: block;
    margin-bottom: 5px;
    color: #7b8682;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.map-info strong {
    display: block;
    max-width: 720px;
    color: #263936;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

.map-direction-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 7px;
    background: #263936;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.map-direction-btn:hover {
    background: #1d2d2a;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   TRAVEL
========================================================= */

.location-travel {
    padding: 100px 0;
    background: #ffffff;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.travel-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    min-height: 220px;
    padding: 28px;
    border: 1px solid #dce5e2;
    border-radius: 15px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.travel-card:hover {
    border-color: #aebfba;
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(38, 57, 54, 0.09);
}

.travel-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf3f1;
    color: #263936;
    font-size: 17px;
}

.travel-card h3 {
    margin: 0 0 9px;
    color: #263936;
    font-size: 18px;
    font-weight: 700;
}

.travel-card p {
    margin: 0 0 12px;
    color: #697572;
    font-size: 13px;
    line-height: 1.75;
}

.travel-card a {
    color: #263936;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.travel-card a:hover {
    color: #667d77;
}


/* =========================================================
   EXPLORE SRISAILAM
========================================================= */

.location-nearby {
    padding: 100px 0;
    background: #f5f8f7;
}

.location-nearby-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.nearby-visual {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            #263936,
            #314945
        );
    overflow: hidden;
}

.nearby-visual::before,
.nearby-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.nearby-visual::before {
    width: 300px;
    height: 300px;
}

.nearby-visual::after {
    width: 430px;
    height: 430px;
}

.nearby-circle {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.nearby-circle i {
    margin-bottom: 15px;
    color: #d3ad62;
    font-size: 42px;
}

.nearby-circle span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nearby-content {
    min-width: 0;
}

.nearby-content > p {
    margin: 0 0 18px;
    color: #697572;
    font-size: 15px;
    line-height: 1.85;
}

.nearby-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 21px;
    border-radius: 7px;
    background: #263936;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.nearby-map-link:hover {
    background: #1d2d2a;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.location-final {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        url("../assets/images/hotel.jfif")
        center center / cover no-repeat;
}

.location-final-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 57, 54, 0.96),
            rgba(38, 57, 54, 0.82)
        );
}

.location-final-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
}

.location-final-content > span {
    display: block;
    margin-bottom: 15px;
    color: #d3ad62;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.location-final-content h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.15;
    font-weight: 500;
}

.location-final-content h2 strong {
    color: #d3ad62;
    font-weight: 700;
}

.location-final-content p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.location-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.location-final-buttons a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.location-final-primary {
    background: #ffffff;
    color: #263936;
}

.location-final-primary:hover {
    background: #eaf0ee;
    color: #263936;
    transform: translateY(-2px);
}

.location-final-call {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.location-final-call:hover {
    background: #ffffff;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .location-page .container {
        width: min(100% - 32px, 760px);
    }

    .location-hero {
        min-height: 470px;
    }

    .location-hero-content {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .location-intro,
    .location-map-section,
    .location-travel,
    .location-nearby {
        padding: 75px 0;
    }

    .location-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .location-image-wrap,
    .location-image-wrap img {
        height: 500px;
        min-height: 500px;
    }

    .travel-grid {
        grid-template-columns: 1fr;
    }

    .travel-card {
        min-height: auto;
    }

    .location-nearby-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .nearby-visual {
        min-height: 400px;
    }

    .map-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-direction-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .location-page .container {
        width: calc(100% - 28px);
    }

    .location-hero {
        min-height: 500px;
    }

    .location-hero-bg {
        background:
            linear-gradient(
                180deg,
                rgba(38, 57, 54, 0.84),
                rgba(38, 57, 54, 0.96)
            ),
            url("../assets/images/hotel.jfif") center / cover no-repeat;
    }

    .location-hero-content {
        padding-top: 75px;
        padding-bottom: 70px;
    }

    .location-kicker {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .location-hero h1 {
        margin-bottom: 17px;
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }

    .location-hero p {
        font-size: 14px;
        line-height: 1.75;
    }

    .location-breadcrumb {
        margin-top: 23px;
        font-size: 12px;
    }

    .location-intro,
    .location-map-section,
    .location-travel,
    .location-nearby {
        padding: 65px 0;
    }

    .location-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .location-copy h2,
    .location-section-heading h2,
    .nearby-content h2 {
        margin-bottom: 17px;
        font-size: 32px;
        line-height: 1.18;
    }

    .location-copy > p,
    .location-section-heading p,
    .nearby-content > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .location-address-card {
        gap: 13px;
        padding: 17px;
        border-radius: 12px;
    }

    .location-card-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .location-address-card strong {
        font-size: 12px;
        line-height: 1.65;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions a {
        width: 100%;
    }

    .location-image-wrap {
        min-height: 390px;
        border-radius: 15px;
    }

    .location-image-wrap img {
        height: 390px;
        min-height: 390px;
    }

    .location-image-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 13px;
        gap: 11px;
    }

    .location-image-badge > i {
        font-size: 17px;
    }

    .location-image-badge strong {
        font-size: 12px;
    }

    .location-image-badge span {
        font-size: 10px;
    }

    .location-section-heading {
        margin-bottom: 30px;
    }

    .location-map-card {
        border-radius: 13px;
    }

    .location-map-frame {
        height: 390px;
    }

    .location-map-frame iframe {
        height: 390px !important;
    }

    .map-bottom {
        padding: 18px;
        gap: 20px;
    }

    .map-info {
        gap: 11px;
    }

    .map-info-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .map-info strong {
        font-size: 11px;
        line-height: 1.55;
    }

    .travel-grid {
        gap: 14px;
    }

    .travel-card {
        gap: 14px;
        padding: 20px;
        border-radius: 12px;
    }

    .travel-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .travel-card h3 {
        font-size: 16px;
    }

    .travel-card p {
        font-size: 12px;
    }

    .nearby-visual {
        min-height: 330px;
        border-radius: 16px;
    }

    .nearby-visual::before {
        width: 230px;
        height: 230px;
    }

    .nearby-visual::after {
        width: 330px;
        height: 330px;
    }

    .nearby-circle {
        width: 155px;
        height: 155px;
    }

    .nearby-circle i {
        font-size: 32px;
    }

    .nearby-circle span {
        font-size: 11px;
    }

    .nearby-map-link {
        width: 100%;
        justify-content: center;
    }

    .location-final {
        min-height: 430px;
    }

    .location-final-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .location-final-content > span {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .location-final-content h2 {
        font-size: 34px;
    }

    .location-final-content p {
        font-size: 13px;
    }

    .location-final-buttons {
        flex-direction: column;
    }

    .location-final-buttons a {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .location-page .container {
        width: calc(100% - 22px);
    }

    .location-hero h1 {
        font-size: 35px;
    }

    .location-image-wrap,
    .location-image-wrap img {
        height: 350px;
        min-height: 350px;
    }

    .location-map-frame,
    .location-map-frame iframe {
        height: 350px !important;
    }

    .nearby-visual {
        min-height: 300px;
    }

    .location-final-content h2 {
        font-size: 31px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.location-page a:focus-visible {
    outline: 3px solid rgba(38, 57, 54, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .location-page *,
    .location-page *::before,
    .location-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

```css
/* =========================================================
   MALLIKARJUNA SADAN
   PRIVACY POLICY PAGE
   PRIMARY: #263936
   ACCENT:  #d3ad62
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.privacy-page,
.privacy-page * {
    box-sizing: border-box;
}

.privacy-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #263936;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.privacy-page img {
    max-width: 100%;
    display: block;
}

.privacy-page a {
    text-decoration: none;
}

.privacy-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   PRIVACY HERO
========================================================= */

.privacy-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(38, 57, 54, 0.98),
            rgba(25, 43, 40, 0.94)
        );
}

.privacy-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(211, 173, 98, 0.20);
    border-radius: 50%;
    right: -170px;
    top: -220px;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -170px;
    bottom: -220px;
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 57, 54, 0.98),
            rgba(38, 57, 54, 0.80)
        );
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    padding: 75px 0 70px;
}

.privacy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d3ad62;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.privacy-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #d3ad62;
}

.privacy-hero h1 {
    margin: 0;
    max-width: 700px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.privacy-hero h1 strong {
    color: #d3ad62;
    font-weight: 600;
}

.privacy-hero p {
    max-width: 670px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.9;
}

.privacy-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
    font-size: 13px;
}

.privacy-breadcrumb a {
    color: #ffffff;
    transition: 0.25s ease;
}

.privacy-breadcrumb a:hover {
    color: #d3ad62;
}

.privacy-breadcrumb i {
    color: #d3ad62;
    font-size: 10px;
}

.privacy-breadcrumb span {
    color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   MAIN CONTENT AREA
========================================================= */

.privacy-content-section {
    padding: 90px 0 100px;
    background: #ffffff;
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 65px;
    align-items: start;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.privacy-content {
    min-width: 0;
}

.privacy-intro-box {
    padding-bottom: 42px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e8eeec;
}

.privacy-label {
    display: inline-block;
    color: #263936;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.privacy-intro-box h2 {
    margin: 0 0 17px;
    color: #263936;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.7px;
}

.privacy-intro-box h2 strong {
    color: #263936;
    font-weight: 700;
}

.privacy-intro-box > p {
    max-width: 850px;
    margin: 0;
    color: #66736f;
    font-size: 15px;
    line-height: 1.9;
}

.privacy-date {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 9px 15px;
    background: #f5f8f7;
    border-left: 3px solid #d3ad62;
    color: #52625e;
    font-size: 12px;
    font-weight: 600;
}

.privacy-date i {
    color: #263936;
}


/* =========================================================
   PRIVACY BLOCKS
========================================================= */

.privacy-block {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    padding: 36px 0;
    border-bottom: 1px solid #e8eeec;
}

.privacy-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e2df;
    border-radius: 50%;
    color: #263936;
    background: #f7f9f8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.privacy-block h3 {
    margin: 0 0 13px;
    color: #263936;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.privacy-block p {
    margin: 0 0 14px;
    color: #66736f;
    font-size: 14px;
    line-height: 1.9;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.privacy-block ul {
    margin: 13px 0 17px;
    padding: 0;
    list-style: none;
}

.privacy-block ul li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 10px;
    color: #5e6c68;
    font-size: 14px;
    line-height: 1.75;
}

.privacy-block ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d3ad62;
}

.privacy-block ul li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT BLOCK
========================================================= */

.privacy-contact-block {
    padding-bottom: 40px;
}

.privacy-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 24px;
    padding: 20px;
    background: #f5f8f7;
    border: 1px solid #e1e9e6;
}

.privacy-address-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #263936;
    color: #d3ad62;
    border-radius: 8px;
    font-size: 16px;
}

.privacy-address span {
    display: block;
    margin-bottom: 5px;
    color: #798580;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.privacy-address strong {
    display: block;
    color: #263936;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
}

.privacy-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 17px;
}

.privacy-whatsapp,
.privacy-call {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.privacy-whatsapp {
    background: #263936;
    color: #ffffff;
}

.privacy-whatsapp:hover {
    background: #1a2926;
    color: #ffffff;
    transform: translateY(-2px);
}

.privacy-call {
    border: 1px solid #d8e2df;
    background: #ffffff;
    color: #263936;
}

.privacy-call:hover {
    border-color: #263936;
    background: #f5f8f7;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   CLOSING BOX
========================================================= */

.privacy-closing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    padding: 21px 23px;
    background: #263936;
}

.privacy-closing i {
    flex: 0 0 auto;
    color: #d3ad62;
    font-size: 20px;
}

.privacy-closing p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SIDEBAR
========================================================= */

.privacy-sidebar {
    position: sticky;
    top: 30px;
}

.privacy-sidebar-card {
    position: relative;
    overflow: hidden;
    padding: 32px 27px;
    background: #263936;
    border-radius: 8px;
}

.privacy-sidebar-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(211, 173, 98, 0.18);
    border-radius: 50%;
    top: -100px;
    right: -90px;
}

.privacy-sidebar-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    bottom: -70px;
    left: -60px;
}

.sidebar-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    background: rgba(211, 173, 98, 0.12);
    border: 1px solid rgba(211, 173, 98, 0.30);
    border-radius: 8px;
    color: #d3ad62;
    font-size: 19px;
}

.privacy-sidebar-card > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    color: #d3ad62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.privacy-sidebar-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

.privacy-sidebar-card h3 strong {
    display: block;
    color: #d3ad62;
    font-weight: 700;
}

.privacy-sidebar-card p {
    position: relative;
    z-index: 2;
    margin: 15px 0 23px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.8;
}

.privacy-sidebar-card > a {
    position: relative;
    z-index: 2;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    background: #ffffff;
    border-radius: 4px;
    color: #263936;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.privacy-sidebar-card > a:hover {
    background: #d3ad62;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   SIDEBAR QUICK LINKS
========================================================= */

.privacy-sidebar-links {
    margin-top: 22px;
    padding: 25px 25px 19px;
    background: #f5f8f7;
    border: 1px solid #e3ebe8;
    border-radius: 8px;
}

.privacy-sidebar-links > span {
    display: block;
    margin-bottom: 13px;
    color: #788580;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.privacy-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px solid #dfe8e5;
    color: #53625e;
    font-size: 12px;
    font-weight: 600;
    transition: 0.25s ease;
}

.privacy-sidebar-links a:last-child {
    border-bottom: 0;
}

.privacy-sidebar-links a i {
    width: 17px;
    color: #263936;
    font-size: 12px;
}

.privacy-sidebar-links a:hover {
    padding-left: 5px;
    color: #263936;
}

.privacy-sidebar-links a:hover i {
    color: #d3ad62;
}


/* =========================================================
   FINAL CTA
========================================================= */

.privacy-final {
    position: relative;
    overflow: hidden;
    background: #263936;
}

.privacy-final::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(211, 173, 98, 0.16);
    border-radius: 50%;
    right: -170px;
    top: -270px;
}

.privacy-final::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    left: -160px;
    bottom: -220px;
}

.privacy-final-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 57, 54, 0.97),
            rgba(38, 57, 54, 0.88)
        );
}

.privacy-final-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: center;
}

.privacy-final-content > span {
    display: block;
    margin-bottom: 13px;
    color: #d3ad62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.privacy-final-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(29px, 4vw, 45px);
    line-height: 1.2;
    font-weight: 500;
}

.privacy-final-content h2 strong {
    color: #d3ad62;
    font-weight: 700;
}

.privacy-final-content p {
    max-width: 590px;
    margin: 17px auto 27px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.privacy-final-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    background: #ffffff;
    color: #263936;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.privacy-final-btn:hover {
    background: #d3ad62;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .privacy-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 45px;
    }

    .privacy-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .privacy-sidebar-links {
        margin-top: 0;
    }

    .privacy-content-section {
        padding: 70px 0 80px;
    }

    .privacy-hero {
        min-height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .privacy-page .container {
        width: min(100% - 30px, 1180px);
    }

    .privacy-hero {
        min-height: 350px;
    }

    .privacy-hero-content {
        padding: 65px 0 60px;
    }

    .privacy-kicker {
        font-size: 9px;
        letter-spacing: 1.4px;
        margin-bottom: 13px;
    }

    .privacy-kicker::before {
        width: 24px;
    }

    .privacy-hero h1 {
        font-size: 39px;
        letter-spacing: -0.8px;
    }

    .privacy-hero p {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.8;
    }

    .privacy-breadcrumb {
        margin-top: 22px;
    }

    .privacy-content-section {
        padding: 55px 0 65px;
    }

    .privacy-intro-box {
        padding-bottom: 32px;
    }

    .privacy-intro-box h2 {
        font-size: 29px;
    }

    .privacy-intro-box > p {
        font-size: 13px;
        line-height: 1.85;
    }

    .privacy-date {
        font-size: 10px;
    }

    .privacy-block {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 28px 0;
    }

    .privacy-number {
        width: 38px;
        height: 38px;
        font-size: 9px;
    }

    .privacy-block h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .privacy-block p,
    .privacy-block ul li {
        font-size: 13px;
        line-height: 1.8;
    }

    .privacy-address {
        padding: 16px;
        gap: 12px;
    }

    .privacy-address-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .privacy-address strong {
        font-size: 11px;
        line-height: 1.65;
    }

    .privacy-contact-actions {
        flex-direction: column;
    }

    .privacy-whatsapp,
    .privacy-call {
        width: 100%;
    }

    .privacy-closing {
        align-items: flex-start;
        padding: 18px;
    }

    .privacy-closing p {
        font-size: 11px;
    }

    .privacy-sidebar {
        display: block;
    }

    .privacy-sidebar-links {
        margin-top: 18px;
    }

    .privacy-final-content {
        padding: 65px 0;
    }

    .privacy-final-content > span {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .privacy-final-content h2 {
        font-size: 29px;
    }

    .privacy-final-content p {
        font-size: 12px;
        margin: 14px auto 23px;
    }

    .privacy-final-btn {
        width: 100%;
        max-width: 260px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .privacy-page .container {
        width: calc(100% - 24px);
    }

    .privacy-hero h1 {
        font-size: 34px;
    }

    .privacy-hero p {
        font-size: 12px;
    }

    .privacy-block {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .privacy-number {
        width: 35px;
        height: 35px;
    }

    .privacy-intro-box h2 {
        font-size: 26px;
    }

    .privacy-sidebar-card {
        padding: 27px 22px;
    }

    .privacy-sidebar-links {
        padding: 22px 20px 16px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.privacy-page a:focus-visible {
    outline: 2px solid #d3ad62;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .privacy-page *,
    .privacy-page *::before,
    .privacy-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}
```css
/* =========================================================
   MALLIKARJUNA SADAN
   TERMS & CONDITIONS PAGE
   PRIMARY: #263936
   ACCENT:  #d3ad62
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.terms-page,
.terms-page * {
    box-sizing: border-box;
}

.terms-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #263936;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.terms-page img {
    max-width: 100%;
    display: block;
}

.terms-page a {
    text-decoration: none;
}

.terms-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   TERMS HERO
========================================================= */

.terms-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(38, 57, 54, 0.98),
            rgba(25, 43, 40, 0.94)
        );
}

.terms-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(211, 173, 98, 0.20);
    border-radius: 50%;
    right: -170px;
    top: -220px;
}

.terms-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -170px;
    bottom: -220px;
}

.terms-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 57, 54, 0.98),
            rgba(38, 57, 54, 0.80)
        );
}

.terms-hero-content {
    position: relative;
    z-index: 2;
    padding: 75px 0 70px;
}

.terms-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d3ad62;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.terms-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #d3ad62;
}

.terms-hero h1 {
    margin: 0;
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.terms-hero h1 strong {
    color: #d3ad62;
    font-weight: 600;
}

.terms-hero p {
    max-width: 670px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.9;
}

.terms-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
    font-size: 13px;
}

.terms-breadcrumb a {
    color: #ffffff;
    transition: 0.25s ease;
}

.terms-breadcrumb a:hover {
    color: #d3ad62;
}

.terms-breadcrumb i {
    color: #d3ad62;
    font-size: 10px;
}

.terms-breadcrumb span {
    color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   CONTENT AREA
========================================================= */

.terms-content-section {
    padding: 90px 0 100px;
    background: #ffffff;
}

.terms-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 65px;
    align-items: start;
}

.terms-content {
    min-width: 0;
}


/* =========================================================
   INTRO
========================================================= */

.terms-intro-box {
    padding-bottom: 42px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e8eeec;
}

.terms-label {
    display: inline-block;
    color: #263936;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.terms-intro-box h2 {
    margin: 0 0 17px;
    color: #263936;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.7px;
}

.terms-intro-box h2 strong {
    color: #263936;
    font-weight: 700;
}

.terms-intro-box > p {
    max-width: 850px;
    margin: 0;
    color: #66736f;
    font-size: 15px;
    line-height: 1.9;
}

.terms-date {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 9px 15px;
    background: #f5f8f7;
    border-left: 3px solid #d3ad62;
    color: #52625e;
    font-size: 12px;
    font-weight: 600;
}

.terms-date i {
    color: #263936;
}


/* =========================================================
   TERMS BLOCKS
========================================================= */

.terms-block {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    padding: 36px 0;
    border-bottom: 1px solid #e8eeec;
}

.terms-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e2df;
    border-radius: 50%;
    background: #f7f9f8;
    color: #263936;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.terms-block h3 {
    margin: 0 0 13px;
    color: #263936;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.terms-block p {
    margin: 0 0 14px;
    color: #66736f;
    font-size: 14px;
    line-height: 1.9;
}

.terms-block p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.terms-block ul {
    margin: 13px 0 17px;
    padding: 0;
    list-style: none;
}

.terms-block ul li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 10px;
    color: #5e6c68;
    font-size: 14px;
    line-height: 1.75;
}

.terms-block ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d3ad62;
}

.terms-block ul li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   INLINE LINK
========================================================= */

.terms-inline-link {
    color: #263936;
    font-weight: 700;
    border-bottom: 1px solid #d3ad62;
    transition: 0.25s ease;
}

.terms-inline-link:hover {
    color: #9c792e;
}


/* =========================================================
   CONTACT BLOCK
========================================================= */

.terms-contact-block {
    padding-bottom: 40px;
}

.terms-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 24px;
    padding: 20px;
    background: #f5f8f7;
    border: 1px solid #e1e9e6;
}

.terms-address-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #263936;
    color: #d3ad62;
    border-radius: 8px;
    font-size: 16px;
}

.terms-address span {
    display: block;
    margin-bottom: 5px;
    color: #798580;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.terms-address strong {
    display: block;
    color: #263936;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
}

.terms-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 17px;
}

.terms-whatsapp,
.terms-call {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.terms-whatsapp {
    background: #263936;
    color: #ffffff;
}

.terms-whatsapp:hover {
    background: #1a2926;
    color: #ffffff;
    transform: translateY(-2px);
}

.terms-call {
    border: 1px solid #d8e2df;
    background: #ffffff;
    color: #263936;
}

.terms-call:hover {
    border-color: #263936;
    background: #f5f8f7;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   CLOSING
========================================================= */

.terms-closing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    padding: 21px 23px;
    background: #263936;
}

.terms-closing i {
    flex: 0 0 auto;
    color: #d3ad62;
    font-size: 20px;
}

.terms-closing p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SIDEBAR
========================================================= */

.terms-sidebar {
    position: sticky;
    top: 30px;
}

.terms-sidebar-card {
    position: relative;
    overflow: hidden;
    padding: 32px 27px;
    background: #263936;
    border-radius: 8px;
}

.terms-sidebar-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(211, 173, 98, 0.18);
    border-radius: 50%;
    top: -100px;
    right: -90px;
}

.terms-sidebar-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    bottom: -70px;
    left: -60px;
}

.sidebar-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    background: rgba(211, 173, 98, 0.12);
    border: 1px solid rgba(211, 173, 98, 0.30);
    border-radius: 8px;
    color: #d3ad62;
    font-size: 19px;
}

.terms-sidebar-card > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    color: #d3ad62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.terms-sidebar-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

.terms-sidebar-card h3 strong {
    display: block;
    color: #d3ad62;
    font-weight: 700;
}

.terms-sidebar-card p {
    position: relative;
    z-index: 2;
    margin: 15px 0 23px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.8;
}

.terms-sidebar-card > a {
    position: relative;
    z-index: 2;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    background: #ffffff;
    border-radius: 4px;
    color: #263936;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.terms-sidebar-card > a:hover {
    background: #d3ad62;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   SIDEBAR QUICK LINKS
========================================================= */

.terms-sidebar-links {
    margin-top: 22px;
    padding: 25px 25px 19px;
    background: #f5f8f7;
    border: 1px solid #e3ebe8;
    border-radius: 8px;
}

.terms-sidebar-links > span {
    display: block;
    margin-bottom: 13px;
    color: #788580;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.terms-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px solid #dfe8e5;
    color: #53625e;
    font-size: 12px;
    font-weight: 600;
    transition: 0.25s ease;
}

.terms-sidebar-links a:last-child {
    border-bottom: 0;
}

.terms-sidebar-links a i {
    width: 17px;
    color: #263936;
    font-size: 12px;
}

.terms-sidebar-links a:hover {
    padding-left: 5px;
    color: #263936;
}

.terms-sidebar-links a:hover i {
    color: #d3ad62;
}


/* =========================================================
   FINAL CTA
========================================================= */

.terms-final {
    position: relative;
    overflow: hidden;
    background: #263936;
}

.terms-final::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(211, 173, 98, 0.16);
    border-radius: 50%;
    right: -170px;
    top: -270px;
}

.terms-final::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    left: -160px;
    bottom: -220px;
}

.terms-final-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(38, 57, 54, 0.97),
            rgba(38, 57, 54, 0.88)
        );
}

.terms-final-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: center;
}

.terms-final-content > span {
    display: block;
    margin-bottom: 13px;
    color: #d3ad62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.terms-final-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(29px, 4vw, 45px);
    line-height: 1.2;
    font-weight: 500;
}

.terms-final-content h2 strong {
    color: #d3ad62;
    font-weight: 700;
}

.terms-final-content p {
    max-width: 590px;
    margin: 17px auto 27px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.terms-final-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    background: #ffffff;
    color: #263936;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.terms-final-btn:hover {
    background: #d3ad62;
    color: #263936;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .terms-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 45px;
    }

    .terms-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .terms-sidebar-links {
        margin-top: 0;
    }

    .terms-content-section {
        padding: 70px 0 80px;
    }

    .terms-hero {
        min-height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .terms-page .container {
        width: min(100% - 30px, 1180px);
    }

    .terms-hero {
        min-height: 350px;
    }

    .terms-hero-content {
        padding: 65px 0 60px;
    }

    .terms-kicker {
        font-size: 9px;
        letter-spacing: 1.4px;
        margin-bottom: 13px;
    }

    .terms-kicker::before {
        width: 24px;
    }

    .terms-hero h1 {
        font-size: 39px;
        letter-spacing: -0.8px;
    }

    .terms-hero p {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.8;
    }

    .terms-breadcrumb {
        margin-top: 22px;
    }

    .terms-content-section {
        padding: 55px 0 65px;
    }

    .terms-intro-box {
        padding-bottom: 32px;
    }

    .terms-intro-box h2 {
        font-size: 29px;
    }

    .terms-intro-box > p {
        font-size: 13px;
        line-height: 1.85;
    }

    .terms-date {
        font-size: 10px;
    }

    .terms-block {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 28px 0;
    }

    .terms-number {
        width: 38px;
        height: 38px;
        font-size: 9px;
    }

    .terms-block h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .terms-block p,
    .terms-block ul li {
        font-size: 13px;
        line-height: 1.8;
    }

    .terms-address {
        padding: 16px;
        gap: 12px;
    }

    .terms-address-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .terms-address strong {
        font-size: 11px;
        line-height: 1.65;
    }

    .terms-contact-actions {
        flex-direction: column;
    }

    .terms-whatsapp,
    .terms-call {
        width: 100%;
    }

    .terms-closing {
        align-items: flex-start;
        padding: 18px;
    }

    .terms-closing p {
        font-size: 11px;
    }

    .terms-sidebar {
        display: block;
    }

    .terms-sidebar-links {
        margin-top: 18px;
    }

    .terms-final-content {
        padding: 65px 0;
    }

    .terms-final-content > span {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .terms-final-content h2 {
        font-size: 29px;
    }

    .terms-final-content p {
        font-size: 12px;
        margin: 14px auto 23px;
    }

    .terms-final-btn {
        width: 100%;
        max-width: 260px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .terms-page .container {
        width: calc(100% - 24px);
    }

    .terms-hero h1 {
        font-size: 34px;
    }

    .terms-hero p {
        font-size: 12px;
    }

    .terms-block {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .terms-number {
        width: 35px;
        height: 35px;
    }

    .terms-intro-box h2 {
        font-size: 26px;
    }

    .terms-sidebar-card {
        padding: 27px 22px;
    }

    .terms-sidebar-links {
        padding: 22px 20px 16px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.terms-page a:focus-visible {
    outline: 2px solid #d3ad62;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .terms-page *,
    .terms-page *::before,
    .terms-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}



