* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #3D4E62;
    --color-dark-alt: #33474D;
    --color-green: #D8DFBF;
    --color-green-muted: #9EA48A;
    --color-beige: #E0C1A4;
    --color-text: #3E3F44;
    --color-light: #F4F5F6;
    --color-white: #FFF;
    --color-disabled: #919C6D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 20px;
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 28px;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

h1 {
    font-size: 56px;
    line-height: 64px;
    font-weight: 300;
}

h2 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 300;
}

h3 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 300;
}

h4 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

p {
    font-size: 20px;
    line-height: 28px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

button:hover {
    opacity: 0.7;
    backdrop-filter: blur(5px);
}

.container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.container.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    transition: background-color 0.3s ease;
}

nav.folded {
    position: fixed;
    background-color: rgba(224, 193, 164, 0.5);
    backdrop-filter: blur(5px);
    top: 0 !important;
}

.nav-wrapper {
    max-width: 1440px;
    padding: 0 128px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.nav-wrapper-border {
    height: 1px;
    width: 100%;
    max-width: 1184px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 128px;
}

.nav-wrapper-border.hidden {
    visibility: hidden;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.nav-logo img {
    height: 110px;
    width: auto;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 36px;
}

.nav-menu {
    display: flex;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--color-dark);
    transition: all 0.3s;
    height: 100%;
}
.nav-menu a.menu-active {
    color: #546322;
}

.nav-menu a:hover {
    color: #546322;
}

.nav-cta {
    padding: 12px 36px;
    background-color: var(--color-dark-alt);
    color: var(--color-green) !important;
    border-radius: 5px;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-cta:hover {
    background-color: #2a3844;
}

.nav-hamburger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-dark-alt);
}

.nav-hamburger {
    display: none;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 60px;
    text-transform: uppercase;
    margin: 0;
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    background-color: var(--color-dark-alt);
    padding: 82px 128px 16px 128px;
}

.footer-content {
    max-width: 1184px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-bottom: 56px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 16px;
    margin-top: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #D8DFBF;
}

.footer-col p {
    font-size: 20px;
    color: #D8DFBF;
    line-height: 1.75;
    margin: 0;
}

.footer-col p.white {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials svg {
    width: 32px;
    height: 36px;
}

.footer-logo {
    width: 231px;
    height: 24px;
    margin-bottom: 32px;
    margin-top: 12px;
}

.footer-divider {
    padding-top: 32px;
    text-align: right;
}

.footer-divider p {
    color: #E0C1A4;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-col .maps-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.page-id-133 .maps-section, .naura-custom-padding {
    padding: 120px 128px;
}

@media (max-width: 1199px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }

    h1 {
        font-size: 40px;
        line-height: 56px;
    }

    h2 {
        font-size: 32px;
        line-height: 48px;
    }

    h3 {
        font-size: 24px;
        line-height: 36px;
    }

    h4 {
        font-size: 20px;
        line-height: 30px;
    }

    h5 {
        font-size: 16px;
        line-height: 24px;
    }

    h6 {
        font-size: 12px;
        line-height: 20px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .container {
        max-width: 1024px;
    }

    .row {
        gap: 16px;
    }

    .nav-wrapper {
        max-width: 100%;
        padding: 0 100px;
    }

    .nav-wrapper-border {
        max-width: 824px;
        left: 100px;
    }

    .nav-logo {
        height: 110px;
    }

    .nav-logo img {
        height: 110px;
    }



    .folded .nav-logo, .folded .nav-logo img {
        height: 70px;
    }

    .nav-menu {
        gap: 24px;
    }

    .nav-menu {
        display: flex;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .nav-cta {
        padding: 10px 24px;
        font-size: 16px;
    }

    .nav-hamburger {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--color-dark-alt);
    }

    .nav-hamburger {
        display: none;
    }

    .section-title {
        text-align: center;
        margin-bottom: 36px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 48px;
    }

    .page-id-133 .maps-section, .naura-custom-padding {
        padding: 100px;
    }

    /* ===== FOOTER ===== */
    footer {
        padding: 72px 100px 14px 100px;
    }

    .footer-content {
        max-width: 1024px;
    }

    .footer-grid {
        gap: 48px;
        margin-bottom: 0;
    }

    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

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

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 16px;
    }

    .footer-socials {
        gap: 14px;
        margin-bottom: 24px;
    }

    .footer-socials svg {
        width: auto;
        height: 28px;
    }

    .footer-logo {
        width: 180px;
        height: auto;
        margin-bottom: 24px;
    }

    .footer-divider {
        padding-top: 28px;
    }

    .footer-divider p {
        font-size: 14px;
    }

    .footer-col .maps-item {
        gap: 14px;
        margin-top: 20px;
    }

    .footer-socials img {
        width: auto;
        height: 28px;
    }

    .maps-item-icon img {
        width: auto;
        height: 28px;
    }
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        padding: 0;
    }

    .nav-hamburger {
        display: none;
    }
}

