body {
    --brand-blue: #36aee2;
    --brand-green: #b7d600;
    --brand-dark: #1d2a31;
    --brand-muted: #5d6870;
    --brand-soft: #f4f9fb;

    color: #202124;
    font-family: Arial, sans-serif;
}

.btn-danger {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.btn-danger:hover,
.btn-danger:focus {
    background: #249dd1;
    border-color: #249dd1;
    color: #fff;
}

.btn-dark {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-outline-dark {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.site-header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(29, 42, 49, .18);
}

.header-main {
    min-height: 74px;
}

.header-main__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 74px;
}

.navbar-brand {
    align-items: center;
    display: inline-flex;
    padding: 0;
}

.site-logo {
    height: 66px;
    width: auto;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 18px;
}

.utility-link,
.brand-link,
.join-link,
.header-subnav a {
    color: #202124;
    font-size: .82rem;
    text-decoration: none;
}

.utility-link {
    align-items: center;
    display: inline-flex;
}

.language-menu__toggle {
    background: transparent;
    border: 0;
    color: #202124;
    font-size: .9rem;
    padding: 8px 4px;
}

.language-menu__toggle:hover,
.language-menu__toggle:focus {
    color: var(--brand-blue);
}

.language-menu .dropdown-menu {
    border: 1px solid rgba(29, 42, 49, .12);
    box-shadow: 0 12px 30px rgba(29, 42, 49, .14);
    min-width: 180px;
    padding: 7px;
}

.language-menu .dropdown-item {
    border-radius: 5px;
    font-size: .9rem;
    padding: 9px 11px;
}

.language-menu .dropdown-item.active,
.language-menu .dropdown-item:active {
    background: var(--brand-blue);
    color: #fff;
}

.language-menu__code {
    display: none;
}

.utility-link[aria-label="Help"] {
    border: 1px solid #202124;
    border-radius: 50%;
    height: 16px;
    justify-content: center;
    line-height: 1;
    width: 16px;
}

.brand-link {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.join-link {
    border: 1px solid #202124;
    border-radius: 999px;
    padding: 9px 18px;
}

.join-link:hover,
.header-subnav a:hover,
.utility-link:hover,
.brand-link:hover {
    color: #168fc1;
}

.header-actions .join-link {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    border-radius: .375rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    padding: .375rem .75rem;
}

.header-actions .join-link:hover,
.header-actions .join-link:focus {
    background: #fff;
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.header-subnav {
    min-height: 44px;
}

.header-subnav .container {
    align-items: center;
    display: flex;
    gap: 26px;
    min-height: 44px;
}

.hero {
    align-items: center;
    background:
        linear-gradient(120deg, rgba(29, 42, 49, .88), rgba(54, 174, 226, .42)),
        url("../assets/images/praja-hotel-building-front-hero.jpg") center/cover;
    color: #fff;
    display: flex;
    min-height: 88vh;
    padding-top: 118px;
    position: relative;
}

.hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .08));
    inset: 0;
    position: absolute;
}

.hero__content {
    max-width: 700px;
    padding-top: 0;
    position: relative;
}

.eyebrow {
    color: var(--brand-blue);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: .6rem;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--brand-green);
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: .98;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.25rem;
    max-width: 620px;
}

.booking {
    background: #fff;
    border-radius: 8px;
    margin-top: -52px;
    padding: 24px;
    position: relative;
    z-index: 5;
}

.booking__form {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(145px, 1.35fr)) repeat(3, minmax(82px, .62fr)) minmax(150px, 1fr) minmax(180px, 1.2fr);
}

.booking__field {
    min-width: 0;
}

.booking .form-control,
.booking .form-select,
.booking .btn {
    min-height: 46px;
}

.booking .form-control,
.booking .form-select {
    border-color: #d9dfe3;
}

.booking .form-control:focus,
.booking .form-select:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 .2rem rgba(54, 174, 226, .14);
}

.booking__submit .btn {
    white-space: nowrap;
}

