:root {
    --main-color: #6b16e8;
    --accent-color: #ff4b26;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f7f8fa;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --heading-font: "Rajdhani", Arial, sans-serif;
    --body-font: "Rubik", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--ink);
    background: #f4f5f7;
}

a {
    text-decoration: none;
}

.page-shell {
    width: min(100% - 64px, 1800px);
    margin-inline: auto;
}

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 30;
}

.navbar {
    min-height: 96px;
    padding-block: 16px;
}

.navbar .page-shell {
    position: relative;
}

.navbar-collapse {
    justify-content: space-between;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    min-width: 230px;
}

@media (min-width: 992px) {
    .brand-lockup {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 3;
        justify-content: center;
        min-height: 92px;
        padding: 0 34px 22px;
        border-radius: 0 0 32px 32px;
        background: var(--white);
        transform: translate(-50%, -38%);
    }
}

.brand-lockup:hover {
    color: var(--ink);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 800;
    font-family: var(--heading-font);
    background: linear-gradient(135deg, #7a20ff, #4f08d9);
}

.brand-lockup strong,
.brand-lockup small {
    display: block;
    line-height: 1.05;
    font-family: var(--heading-font);
}

.brand-lockup small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 14px;
}

.navbar .nav-link {
    color: #0f172a;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    padding-inline: 8px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--main-color);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 430px;
}

.icon-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
}

.badge-dot {
    position: absolute;
    top: -5px;
    right: -2px;
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding-inline: 5px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: var(--accent-color);
}

.call-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}

.call-link small,
.call-link strong {
    display: block;
    font-family: var(--heading-font);
    line-height: 1.1;
}

.call-link small {
    color: var(--muted);
    font-weight: 600;
}

.call-link strong {
    font-size: 17px;
}

.login-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 800;
    background: #5b13df;
}

.hero-section {
    padding-bottom: 92px;
    background: var(--white);
}