@media (max-width: 991px) {
    .nav-hamburger {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--color-dark-alt);
    }

    .nav-menu {
        display: none;
    }
    .nav-wrapper-border {
        display: none;
    }

    footer {
        padding: 72px 100px 14px 100px;
    }

    .footer-content {
        max-width: 1024px;
    }

    .footer-grid {
        gap: 48px;
        margin-bottom: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 16px;
    }

    .footer-divider {
        text-align: left;
    }
}

@media (max-width: 991px) {
    .nav-wrapper {
        padding: 0 24px;
    }

    .nav-wrapper-border {
        left: 24px;
        max-width: calc(100% - 48px);
    }

    .nav-hamburger {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 60;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background-color: #ffffff;
        flex-direction: column;
        gap: 24px;

        padding: 32px 24px;

        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;

        transition:nopacity 0.35s ease,
        transform 0.35s ease;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        display: flex;
        background-color: rgba(224, 193, 164, 1);
        backdrop-filter: blur(5px);
    }

    .nav-menu a {
        font-size: 18px;
    }

    a.nav-cta.menu-btn {
        width: max-content;
    }

    .nav-wrapper.active {
        background-color: rgba(224, 193, 164, 1);
        backdrop-filter: blur(5px);
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav-wrapper {
        max-width: 100%;
        padding: 0 56px;
    }

    footer {
        padding: 56px 56px 24px 56px;
    }

    .footer-content {
        max-width: 100%;
    }

    .footer-grid {
        gap: 48px;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-col {
        max-width: 50%;
    }

    .page-id-133 .maps-section, .naura-custom-paddingg {
        padding: 56px;
    }
}

@media (max-width: 639px) {
    .nav-wrapper {
        max-width: 100%;
        padding: 0 36px;
    }

    .nav-logo img {
        height: 80px;
    }

    footer {
        padding: 36px 36px 24px 36px;
    }

    .footer-content {
        max-width: 100%;
    }

    .footer-grid {
        gap: 36px;
    }

    .footer-col {
        max-width: 100%;
    }

    .page-id-133 .maps-section, .naura-custom-padding {
        padding: 36px;
    }
}

/* ===== HERO 2 SECTION ===== */
.hero2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero2-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #D8DFBF -40%, rgba(115, 115, 115, 0) 100%);
    z-index: 1;
}

.hero2-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #5A6731 15%, rgba(118,129,79, 0.77) 48%, rgba(115, 115, 115, 0) 100%) !important;
    opacity: 35%;
    z-index: 1;
}