.booking__submit .btn-outline-dark {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.booking__submit .btn-outline-dark:hover,
.booking__submit .btn-outline-dark:focus {
    background: #fff;
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.booking__rate-note {
    color: var(--brand-muted);
    font-size: .78rem;
    margin: 10px 0 0;
    text-align: right;
}

.form-label {
    font-size: .82rem;
    font-weight: 700;
}

.intro,
.rooms,
.meeting,
.faq {
    padding: 110px 0;
}

.intro h2,
.section-heading h2,
.meeting h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    max-width: 860px;
}

.intro p {
    color: var(--brand-muted);
    font-size: 1.08rem;
    max-width: 720px;
}

.about-slider {
    border-radius: 8px;
    box-shadow: 0 22px 44px rgba(29, 42, 49, .12);
    height: clamp(360px, 42vw, 560px);
    overflow: hidden;
    width: 100%;
}

.about-slider .carousel-item {
    background: var(--brand-soft);
    height: clamp(360px, 42vw, 560px);
}

.about-slider img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.about-slider .carousel-indicators {
    margin-bottom: 14px;
}

.about-slider .carousel-indicators [data-bs-target] {
    background-color: #fff;
    height: 8px;
    opacity: .7;
    width: 8px;
}

.about-slider .carousel-indicators .active {
    background-color: var(--brand-green);
    opacity: 1;
}

.about-slider .carousel-control-prev,
.about-slider .carousel-control-next {
    width: 12%;
}

.rooms {
    background: var(--brand-soft);
}

.section-heading {
    margin-bottom: 48px;
}

.room-card {
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
    box-shadow: 0 18px 36px rgba(20, 24, 30, .12);
    transform: translateY(-6px);
}

.room-card__image {
    aspect-ratio: 16 / 10;
    display: block;
    flex: 0 0 auto;
    object-fit: cover;
    width: 100%;
}

.room-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.room-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.room-card span {
    color: var(--brand-blue);
    flex: 0 0 auto;
    font-size: .86rem;
    font-weight: 800;
    max-width: 42%;
    text-align: right;
}

.room-card .room-card__description {
    color: var(--brand-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 4px 0 22px;
}

.room-icon-sprite {
    height: 0;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.room-card__facts {
    border-bottom: 1px solid rgba(29, 42, 49, .12);
    border-top: 1px solid rgba(29, 42, 49, .12);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0 0 24px;
    padding: 17px 0;
}

.room-card__facts li {
    align-items: center;
    border-right: 1px solid rgba(29, 42, 49, .12);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 0 12px;
    text-align: center;
}

.room-card__facts li:first-child {
    padding-left: 0;
}

.room-card__facts li:last-child {
    border-right: 0;
    padding-right: 0;
}

.room-card__facts svg {
    fill: none;
    height: 23px;
    stroke: var(--brand-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 23px;
}

.room-card__facts span {
    color: #202124;
    flex: none;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: none;
    text-align: center;
}

.room-card__facts + .btn {
    margin-top: auto;
}

.room-detail-page {
    padding-top: 118px;
}

.room-detail {
    padding: 90px 0 120px;
}

.room-detail-slider {
    overflow: hidden;
}

.room-detail-slider .carousel-item {
    background: var(--brand-soft);
    height: 560px;
}

.room-detail-slider img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.room-detail-slider .carousel-indicators {
    margin-bottom: 18px;
}

.room-detail-slider .carousel-indicators [data-bs-target] {
    background-color: #fff;
    border-radius: 50%;
    height: 8px;
    opacity: .75;
    width: 8px;
}

.room-detail-slider .carousel-indicators .active {
    background-color: var(--brand-green);
    opacity: 1;
}

.room-detail h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
}

.room-detail__intro {
    color: #202124;
    font-size: 1.1rem;
    line-height: 1.55;
    max-width: 850px;
}

.room-amenities-table {
    border-collapse: collapse;
    font-size: 1rem;
    margin-top: 28px;
    width: 100%;
}

.room-amenities-table tr {
    border-bottom: 1px solid rgba(29, 42, 49, .14);
}

.room-amenities-table tr:first-child {
    border-top: 1px solid rgba(29, 42, 49, .14);
}

.room-amenities-table th,
.room-amenities-table td {
    padding: 12px 0;
    vertical-align: top;
}

.room-amenities-table th {
    color: #202124;
    font-weight: 800;
    padding-right: 24px;
    width: 34%;
}

.room-amenities-table td {
    color: var(--brand-muted);
}

.room-actions {
    align-items: center;
    display: flex;
    gap: 22px;
    margin-top: 22px;
}

.room-back-link {
    color: #202124;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.room-back-link:hover {
    color: #168fc1;
}

.room-experience {
    background: #fff;
}

.room-overview {
    padding: 76px 0 96px;
}

.room-overview__grid {
    border: 1px solid #e2e5e9;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 560px;
    overflow: hidden;
}

.room-overview__media {
    background: var(--brand-soft);
    margin: 0;
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.room-overview__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.room-overview__media figcaption {
    background: rgba(17, 33, 42, .84);
    border-radius: 999px;
    bottom: 20px;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    left: 20px;
    padding: 8px 13px;
    position: absolute;
}

.room-overview__content {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 5vw, 78px);
}

.room-overview__content h1 {
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.room-overview__subtitle {
    color: var(--brand-blue);
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: 28px;
}

.room-overview__subtitle span {
    color: rgba(29, 42, 49, .36);
    margin: 0 8px;
}

.room-overview__description {
    color: var(--brand-muted);
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 15px;
}

.room-overview__actions {
    align-items: center;
    display: flex;
    gap: 22px;
    margin-top: 18px;
}

.room-essentials,
.room-amenities-section,
.room-comforts-section,
.room-gallery-section,
.room-booking-section {
    padding: 96px 0;
}

.room-essentials,
.room-comforts-section,
.room-gallery-section {
    background: var(--brand-soft);
}

.room-section-heading {
    max-width: 820px;
}

.room-section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
}

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

.room-essential-card {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    padding: 26px 20px;
    text-align: center;
}

.room-essential-card svg {
    fill: none;
    height: 30px;
    margin-bottom: 16px;
    stroke: var(--brand-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 30px;
}

.room-essential-card span {
    color: var(--brand-muted);
    font-size: .78rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.room-essential-card strong {
    font-size: 1rem;
    line-height: 1.4;
}

.room-comforts-panel {
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.room-comforts-summary,
.room-included-features {
    min-width: 0;
    padding: 38px;
}

.room-comforts-summary h3,
.room-included-features h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.room-comforts-summary .room-essentials__grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-comforts-summary .room-essential-card {
    background: var(--brand-soft);
    border-color: transparent;
    min-height: 150px;
    padding: 22px 16px;
}

.room-included-features {
    border-left: 1px solid #e2e5e9;
}

.room-included-features ul {
    display: grid;
    gap: 0 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-included-features li {
    align-items: center;
    border-bottom: 1px solid #edf0f2;
    display: flex;
    gap: 12px;
    line-height: 1.45;
    min-height: 70px;
    padding: 13px 0;
}

.room-included-features li span {
    align-items: center;
    background: rgba(54, 174, 226, .12);
    border-radius: 50%;
    color: var(--brand-blue);
    display: inline-flex;
    flex: 0 0 28px;
    font-size: .8rem;
    font-weight: 800;
    height: 28px;
    justify-content: center;
}

.room-amenity-panels {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-amenity-panel {
    background: linear-gradient(135deg, rgba(183, 214, 0, .13), rgba(54, 174, 226, .11));
    border: 1px solid rgba(54, 174, 226, .18);
    border-radius: 10px;
    min-height: 300px;
    padding: 36px;
}

.room-amenity-panel h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.room-amenity-panel ul {
    display: grid;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-amenity-panel li {
    align-items: center;
    display: flex;
}

.room-amenity-panel li::before {
    color: var(--brand-blue);
    content: "✓";
    font-weight: 800;
    margin-right: 11px;
}

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

.room-gallery-section--carousel {
    --room-gallery-gap: 20px;
    background: #fff;
    padding-bottom: 88px;
    padding-top: 0;
}

.room-gallery-heading {
    margin-bottom: 30px;
}

.room-gallery-viewport {
    overflow: hidden;
}

.room-gallery-track {
    display: flex;
    gap: var(--room-gallery-gap);
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.room-gallery-track.is-resetting {
    transition: none;
}

.room-gallery-slide {
    border-radius: 10px;
    flex: 0 0 calc((100% - (2 * var(--room-gallery-gap))) / 3);
    margin: 0;
    overflow: hidden;
    position: relative;
}

.room-gallery-slide img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
    width: 100%;
}

.room-gallery-carousel:hover .room-gallery-slide img {
    transform: scale(1.015);
}

.room-gallery-card {
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 10px;
    display: grid;
    grid-template-rows: auto 1fr;
    margin: 0;
    overflow: hidden;
}

.room-gallery-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.room-gallery-card figcaption {
    min-height: 128px;
    padding: 25px;
}

.room-gallery-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 9px;
}

.room-gallery-card p {
    color: var(--brand-muted);
    line-height: 1.55;
    margin: 0;
}

.room-booking-section {
    background: #fff;
}

.room-booking-panel {
    align-items: center;
    background: linear-gradient(120deg, #1d2a31, #247c86);
    border-radius: 12px;
    color: #fff;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    padding: 52px;
}

.room-booking-panel > div {
    max-width: 750px;
}

.room-booking-panel .eyebrow {
    color: var(--brand-green);
}

.room-booking-panel h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px;
}

.room-booking-panel p:not(.eyebrow) {
    line-height: 1.6;
    margin: 0;
    opacity: .85;
}

.room-booking-button {
    background: var(--brand-green);
    border-radius: 999px;
    color: #17232a;
    flex: 0 0 auto;
    font-size: .9rem;
    font-weight: 800;
    padding: 13px 22px;
    text-decoration: none;
}

.room-booking-button:hover,
.room-booking-button:focus {
    background: #c8e522;
    color: #17232a;
}

.home-meeting {
    align-items: center;
    color: #fff;
    display: flex;
    margin-bottom: 72px;
    min-height: 580px;
    overflow: visible;
    position: relative;
}

.home-meeting__image,
.home-meeting__overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.home-meeting__image {
    object-fit: cover;
    object-position: center;
}

.home-meeting__overlay {
    background: linear-gradient(90deg, rgba(16, 32, 40, .95), rgba(16, 32, 40, .73) 43%, rgba(16, 32, 40, .12) 78%);
}

.home-meeting__content {
    padding-bottom: 96px;
    padding-top: 96px;
    position: relative;
    z-index: 1;
}

.home-meeting .eyebrow {
    color: var(--brand-green);
}

.home-meeting h2 {
    font-size: clamp(2.4rem, 4.8vw, 4.6rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 24px;
    max-width: 780px;
}

.home-meeting__content > p:not(.eyebrow) {
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 650px;
}

.home-meeting__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-meeting__primary,
.home-meeting__secondary {
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 800;
    justify-content: center;
    padding: 13px 21px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.home-meeting__primary {
    background: var(--brand-green);
    color: #17232a;
}

.home-meeting__secondary {
    border-color: rgba(255, 255, 255, .72);
    color: #fff;
}

.home-meeting__primary:hover,
.home-meeting__primary:focus,
.home-meeting__secondary:hover,
.home-meeting__secondary:focus {
    transform: translateY(-2px);
}

.home-meeting__primary:hover,
.home-meeting__primary:focus {
    background: #c8e522;
    color: #17232a;
}

.home-meeting__secondary:hover,
.home-meeting__secondary:focus {
    background: #fff;
    border-color: #fff;
    color: #17232a;
}

.home-meeting__facts-wrap {
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 50%);
    z-index: 2;
}

.home-meeting__facts {
    background: #fff;
    border-radius: 10px;
    color: #202124;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.home-meeting__facts > div {
    border-right: 1px solid rgba(29, 42, 49, .12);
    display: grid;
    gap: 5px;
    padding: 24px 28px;
    text-align: center;
}

.home-meeting__facts > div:last-child {
    border-right: 0;
}

.home-meeting__facts strong {
    font-size: .95rem;
}

.home-meeting__facts span {
    color: var(--brand-muted);
    font-size: .8rem;
}

.meeting-hero {
    align-items: flex-end;
    color: #fff;
    display: flex;
    margin-top: 118px;
    min-height: 650px;
    overflow: hidden;
    position: relative;
}

.meeting-hero__image,
.meeting-hero__overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.meeting-hero__image {
    object-fit: cover;
    object-position: center;
}

.meeting-hero__overlay {
    background: linear-gradient(90deg, rgba(17, 33, 42, .94) 0%, rgba(17, 33, 42, .72) 42%, rgba(17, 33, 42, .12) 76%);
}

.meeting-hero__content {
    padding-bottom: 108px;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.meeting-hero__content .eyebrow {
    color: var(--brand-green);
}

.meeting-hero h1 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 22px;
    max-width: 760px;
}

.meeting-hero__content > p:not(.eyebrow) {
    font-size: 1.16rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 660px;
}

.meeting-hero small {
    display: block;
    margin-top: 14px;
    opacity: .85;
}

.meeting-whatsapp-button {
    background: var(--brand-green);
    border: 1px solid var(--brand-green);
    border-radius: 999px;
    color: #17232a;
    display: inline-flex;
    font-size: .92rem;
    font-weight: 800;
    justify-content: center;
    padding: 13px 22px;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease;
}

.meeting-whatsapp-button:hover,
.meeting-whatsapp-button:focus {
    background: #c8e522;
    color: #17232a;
    transform: translateY(-2px);
}

.meeting-facts-wrap {
    margin-top: -42px;
    position: relative;
    z-index: 3;
}

.meeting-facts {
    background: #fff;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}

.meeting-facts > div {
    border-right: 1px solid rgba(29, 42, 49, .12);
    display: grid;
    gap: 4px;
    padding: 24px 18px;
    text-align: center;
}

.meeting-facts > div:last-child {
    border-right: 0;
}

.meeting-facts strong {
    color: #202124;
    font-size: 1rem;
}

.meeting-facts span {
    color: var(--brand-muted);
    font-size: .82rem;
}

.meeting-intro-section,
.meeting-gallery-section,
.meeting-facilities-section,
.meeting-contact-section {
    padding: 110px 0;
}

.meeting-intro-section h2,
.meeting-gallery-section h2,
.meeting-facilities-section h2,
.meeting-contact-section h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
}

.meeting-intro-section h2 {
    margin-bottom: 24px;
    max-width: 720px;
}

.meeting-intro-section p:not(.eyebrow),
.meeting-gallery-heading > p:not(.eyebrow),
.meeting-facilities-section p:not(.eyebrow) {
    color: var(--brand-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.meeting-use-card {
    background: linear-gradient(135deg, rgba(183, 214, 0, .16), rgba(54, 174, 226, .13));
    border: 1px solid rgba(54, 174, 226, .18);
    border-radius: 10px;
    padding: 32px;
}

.meeting-use-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.meeting-use-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.meeting-use-card li::before {
    color: var(--brand-blue);
    content: "✓";
    font-weight: 800;
    margin-right: 10px;
}

.meeting-gallery-section {
    background: var(--brand-soft);
}

.meeting-gallery-heading {
    max-width: 800px;
}

.meeting-gallery-heading h2 {
    margin-bottom: 18px;
}

.meeting-gallery-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.3fr 1fr;
}

.meeting-gallery-card {
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 10px;
    display: grid;
    grid-template-columns: minmax(190px, .95fr) 1fr;
    margin: 0;
    overflow: hidden;
}

.meeting-gallery-card--featured {
    grid-row: span 2;
    grid-template-columns: 1fr;
}

.meeting-gallery-card img {
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    width: 100%;
}

.meeting-gallery-card--featured img {
    min-height: 510px;
}

.meeting-gallery-card figcaption {
    padding: 25px;
}

.meeting-gallery-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.meeting-gallery-card p {
    color: var(--brand-muted);
    font-size: .95rem;
    line-height: 1.55;
    margin: 0;
}

.meeting-facilities-section {
    background: #fff;
}

.meeting-facilities-section h2 {
    margin-bottom: 20px;
}

.meeting-facilities-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.meeting-facilities-list li {
    align-items: center;
    border-bottom: 1px solid rgba(29, 42, 49, .14);
    display: flex;
    font-weight: 700;
    min-height: 58px;
    padding: 10px 0;
}

.meeting-facilities-list li::before {
    background: var(--brand-green);
    border-radius: 50%;
    content: "";
    flex: 0 0 9px;
    height: 9px;
    margin-right: 13px;
}

.meeting-contact-section {
    background: var(--brand-soft);
}

.meeting-contact-panel {
    align-items: center;
    background: linear-gradient(120deg, #1d2a31, #247c86);
    border-radius: 12px;
    color: #fff;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    padding: 54px;
}

.meeting-contact-panel > div {
    max-width: 760px;
}

.meeting-contact-panel .eyebrow {
    color: var(--brand-green);
}

.meeting-contact-panel h2 {
    margin-bottom: 18px;
}

.meeting-contact-panel p:not(.eyebrow) {
    line-height: 1.65;
    margin: 0;
    opacity: .86;
}

.meeting-whatsapp-button--light {
    flex: 0 0 auto;
    max-width: 260px;
    text-align: center;
}

.faq {
    background: var(--brand-soft);
}

.faq-accordion {
    border-top: 1px solid rgba(29, 42, 49, .14);
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(29, 42, 49, .14);
}

.faq-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    color: #202124;
    font-size: 1.08rem;
    font-weight: 800;
    padding: 24px 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #168fc1;
}

.faq-accordion .accordion-body {
    color: var(--brand-muted);
    max-width: 780px;
    padding: 0 0 24px;
}

.footer {
    background: #2f9995;
    color: #fff;
}

.footer-main {
    background: linear-gradient(90deg, rgba(68, 128, 125, .96), rgba(47, 153, 149, .98));
    padding: 52px 0;
}

.footer-map {
    background: rgba(255, 255, 255, .18);
    border-radius: 8px;
    height: 170px;
    overflow: hidden;
}

.footer-map iframe {
    border: 0;
    filter: saturate(.8);
    height: 100%;
    width: 100%;
}

.footer-contact h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-contact p {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--brand-green);
}

.footer-contact span {
    margin: 0 6px;
    opacity: .72;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.footer-social a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    width: 32px;
}

.footer-social a:hover,
.footer-social a:focus {
    background: #fff;
    border-color: #fff;
    color: #2f9995;
    transform: translateY(-2px);
}

.footer-social svg {
    fill: currentColor;
    height: 16px;
    width: 16px;
}

.footer-social a:nth-child(2) svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-social__instagram-dot {
    fill: currentColor;
    stroke: none;
}

.footer-properties {
    border-top: 1px solid rgba(255, 255, 255, .22);
    margin-top: 42px;
    padding-top: 32px;
    text-align: center;
}

.footer-properties h2 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.footer-properties__grid {
    align-items: stretch;
    display: grid;
    gap: clamp(10px, 2.4vw, 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 900px;
}

.footer-property {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 112px;
    padding: 14px;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-property:hover,
.footer-property:focus-visible {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .42);
    transform: translateY(-3px);
}

.footer-property img {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.footer-bottom {
    background: rgba(47, 153, 149, .9);
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-weight: 700;
    letter-spacing: .04em;
    padding: 24px 0;
    text-align: center;
}

@media (max-width: 991.98px) {
    .booking__form {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .booking__field--date {
        grid-column: span 3;
    }

    .booking__field--occupancy {
        grid-column: span 2;
    }

    .booking__field--promo,
    .booking__submit {
        grid-column: span 3;
    }

    .room-gallery-slide {
        flex-basis: calc((100% - var(--room-gallery-gap)) / 2);
    }

    .room-comforts-panel {
        grid-template-columns: 1fr;
    }

    .room-included-features {
        border-left: 0;
        border-top: 1px solid #e2e5e9;
    }
}

@media (max-width: 767.98px) {
    .room-gallery-section--carousel {
        --room-gallery-gap: 14px;
        padding-bottom: 72px;
        padding-top: 0;
    }

    .room-gallery-slide {
        flex-basis: 100%;
    }

    .header-main,
    .header-main__inner {
        min-height: 64px;
    }

    .site-logo {
        height: 54px;
    }

    .header-actions {
        gap: 10px;
    }

    .utility-link--text,
    .brand-link {
        display: none;
    }

    .language-menu__label {
        display: none;
    }

    .language-menu__code {
        display: inline;
    }

    .join-link {
        padding: 8px 14px;
    }

    .header-subnav .container {
        gap: 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hero {
        min-height: 78vh;
        padding-top: 108px;
    }

    .room-detail-page {
        padding-top: 108px;
    }

    .room-overview {
        padding: 30px 0 64px;
    }

    .room-overview__grid {
        grid-template-columns: 1fr;
    }

    .room-overview__media {
        min-height: 390px;
    }

    .room-overview__content {
        padding: 38px 26px;
    }

    .room-overview__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .room-overview__actions .join-link {
        text-align: center;
    }

    .room-overview__actions .room-back-link {
        text-align: center;
    }

    .room-essentials,
    .room-amenities-section,
    .room-comforts-section,
    .room-gallery-section,
    .room-booking-section {
        padding: 72px 0;
    }

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

    .room-essential-card {
        min-height: 165px;
        padding: 22px 13px;
    }

    .room-amenity-panels,
    .room-gallery-grid {
        grid-template-columns: 1fr;
    }

    .room-amenity-panel {
        min-height: 0;
        padding: 30px 26px;
    }

    .room-comforts-panel {
        grid-template-columns: 1fr;
    }

    .room-comforts-summary,
    .room-included-features {
        padding: 30px 24px;
    }

    .room-included-features {
        border-left: 0;
        border-top: 1px solid #e2e5e9;
    }

    .room-included-features ul {
        grid-template-columns: 1fr;
    }

    .room-gallery-card figcaption {
        min-height: 0;
    }

    .room-booking-panel {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding: 34px 26px;
    }

    .room-booking-button {
        text-align: center;
        width: 100%;
    }

    .meeting-hero {
        margin-top: 108px;
        min-height: 620px;
    }

    .home-meeting {
        align-items: flex-end;
        margin-bottom: 76px;
        min-height: 640px;
    }

    .home-meeting__image {
        object-position: 58% center;
    }

    .home-meeting__overlay {
        background: linear-gradient(180deg, rgba(16, 32, 40, .1), rgba(16, 32, 40, .94) 68%);
    }

    .home-meeting__content {
        padding-bottom: 94px;
        padding-top: 180px;
    }

    .home-meeting h2 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
    }

    .home-meeting__content > p:not(.eyebrow) {
        font-size: 1rem;
    }

    .home-meeting__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-meeting__primary,
    .home-meeting__secondary {
        width: 100%;
    }

    .home-meeting__facts-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-meeting__facts > div {
        padding: 18px 8px;
    }

    .home-meeting__facts strong {
        font-size: .78rem;
    }

    .home-meeting__facts span {
        font-size: .7rem;
    }

    .meeting-hero__image {
        object-position: 58% center;
    }

    .meeting-hero__overlay {
        background: linear-gradient(180deg, rgba(17, 33, 42, .22), rgba(17, 33, 42, .94));
    }

    .meeting-hero__content {
        padding-bottom: 78px;
        padding-top: 160px;
    }

    .meeting-hero__content > p:not(.eyebrow) {
        font-size: 1.02rem;
    }

    .meeting-facts-wrap {
        margin-top: 0;
    }

    .meeting-facts {
        border-radius: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .meeting-facts > div {
        border-bottom: 1px solid rgba(29, 42, 49, .12);
    }

    .meeting-facts > div:last-child {
        grid-column: 1 / -1;
    }

    .meeting-intro-section,
    .meeting-gallery-section,
    .meeting-facilities-section,
    .meeting-contact-section {
        padding: 72px 0;
    }

    .meeting-gallery-grid,
    .meeting-gallery-card,
    .meeting-gallery-card--featured {
        grid-template-columns: 1fr;
    }

    .meeting-gallery-card--featured {
        grid-row: auto;
    }

    .meeting-gallery-card img,
    .meeting-gallery-card--featured img {
        min-height: 260px;
    }

    .meeting-facilities-list {
        grid-template-columns: 1fr;
    }

    .meeting-contact-panel {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding: 34px 26px;
    }

    .meeting-whatsapp-button--light {
        max-width: none;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .booking {
        border-radius: 0;
        margin-top: 0;
        padding: 20px 16px;
    }

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

    .booking__rate-note {
        text-align: center;
    }

    .booking__field--date,
    .booking__field--promo,
    .booking__submit {
        grid-column: 1 / -1;
    }

    .booking__field--occupancy {
        grid-column: auto;
    }

    .booking__field--occupancy:last-of-type {
        grid-column: 1 / -1;
    }

    .intro,
    .rooms,
    .meeting,
    .faq {
        padding: 72px 0;
    }

    .room-detail {
        padding: 64px 0 80px;
    }

    .room-detail-slider .carousel-item {
        height: 340px;
    }

    .about-slider,
    .about-slider .carousel-item {
        height: 340px;
    }

    .footer-main {
        padding: 42px 0;
    }

    .footer-contact p {
        font-size: .95rem;
    }

    .footer-contact span {
        display: none;
    }

    .footer-contact p a {
        display: block;
        margin-top: 8px;
    }
}

@media (max-width: 420px) {
    .footer-properties {
        margin-top: 32px;
        padding-top: 26px;
    }

    .footer-properties h2 {
        font-size: .82rem;
        margin-bottom: 16px;
    }

    .footer-property {
        min-height: 82px;
        padding: 8px;
    }

    .footer-property img {
        height: 56px;
    }

    .site-logo {
        height: 48px;
    }

    .header-subnav a {
        font-size: .78rem;
    }

    .room-card__facts li {
        padding-left: 8px;
        padding-right: 8px;
    }

    .room-card__facts span {
        font-size: .73rem;
    }
}