.hero-media {
    position: relative;
    min-height: 680px;
    border-radius: 44px;
    overflow: hidden;
    background-image: url("https://images.oyoroomscdn.com/uploads/hotel_image/256723/large/buwfjdkrruld.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 4, 31, 0.62), rgba(16, 4, 31, 0.14) 48%, rgba(16, 4, 31, 0.58)),
        linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.52));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1060px;
    margin: auto;
    padding: 80px 24px 170px;
    color: var(--white);
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-copy {
    max-width: 650px;
    margin: 22px auto 0;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.booking-panel {
    position: relative;
    z-index: 2;
    width: min(100% - 160px, 1370px);
    margin: 20px auto;
    padding: 0 44px 32px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    border-bottom: 1px solid #d9dde4;
}

.booking-tabs.single-tab {
    justify-content: center;
}

.booking-tab {
    min-width: 150px;
    padding: 24px 16px 18px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 800;
    background: transparent;
}

.booking-tab i {
    margin-right: 7px;
}

.booking-tab.active {
    color: var(--ink);
    border-color: #6c2df3;
}

.single-tab .booking-tab {
    min-width: 220px;
    cursor: default;
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 244px;
    gap: 16px;
    padding-top: 24px;
}

.booking-field {
    position: relative;
    display: block;
}

.booking-field span {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
}

.booking-field input,
.booking-field select {
    width: 100%;
    height: 52px;
    padding: 0 46px 0 18px;
    border: 0;
    border-radius: 8px;
    color: #4b5563;
    background: #f1f1f3;
    outline: none;
    appearance: none;
}

.booking-field i {
    position: absolute;
    right: 16px;
    bottom: 17px;
    color: #6b7280;
    pointer-events: none;
}

.search-button {
    align-self: end;
    height: 52px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 800;
    background: var(--accent-color);
}

.search-button i {
    margin-left: 8px;
}

.section-pad {
    padding: 84px 0;
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading span,
.contact-card span {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-heading h2,
.contact-card h2 {
    margin: 8px 0 0;
    font-family: var(--heading-font);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #10041f;
}

.rooms-section {
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.rooms-section::before {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -120px;
    width: min(900px, 58vw);
    aspect-ratio: 2 / 1;
    background: url("assets/undvallicaves.png") center / contain no-repeat;
    opacity: 0.09;
    filter: grayscale(1);
    pointer-events: none;
}

.rooms-section::after {
    content: "";
    position: absolute;
    left: -240px;
    top: 90px;
    width: min(760px, 48vw);
    aspect-ratio: 2 / 1;
    background: url("assets/undvallicaves.png") center / contain no-repeat;
    opacity: 0.055;
    filter: grayscale(1);
    transform: scaleX(-1);
    pointer-events: none;
}

.rooms-section .container {
    position: relative;
    z-index: 1;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.rooms-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.13);
}

.room-image-wrap {
    position: relative;
    min-height: 194px;
    overflow: hidden;
    border-radius: 30px 30px 46% 46% / 30px 30px 18% 18%;
}

.room-image-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.feature-badge {
    position: absolute;
    top: 28px;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 18px 0 14px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 800;
    background: #ff9300;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.favorite-button {
    position: absolute;
    top: 22px;
    right: 24px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: #4b5563;
    font-size: 21px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.favorite-button.active {
    color: #ff4b26;
}

.price-pill {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 35px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, #6817ec, #5200cf);
    transform: translateX(-50%);
    white-space: nowrap;
}

.price-pill del {
    font-size: 13px;
    font-weight: 800;
    opacity: 0.9;
}

.price-pill strong {
    font-size: 18px;
    line-height: 1;
}

.room-card-body {
    padding: 36px 28px 30px;
}

.room-card h3 {
    min-height: 58px;
    margin: 0 0 12px;
    color: #030712;
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.16;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    color: #ff9300;
    font-size: 14px;
}

.rating-row .muted-star {
    color: #9ca3af;
}

.rating-row span {
    margin-left: 4px;
    color: #030712;
    font-weight: 500;
}

.room-card p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    color: #030712;
    font-size: 16px;
    line-height: 1.35;
}

.room-card p i {
    width: 16px;
    color: #111827;
}

.gallery-section,
.contact-section {
    background: var(--soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.reservation-form {
    max-width: 820px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-control {
    font-family: var(--body-font);
    border-color: #e6e8ee;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 22, 232, 0.12);
}

/* Primary button overrides for modern look (rooms/about pages) */
.primary-button {
    border-radius: 8px;
    background: var(--main-color);
}

.primary-button.btn-sm {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 15px;
    border-radius: 6px;
}

.contact-card {
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.contact-card p {
    display: flex;
    gap: 12px;
    margin: 18px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.contact-card i {
    width: 20px;
    color: var(--main-color);
}

iframe {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    font-size: 29px;
    background: #25d366;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    color: var(--white);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #f7f4ff;
    background: #10041f;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    bottom: -62px;
    width: 470px;
    aspect-ratio: 2 / 1;
    background: url("assets/undvallicaves.png") center / contain no-repeat;
    opacity: 0.08;
    filter: grayscale(1) brightness(2);
    pointer-events: none;
}

.site-footer::before {
    left: -180px;
    transform: scaleX(-1);
}

.site-footer::after {
    right: -160px;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 78px 0 84px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(270px, 1.1fr) 0.7fr 1.1fr 0.8fr;
    gap: 72px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.footer-logo:hover {
    color: var(--white);
}

.footer-logo .brand-mark {
    background: linear-gradient(135deg, #7a20ff, #4f08d9);
}

.footer-logo strong,
.footer-logo small {
    display: block;
    font-family: var(--heading-font);
    line-height: 1.05;
}

.footer-logo strong {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0;
}

.footer-logo small {
    margin-top: 4px;
    color: #bdb5ce;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.footer-brand p {
    max-width: 350px;
    margin: 28px 0 24px;
    color: #cfc7dd;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.62;
}

.newsletter-form {
    display: flex;
    width: min(100%, 322px);
    height: 52px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--white);
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 20px;
    color: var(--ink);
    font-size: 17px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #1f2937;
}

.newsletter-form button {
    width: 62px;
    border: 0;
    color: var(--white);
    font-size: 20px;
    background: #6b16e8;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: #2d3143;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: #6b16e8;
    transform: translateY(-3px);
}

.footer-column h3 {
    margin: 0 0 32px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0;
}

.footer-column ul {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a,
.footer-column li {
    color: #d1c8e1;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.footer-column a {
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-info li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    align-items: start;
}

.footer-info i {
    margin-top: 4px;
    color: var(--white);
    font-size: 21px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 52px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #9690aa;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .header-actions {
        min-width: 0;
    }

    .booking-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-button {
        grid-column: span 2;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 52px 44px;
    }
}

@media (max-width: 991px) {
    .page-shell {
        width: min(100% - 32px, 1800px);
    }

    .navbar {
        min-height: auto;
    }

    .brand-lockup {
        position: static;
        min-width: 0;
        padding: 0;
        transform: none;
    }

    .navbar-collapse {
        padding-top: 18px;
    }

    .header-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 18px;
    }

    .hero-media {
        min-height: 580px;
        border-radius: 28px;
    }

    .booking-panel {
        width: calc(100% - 24px);
        padding: 0 18px 22px;
    }

    .booking-tabs {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .booking-tab {
        min-width: 130px;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-bottom: 60px;
    }

    .hero-media {
        min-height: 520px;
        border-radius: 22px;
    }

    .hero-content {
        padding: 60px 20px 150px;
    }

    .booking-panel {
        margin-top: -95px;
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

    .search-button {
        grid-column: auto;
    }

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

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

    .rooms-section::before {
        right: -220px;
        width: 820px;
        opacity: 0.07;
    }

    .rooms-section::after {
        display: none;
    }

    .section-pad {
        padding: 62px 0;
    }

    .reservation-form,
    .contact-card {
        padding: 24px;
    }

    .footer-main {
        padding: 58px 0 62px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .footer-column ul {
        gap: 14px;
    }

    .site-footer::before,
    .site-footer::after {
        width: 360px;
        opacity: 0.06;
    }

    .footer-bottom {
        padding: 34px 0;
    }
}

@media (max-width: 480px) {
    .page-shell {
        width: min(100% - 22px, 1800px);
    }

    .brand-lockup strong {
        font-size: 15px;
    }

    .brand-lockup small {
        font-size: 10px;
    }

    .hero-media {
        min-height: 470px;
    }

    .booking-tab {
        min-width: 116px;
        padding-inline: 10px;
        font-size: 14px;
    }

    .room-card h3 {
        min-height: auto;
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* New styles for multi-page site and reference-inspired sections */
.section-sub {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-section {
    background: #fafafa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.why-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #6b16e8, #4f08d9);
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-card h4 {
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #10041f;
}

.why-card p {
    color: #4b5563;
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0;
}

.contact-teaser .contact-card {
    padding: 32px;
}

.contact-teaser .primary-button {
    display: inline-flex;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .preview-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .rooms-full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .preview-grid,
    .preview-gallery {
        grid-template-columns: 1fr;
    }
    .rooms-full {
        grid-template-columns: 1fr;
    }
}

/* About page additional styles */
.page-hero {
    background: var(--white);
    padding-bottom: 40px;
}

.about-hero {
    min-height: 420px;
    border-radius: 30px;
    background-image: url('https://images.oyoroomscdn.com/uploads/hotel_image/256723/large/buwfjdkrruld.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card {
    background: var(--white);
    padding: 30px 26px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    height: 100%;
    text-align: center;
}

.feature-card i {
    color: #6b16e8;
}

.feature-card h4 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #10041f;
}

.feature-card p {
    color: #4b5563;
    font-size: 15.5px;
    margin: 0;
    line-height: 1.6;
}

.stats-section .stat {
    padding: 10px 0;
}

.stats-section .stat i {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #6b16e8;
}

.stats-section .stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.stats-section .stat-label {
    font-size: 15px;
    opacity: 0.85;
    margin-top: 4px;
}

.stats-section .stat-num {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.stats-section .stat-label {
    margin-top: 6px;
    font-size: 16px;
    opacity: 0.85;
    font-weight: 500;
}

/* Contact page styles */
.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--heading-font);
    font-weight: 800;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.info-item i {
    font-size: 21px;
    color: var(--main-color);
    width: 26px;
    margin-top: 2px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    letter-spacing: .5px;
    color: var(--muted);
    text-transform: uppercase;
}

.info-item a {
    color: var(--ink);
    font-weight: 600;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 34px 34px 28px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.contact-form-card h3 {
    font-family: var(--heading-font);
    font-weight: 800;
}

/* Rooms page extras */
.room-amenities {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    color: #374151;
    font-size: 13.5px;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-amenities i {
    width: 15px;
    color: #6b16e8;
}

.btn-outline-secondary.active-filter,
.active-filter {
    background: #6b16e8 !important;
    color: #fff !important;
    border-color: #6b16e8 !important;
}