.hero2-content-wrapper {
    max-width: 1440px;
    padding: 0 128px;
    display: flex;
    height: auto;
    margin: auto;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero2-content {
    z-index: 10;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin: 0;
    height: auto;
    position: absolute;
    left: 128px;
    bottom: 128px;
}

.hero2-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero2-heading {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-weight: normal;
}

.hero2-heading .white {
    color: var(--color-white);
}

.hero2-heading .wheat {
    color: rgba(255, 222, 191, 88%);
}

.hero2 p {
    color: white;
}

.hero2-logo-wrapper {
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10;
    padding: 16px;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin: 0;
    height: auto;
    position: absolute;
    right: 128px;
    top: 20%;
}

@media (max-width: 1199px) {
    .hero2 {
        min-height: 480px;
    }

    .hero2-content-wrapper {
        max-width: 100%;
        padding: 0 100px;
    }

    .hero2-content {
        max-width: 50%;
        gap: 2.25rem;
        left: 100px;
        bottom: 100px;
    }

    .hero2-heading-wrapper {
        gap: 16px;
    }

    .hero2-logo-wrapper {
        padding: 16px;
        max-width: 35%;
        gap: 2.25rem;
        right: 100px;
        top: 20%;
    }
}

@media (max-width:992px) {
    .hero2 {
        min-height: 480px;
    }

    .hero2-content-wrapper {
        max-width: 1024px;
        padding: 0 100px;
    }

    .hero2-content {
        max-width: 50%;
        gap: 2.25rem;
        left: 0;
        bottom:unset;
        top:164px;
        position: relative;
    }

    .hero2-heading-wrapper {
        gap: 16px;
    }

    .hero2-logo-wrapper {
        padding: 16px;
        max-width: 35%;
        gap: 2.25rem;
        right: 100px;
        top: 20%;
    }
}

@media (max-width:767px) {
    .hero2 {
        min-height: 480px;
    }

    .hero2-content-wrapper {
        max-width: 100%;
        padding: 0 56px;
        flex-direction: column;
    }

    .hero2-content {
        max-width: 100%;
        gap: 2.25rem;
        left: 0;
        order: 2;
        bottom: unset;
        position: relative;
        top: unset;
        margin-top: 24px;
    }

    .hero2-heading-wrapper {
        gap: 16px;
    }

    .hero2-logo-wrapper {
        padding: 16px;
        max-width: 35%;
        gap: 2.25rem;
        right: unset;
        left: 0;
        top: unset;
        order: 1;
        margin-top: 164px;
        position: relative
    }
}

@media (max-width:639px) {
    .hero2 {
        min-height: 480px;
    }

    .hero2-content-wrapper {
        padding: 0 36px;
    }

    .hero2-content {
        gap: 2.25rem;
    }

    .hero2-heading-wrapper {
        gap: 16px;
    }

    .hero2-logo-wrapper {
        max-width: 360px;
    }
}

.space-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background-image: url('./assets/naura-hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.space-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.space-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.space-header {
    background: rgba(224, 193, 164, 0.5);
    backdrop-filter: blur(5px);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 976px;
    margin: 0 auto;
}

.space-header h2 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-weight: 300;
}

.space-header h2 .white {
    color: var(--color-white);
}

.space-header h2 .accent {
    color: var(--color-green-muted);
}

.space-header p {
    color: var(--color-white);
}

.space-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
    row-gap: 114px;
    margin: auto;
    margin-top: 134px;
    max-width: 1184px;
}

.space-card {
    position: relative;
    border: 10px solid var(--color-white);
    background: linear-gradient(291deg, #D8DFBF 4.35%, rgba(222, 189, 164, 0.65) 95.88%);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    padding: 96px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.space-card-image {
    position: absolute;
    top: -5.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 365px !important;
    width: 100% !important;
    height: 173px !important;
    border: 10px solid var(--color-white);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.space-card h3 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    color: var(--color-dark-alt);
    margin: 2px 0 0 0;
}

.space-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--color-dark-alt);
    line-height: 1.75;
    margin: 0;
}

.space-price {
    display: flex;
    align-items: flex-end;
    padding-top: 24px;
    margin: 0 auto;
}

.space-price-value {
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.space-price-rp {
    font-weight: 500;
    font-size: 2.25rem;
    color: var(--color-dark-alt);
}

.space-price-amount {
    font-weight: 500;
    font-size: 6.25rem;
    color: var(--color-dark-alt);
}

.space-price-unit {
    font-weight: 500;
    font-size: 2.25rem;
    color: var(--color-dark-alt);
}

.space-price-period {
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--color-white);
}

.space-capacity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
}

.space-capacity svg {
    width: 32px;
    height: auto;
    flex-shrink: 0;
}

.space-capacity-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-dark-alt)
}

.space-amenities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 16px;
}

.space-amenity-icon {
    width: auto;
    height: 24px;
    flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
    .space-section {
        width: 100%;
        max-width: 100%;
        padding: 100px;
    }

    .space-content {
        gap: 3rem;
    }

    .space-header {
        padding: 24px;
        gap: 24px;
        max-width: 976px;
    }

    .space-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));;
        column-gap: 36px;
        row-gap: 114px;
        margin-top: 134px;
        max-width: 100%;
    }

    .space-card {
        padding: 96px 24px 24px 24px;
        gap: 20px;
    }

    .space-card-image {
        top: -5.5rem;
        left: 50%;
        max-width: 365px !important;
        height: 173px !important;
        border: 10px solid var(--color-white);
    }

    .space-card h3 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 3rem;
    }

    .space-card p {
        font-size: 1.25rem;
        line-height: 1.75;
    }

    .space-price {
        padding-top: 24px;
    }

    .space-price-rp {
        font-size: 2.25rem;
    }

    .space-price-amount {
        font-size: 6.25rem;
    }

    .space-price-unit {
        font-size: 2.25rem;
    }

    .space-price-period {
        font-size: 1.75rem;
    }

    .space-capacity {
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .space-capacity svg {
        width: 32px;
    }

    .space-capacity-text {
        font-size: 1.5rem;
        line-height: 1;
    }

    .space-amenities {
        gap: 1rem;
        padding-top: 16px;
    }

    .space-amenity-icon {
        height: 24px;
    }
}

@media screen and (max-width: 991px) {
    .space-card {
        padding: 20px;
        gap: 16px;
    }
    .space-card-image {
        border: 10px solid #fff;
        position: relative;
        top: 0;
        margin: auto;
        left: unset;
        transform: unset;
    }
    .space-grid {
        row-gap: 36px;
        margin-top: 48px;
    }
    .space-card h3 {
        font-size: 28px;
        font-weight: 500;
        line-height: 36px;
    }

    .space-price-amount {
        font-size: 48px;
    }
    .space-price-rp, .space-price-unit {
        font-size: 36px;
    }
    .space-price-period {
        font-size: 36px;
        flex: 1;
    }
    .space-capacity-text {
        font-size: 1.5rem;
    }
    img.space-capacity-icon {
        height: 28px;
    }
}

@media (max-width: 767px) {
    .space-section {
        padding: 56px;
    }
    .space-grid {
        grid-template-columns: 1fr;
    }
    .space-card {
        margin: auto;
        padding: 20px;
        gap: 16px;
        max-width: 65%;
        width: 100%;
    }
    .space-price-period {
        font-size: 28px;
        flex: unset;
    }
    .space-grid {
        row-gap: 48px;
    }
}

@media (max-width: 639px) {
    .space-section {
        padding: 36px;
    }
    .space-card {
        max-width: 100%;
    }
    .space-header {
        max-width: 100%;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 128px 120px;
}

.faq-list {
    max-width: 1184px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(61, 78, 98, 0.12);
    padding: 1rem 0;
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    padding: 0;
    text-align: left;
    border: none;
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--color-dark);
    line-height: 1.875rem;
    flex: 1;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    text-transform: initial;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-answer {
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.faq-answer.open {
    display: block;
}

.accent {
    color: #9EA48A;
}

@media (max-width: 1199px) {
    .faq-section {
        padding: 100px;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-button {
        gap: 1rem;
    }

    .faq-question {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-icon img {
        width: 20px;
        height: 20px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 56px;
    }
}

@media (max-width: 639px) {
    .faq-section {
        padding: 36px;
    }
}

/* ===== CONTACT BOX ===== */
.contact-box-section {
    padding: 120px 128px;
}

.contact-box-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.contact-box-info {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.contact-box-item {
    display: flex;
    gap: 1.5rem;
}

.contact-box-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.contact-box-item-icon svg {
    width: 100%;
    height: 100%;
}

.contact-box-item-content h3 {
    font-family: 'Inter', sans-serif;
    line-height: 36px;
    margin: 0;
}

.contact-box-item-content h3 .light {
    color: var(--color-dark);
}

.contact-box-item-content h3 .bold {
    font-weight: 400;
    color: var(--color-dark);
}

.contact-box-item-content p {
    font-size: 1.25rem;
    color: rgba(172, 141, 112, 0.88);
    line-height: 1.75;
    margin: 0.75rem 0 0 0;
}

.contact-box-chats {
    display: flex;
    gap: 16px;
    width: 100%;
}

.contact-box-chat {
    background-color: #3D4E62;
    color: #fff;
    display: flex;
    gap: 16px;
    padding: 10px 14px;
    border-radius: 5px;
    width: 100%;
    max-width: max-content;
    min-width: 200px;
    align-items: center;
}

.contact-box-chat.whatsapp {
    background-color: #919C6D;
}

.contact-box-chat-icon {
    height: 36px;
}

.contact-box-socials {
    display: flex;
    gap: 16px;
    width: 100%;
    width: auto;
    height: 36px;
}

.contact-box-social-icon {
    height: 36px;
}

.contact-icon {
    height: 36px;
    width: auto;
}

.contact-box-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

input.naura-input {
    width: 100%;
    padding: 10px 16px;
    background-color: #F8FAF2;
    color: #9EA48A;
    padding: 10px 16px;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}
textarea.naura-input {
    width: 100%;
    height: 266px;
    padding: 10px 16px;
    background-color: #F8FAF2;
    color: #9EA48A;
    padding: 10px 16px;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

input.naura-input[type="submit"] {
    background-color: #919C6D;
    border-radius: 5px;
    color: #fff;
    padding: 10px 24px;
    width: max-content;
    min-width: 188px;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .contact-box-section {
        padding: 0 100px 100px 100px;
    }

    .contact-box-grid {
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
    }

    .contact-box-info {
        gap: 2.25rem;
    }

    .contact-box-item-icon {
        width: 28px;
        height: 28px;
    }

    .contact-box-item-content h3 {
        line-height: 1em;
    }

    .contact-box-item-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-box-chats {
        gap: 16px;
    }

    .contact-box-chat {
        gap: 16px;
        padding: 10px 14px;
        border-radius: 5px;
        min-width: 200px;
    }

    .contact-box-chat-icon {
        height: 28px;
    }

    .contact-box-socials {
        gap: 16px;
        width: auto;
        height: 28px;
    }

    .contact-box-social-icon {
        height: 28px;
    }

    .contact-icon {
        height: 28px;
        width: auto;
    }

    .contact-box-form form {
        gap: 16px;
        width: 100%;
    }

    input.naura-input {
        padding:10px;
        font-size: 16px;
        line-height: 24px;
    }
    textarea.naura-input {
        height: 266px;
        padding: 10px;
        font-size: 16px;
        line-height: 24px;
    }

    input.naura-input[type="submit"] {
        padding: 10px 14px;
        min-width: 160px;
    }
}

@media (max-width: 991px) {
    .contact-box-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }
}
@media (max-width: 767px) {
    .contact-box-section {
        padding: 0 56px 56px 56px;
    }
}
@media (max-width: 639px) {
    .contact-box-section {
        padding: 0 36px 36px 36px;
    }
    .contact-box-chats {
        flex-direction: column;
        gap: 36px;
    }
}


.panels {
    display: flex;
    gap: 50px;
}

.left-panel {
    width: calc(100% - 370px);
    max-width: 100%;
}

.right-panel {
    width: 100%;
    max-width: 320px;
}

.facilities {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.facility {
    display: flex;
    gap: 15px;
}

.booking-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background-color: rgba(224, 193, 164, 0.5);
    border-radius: 15px;
}

.contact-box-chats {
    flex-direction: column;
}

.contact-box-chat {
    max-width: 100%;
    text-transform: uppercase;
    justify-content: center;
}

.facilities {
    margin-bottom: 64px;
}

@media (max-width: 991px) {

    .panels {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        max-width: 100%;
    }

    .right-panel {
        width: 100%;
        max-width: 100%;
    }
}