/* =====================================================
   بيت الفنار
   Professional Arabic Chalet Website
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --primary: #183f3a;
    --primary-dark: #102f2b;
    --primary-light: #285b53;

    --gold: #c7a66a;
    --gold-light: #e1c891;

    --cream: #f7f4ed;
    --cream-dark: #eee9de;

    --white: #ffffff;

    --text: #1c2826;
    --text-light: #66706d;

    --border: rgba(24, 63, 58, 0.12);

    --danger: #a54b45;
    --success: #3d795e;

    --shadow-sm:
        0 8px 25px rgba(15, 40, 36, 0.07);

    --shadow:
        0 20px 55px rgba(15, 40, 36, 0.11);

    --shadow-lg:
        0 30px 80px rgba(10, 30, 27, 0.18);

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;

    --container: 1200px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Tajawal",
        sans-serif;

    background: var(--cream);

    color: var(--text);

    line-height: 1.8;

    overflow-x: hidden;

}


body.modal-open {
    overflow: hidden;
}


img {
    max-width: 100%;
    display: block;
}


button,
input,
textarea {
    font-family: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


::selection {
    background: var(--primary);
    color: var(--white);
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        backdrop-filter .3s ease;

}


.header.scrolled {

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 5px 30px rgba(0,0,0,.08);

}


.navbar {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand img {

    width: 105px;

    height: auto;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 24px;

}


.nav-links a {

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    position: relative;

    transition: color .25s ease;

}


.header.scrolled .nav-links a {
    color: var(--primary);
}


.nav-links a::after {

    content: "";

    position: absolute;

    right: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .25s ease;

}


.nav-links a:hover::after {
    width: 100%;
}


.nav-booking {

    border: 0;

    background: var(--gold);

    color: var(--primary-dark);

    padding: 12px 23px;

    border-radius: 999px;

    font-weight: 800;

    font-size: 14px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.nav-booking:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(199,166,106,.28);

}


.mobile-menu-button {

    display: none;

    border: 0;

    background: transparent;

    width: 42px;
    height: 42px;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

}


.mobile-menu-button span {

    width: 25px;
    height: 2px;

    background: var(--white);

    display: block;

    transition: .25s ease;

}


.header.scrolled
.mobile-menu-button span {
    background: var(--primary);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    display: none;

    padding: 15px 20px 25px;

    background: rgba(255,255,255,.98);

    box-shadow:
        0 20px 30px rgba(0,0,0,.08);

}


.mobile-menu.active {
    display: flex;
    flex-direction: column;
}


.mobile-menu a {

    padding: 12px 0;

    color: var(--primary);

    font-weight: 600;

    border-bottom:
        1px solid var(--border);

}


.mobile-booking-button {

    margin-top: 15px;

    border: 0;

    background: var(--gold);

    color: var(--primary-dark);

    padding: 13px;

    border-radius: 12px;

    font-weight: 800;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

}


.hero-slider {

    position: absolute;

    inset: 0;

}


.hero-slide {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    opacity: 0;

    transform: scale(1.05);

    transition:
        opacity 1s ease,
        transform 6s ease;

}


.hero-slide.active {

    opacity: 1;

    transform: scale(1);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,30,27,.82),
            rgba(7,30,27,.5),
            rgba(7,30,27,.2)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


.hero-text {
    max-width: 720px;
}


.hero-kicker,
.section-kicker {

    display: inline-block;

    color: var(--gold);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .4px;

    margin-bottom: 12px;

}


.hero-kicker::before,
.section-kicker::before {

    content: "";

    display: inline-block;

    width: 25px;
    height: 2px;

    background: var(--gold);

    margin-left: 10px;

    vertical-align: middle;

}


.hero h1 {

    font-size:
        clamp(42px, 6vw, 78px);

    line-height: 1.15;

    font-weight: 900;

    margin-bottom: 22px;

}


.hero p {

    font-size: 18px;

    color: rgba(255,255,255,.84);

    max-width: 620px;

    margin-bottom: 30px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.primary-button {

    border: 0;

    background: var(--gold);

    color: var(--primary-dark);

    padding: 15px 28px;

    border-radius: 999px;

    font-size: 15px;

    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.primary-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(199,166,106,.3);

}


.glass-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 27px;

    border-radius: 999px;

    border:
        1px solid rgba(255,255,255,.4);

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    font-weight: 700;

    transition: .25s ease;

}


.glass-button:hover {

    background:
        rgba(255,255,255,.16);

    transform: translateY(-3px);

}


.hero-info {

    display: flex;

    gap: 15px;

    margin-top: 65px;

    flex-wrap: wrap;

}


.hero-info-item {

    min-width: 170px;

    padding: 16px 18px;

    border:
        1px solid rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(12px);

    border-radius: 16px;

    display: grid;

    grid-template-columns:
        auto 1fr;

    column-gap: 10px;

}


.hero-info-icon {

    grid-row: span 2;

    font-size: 22px;

}


.hero-info-item strong {

    font-size: 17px;

}


.hero-info-item > span:last-child {

    font-size: 11px;

    color: rgba(255,255,255,.7);

}


.slider-dots {

    position: absolute;

    bottom: 35px;

    right: 50%;

    transform: translateX(50%);

    display: flex;

    gap: 8px;

    z-index: 3;

}


.slider-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    border: 0;

    background:
        rgba(255,255,255,.4);

    transition: .25s ease;

}


.slider-dot.active {

    width: 28px;

    border-radius: 999px;

    background: var(--gold);

}


.hero-scroll {

    position: absolute;

    bottom: 28px;

    left: 35px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    color: rgba(255,255,255,.65);

    writing-mode: vertical-rl;

}


.scroll-arrow {
    color: var(--gold);
}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding: 110px 0;

}


.section-heading {

    margin-bottom: 55px;

}


.section-heading.centered {

    text-align: center;

    max-width: 700px;

    margin-inline: auto;

    margin-bottom: 55px;

}


.section-heading h2 {

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.25;

    color: var(--primary);

    margin-bottom: 12px;

}


.section-heading p {

    color: var(--text-light);

    font-size: 16px;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: var(--white);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.about-image {

    position: relative;

}


.about-image img {

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

}


.image-badge {

    position: absolute;

    bottom: 25px;

    right: 25px;

    padding: 16px 20px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.94);

    box-shadow: var(--shadow-sm);

    display: flex;

    flex-direction: column;

}


.image-badge strong {
    color: var(--primary);
}


.image-badge span {

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

}


.about-content h2 {

    font-size:
        clamp(35px, 4vw, 54px);

    line-height: 1.2;

    color: var(--primary);

    margin-bottom: 25px;

}


.about-content h2 span {
    color: var(--gold);
}


.about-content p {

    color: var(--text-light);

    margin-bottom: 18px;

}


.about-content .lead {

    color: var(--text);

    font-size: 18px;

}


.about-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;

}


.about-features div {

    padding: 12px 15px;

    background: var(--cream);

    border-radius: 12px;

    font-weight: 700;

    color: var(--primary);

}


.about-features span {

    color: var(--gold);

    margin-left: 7px;

}


/* =====================================================
   AMENITIES
===================================================== */

.amenities {

    background:
        linear-gradient(
            180deg,
            var(--cream),
            #f2eee4
        );

}


.amenities-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.amenity-card {

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 20px;

    padding: 30px 24px;

    min-height: 245px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.amenity-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color:
        rgba(199,166,106,.4);

}


.amenity-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(199,166,106,.13);

    border-radius: 16px;

    font-size: 27px;

    margin-bottom: 22px;

}


.amenity-card h3 {

    color: var(--primary);

    font-size: 19px;

    margin-bottom: 10px;

}


.amenity-card p {

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;

}


/* =====================================================
   GALLERY
===================================================== */

.gallery {

    background: var(--white);

}


.gallery-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

}


.gallery-heading > p {
    max-width: 350px;
}


.gallery-carousel {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

}


.gallery-track-wrapper {

    overflow: hidden;

    flex: 1;

}


.gallery-track {

    display: flex;

    gap: 15px;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1);

    direction: rtl;

}


.gallery-card {

    flex:
        0 0 calc(
            (100% - 30px) / 3
        );

    position: relative;

    border: 0;

    padding: 0;

    overflow: hidden;

    border-radius: 20px;

    background: var(--primary);

    aspect-ratio: 4 / 3;

}


.gallery-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.gallery-card:hover img {

    transform: scale(1.07);

}


.gallery-card span {

    position: absolute;

    bottom: 15px;

    right: 15px;

    background:
        rgba(0,0,0,.55);

    backdrop-filter: blur(8px);

    color: var(--white);

    padding: 7px 13px;

    border-radius: 999px;

    font-size: 12px;

}


.gallery-arrow {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .25s ease;

}


.gallery-arrow:hover {

    background: var(--gold);

    color: var(--primary-dark);

    transform: scale(1.05);

}


/* =====================================================
   PRICES
===================================================== */

.prices {

    background: var(--cream);

}


.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 24px;

    padding: 35px 25px;

    text-align: center;

    position: relative;

    transition: .3s ease;

}


.price-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


.price-card.featured {

    background: var(--primary);

    color: var(--white);

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}


.price-card.featured:hover {

    transform: translateY(-15px);

}


.price-card > span {

    display: block;

    font-weight: 700;

    color: var(--text-light);

    margin-bottom: 15px;

}


.price-card.featured > span {

    color: rgba(255,255,255,.75);

}


.price-card strong {

    display: block;

    color: var(--primary);

    font-size: 52px;

    line-height: 1;

}


.price-card.featured strong {
    color: var(--gold);
}


.price-card strong small {

    font-size: 15px;

    font-weight: 700;

}


.price-card p {

    margin-top: 12px;

    color: var(--text-light);

    font-size: 13px;

}


.price-card.featured p {
    color: rgba(255,255,255,.7);
}


.price-notes {

    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


.price-notes > div {

    background: var(--white);

    border-radius: 16px;

    padding: 18px;

    text-align: center;

    border:
        1px solid var(--border);

}


.price-notes span {

    display: block;

    color: var(--gold);

    font-size: 23px;

}


.price-notes strong {

    color: var(--primary);

}


.price-notes p {

    color: var(--text-light);

    font-size: 12px;

}


/* =====================================================
   TIMES
===================================================== */

.times {

    background: var(--primary);

    color: var(--white);

    padding: 35px 0;

}


.times-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.time-card {

    display: grid;

    grid-template-columns:
        auto 1fr;

    column-gap: 15px;

    align-items: center;

}


.time-icon {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.1);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

    grid-row: span 2;

}


.time-card span {

    color: rgba(255,255,255,.65);

    font-size: 12px;

}


.time-card strong {

    color: var(--gold-light);

}


/* =====================================================
   CALENDAR
===================================================== */

.calendar-section {

    background: var(--white);

}


.calendar-wrapper {

    max-width: 900px;

    margin-inline: auto;

    background: var(--cream);

    border-radius: 28px;

    padding: 30px;

    box-shadow: var(--shadow-sm);

    border:
        1px solid var(--border);

}


.calendar-top {

    display: grid;

    grid-template-columns:
        45px 1fr 45px;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}


.calendar-top button {

    width: 45px;
    height: 45px;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 30px;

}


.calendar-top h3 {

    text-align: center;

    color: var(--primary);

    font-size: 23px;

}


.calendar-weekdays {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 7px;

    margin-bottom: 8px;

}


.calendar-weekdays span {

    text-align: center;

    font-size: 12px;

    font-weight: 800;

    color: var(--text-light);

}


.calendar-days {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 7px;

}


.calendar-day {

    min-height: 85px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    transition: .2s ease;

}


button.calendar-day.available {

    cursor: pointer;

}


button.calendar-day.available:hover {

    transform: translateY(-2px);

    border-color: var(--success);

    box-shadow:
        0 6px 15px rgba(61,121,94,.12);

}


.calendar-day.booked {

    background:
        #e5e4df;

    color: #999;

    cursor: not-allowed;

}


.calendar-day.selected {

    background: var(--primary);

    color: var(--white);

    border-color: var(--primary);

}


.calendar-day.empty {

    background: transparent;

    border: 0;

}


.day-number {

    font-weight: 800;

    font-size: 17px;

}


.day-price {

    color: var(--success);

    font-size: 11px;

    font-weight: 700;

}


.calendar-day.selected
.day-price {

    color: var(--gold-light);

}


.booked-label {

    font-size: 10px;

    color: #888;

}


.calendar-legend {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 12px;

}


.calendar-legend div {

    display: flex;

    align-items: center;

    gap: 7px;

}


.legend-dot {

    width: 11px;
    height: 11px;

    border-radius: 50%;

}


.legend-dot.available {
    background: var(--success);
}


.legend-dot.booked {
    background: #999;
}


.legend-dot.selected {
    background: var(--primary);
}


/* =====================================================
   LOCATION
===================================================== */

.location {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);

}


.location-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.location h2 {

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.2;

    margin-bottom: 20px;

}


.location-content > p {

    color: rgba(255,255,255,.72);

    margin-bottom: 30px;

    max-width: 500px;

}


.map-button {

    display: inline-flex;

    align-items: center;

    padding: 14px 22px;

    background: var(--gold);

    color: var(--primary-dark);

    border-radius: 999px;

    font-weight: 800;

    transition: .25s ease;

}


.map-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.2);

}


.location-visual {

    min-height: 350px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(199,166,106,.2),
            rgba(255,255,255,.03)
        );

    border:
        1px solid rgba(255,255,255,.12);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

}


.location-pin {

    font-size: 65px;

    margin-bottom: 10px;

}


.location-visual strong {

    font-size: 24px;

}


.location-visual span {

    color: var(--gold-light);

}


/* =====================================================
   TERMS
===================================================== */

.terms {

    background: var(--cream);

}


.terms-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

}


.term {

    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 18px;

    padding: 22px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 17px;

    transition: .25s ease;

}


.term:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow-sm);

}


.term > span {

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background:
        rgba(24,63,58,.08);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    font-weight: 900;

}


.term h3 {

    color: var(--primary);

    font-size: 17px;

    margin-bottom: 5px;

}


.term p {

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.9;

}


.term.danger {

    border-right:
        3px solid rgba(165,75,69,.5);

}


.term.danger > span {

    color: var(--danger);

    background:
        rgba(165,75,69,.08);

}


.term.highlight {

    border:
        1px solid rgba(199,166,106,.55);

    background:
        linear-gradient(
            135deg,
            #fff,
            #faf5e9
        );

}


/* =====================================================
   CANCELLATION
===================================================== */

.cancellation-policy {

    margin-top: 70px;

    padding: 40px;

    background: var(--primary);

    border-radius: 30px;

    color: var(--white);

}


.cancellation-header {

    text-align: center;

    margin-bottom: 35px;

}


.cancellation-header h2 {

    font-size:
        clamp(26px, 3vw, 38px);

}


.cancellation-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.cancellation-card {

    padding: 25px;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 20px;

}


.cancellation-time {

    color: var(--gold-light);

    font-weight: 900;

    font-size: 14px;

    margin-bottom: 10px;

}


.cancellation-card h3 {

    font-size: 20px;

    margin-bottom: 10px;

}


.cancellation-card p {

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 12px;

}


.cancellation-card strong {

    display: block;

    color: var(--gold-light);

    font-size: 18px;

}


.cancellation-card > span {

    color: rgba(255,255,255,.62);

    font-size: 12px;

}


.terms-summary {

    margin-top: 25px;

    padding: 25px;

    border-radius: 18px;

    background:
        rgba(199,166,106,.1);

    border:
        1px solid rgba(199,166,106,.35);

}


.terms-summary strong {

    display: block;

    color: var(--gold);

    margin-bottom: 5px;

}


.terms-summary p {

    color: var(--text-light);

    font-size: 14px;

}


.cancellation-policy
.section-kicker {

    color: var(--gold-light);

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

    padding: 100px 0;

    text-align: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #214f49,
            #102e2a
        );

}


.final-cta span {

    color: var(--gold);

    font-weight: 800;

}


.final-cta h2 {

    font-size:
        clamp(32px, 5vw, 58px);

    line-height: 1.2;

    margin: 12px 0;

}


.final-cta p {

    color: rgba(255,255,255,.7);

    margin-bottom: 28px;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #0c2421;

    color: var(--white);

}


.footer-grid {

    padding: 70px 0;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 45px;

}


.footer-logo {

    width: 100px;

    margin-bottom: 18px;

}


.footer-grid p {

    color: rgba(255,255,255,.58);

    font-size: 13px;

}


.footer-grid h4 {

    color: var(--gold-light);

    margin-bottom: 15px;

}


.footer-grid a {

    display: block;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    margin-bottom: 8px;

    transition: .2s ease;

}


.footer-grid a:hover {

    color: var(--gold-light);

}


.footer-booking {

    margin-top: 8px;

    border: 0;

    background: var(--gold);

    color: var(--primary-dark);

    padding: 9px 15px;

    border-radius: 999px;

    font-weight: 800;

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.08);

    text-align: center;

    padding: 20px;

    color: rgba(255,255,255,.45);

    font-size: 11px;

}


/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background:
        rgba(5,15,14,.93);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 30px;

}


.lightbox.active {
    display: flex;
}


.lightbox img {

    max-width: min(1000px, 95vw);

    max-height: 88vh;

    object-fit: contain;

    border-radius: 15px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.4);

}


.lightbox > button {

    position: absolute;

    top: 25px;
    left: 30px;

    width: 45px;
    height: 45px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: var(--white);

    font-size: 30px;

}


/* =====================================================
   MODAL
===================================================== */

.modal {

    position: fixed;

    inset: 0;

    z-index: 2500;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(5,20,18,.72);

    backdrop-filter: blur(8px);

}


.modal.active {

    display: flex;

}


.modal-box {

    width: min(650px, 100%);

    max-height: 92vh;

    overflow-y: auto;

    background: var(--white);

    border-radius: 26px;

    box-shadow: var(--shadow-lg);

    padding: 30px;

    animation:
        modalIn .3s ease;

}


@keyframes modalIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.modal-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 25px;

}


.modal-header h2 {

    color: var(--primary);

    font-size: 32px;

}


.close-button {

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: var(--cream);

    color: var(--primary);

    font-size: 27px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group > label {

    display: block;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 7px;

}


.form-group label span {

    color: var(--danger);

}


.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {

    width: 100%;

    border:
        1px solid var(--border);

    background: #fafaf8;

    border-radius: 12px;

    padding: 13px 14px;

    outline: none;

    color: var(--text);

    transition: .2s ease;

}


.form-group textarea {

    min-height: 100px;

    resize: vertical;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(24,63,58,.08);

}


.field-help {

    display: block;

    margin-top: 5px;

    color: var(--text-light);

    font-size: 10px;

}


.booking-options {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

}


.booking-option {

    border:
        1px solid var(--border);

    padding: 15px;

    border-radius: 14px;

    cursor: pointer;

    transition: .2s ease;

}


.booking-option:has(input:checked) {

    border-color: var(--primary);

    background:
        rgba(24,63,58,.05);

}


.booking-option input {
    display: none;
}


.booking-option span {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.booking-option strong {

    color: var(--primary);

    font-size: 14px;

}


.booking-option small {

    color: var(--text-light);

    font-size: 10px;

}


.booking-price-preview {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    padding: 15px;

    background: var(--cream);

    border-radius: 15px;

    margin: 20px 0;

}


.booking-price-preview > div {

    text-align: center;

}


.booking-price-preview span {

    display: block;

    color: var(--text-light);

    font-size: 10px;

}


.booking-price-preview strong {

    color: var(--primary);

    font-size: 15px;

}


.booking-price-preview
.preview-total {

    grid-column: 1 / -1;

    border-top:
        1px solid var(--border);

    padding-top: 12px;

}


.booking-price-preview
.preview-total strong {

    color: var(--gold);

    font-size: 24px;

}


.deposit-note {

    padding: 15px;

    border-radius: 13px;

    background:
        rgba(199,166,106,.1);

    border:
        1px solid rgba(199,166,106,.25);

    margin-bottom: 18px;

}


.deposit-note strong {

    color: var(--primary);

    font-size: 13px;

}


.deposit-note p {

    color: var(--text-light);

    font-size: 11px;

    margin-top: 4px;

}


.terms-agreement {

    margin-bottom: 18px;

}


.terms-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

}


.terms-checkbox input {

    position: absolute;

    opacity: 0;

}


.custom-check {

    width: 20px;
    height: 20px;

    flex-shrink: 0;

    border:
        1px solid var(--border);

    border-radius: 6px;

    margin-top: 2px;

    position: relative;

}


.terms-checkbox input:checked
+ .custom-check {

    background: var(--primary);

    border-color: var(--primary);

}


.terms-checkbox input:checked
+ .custom-check::after {

    content: "✓";

    position: absolute;

    color: var(--white);

    font-size: 13px;

    left: 3px;
    top: -2px;

}


.terms-checkbox-text {

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.8;

}


.terms-checkbox-text a {

    color: var(--primary);

    font-weight: 800;

    text-decoration: underline;

}


.submit-button {

    width: 100%;

    border: 0;

    background: var(--primary);

    color: var(--white);

    padding: 15px;

    border-radius: 13px;

    font-weight: 800;

    font-size: 14px;

    transition: .25s ease;

}


.submit-button:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}


.form-note {

    text-align: center;

    color: var(--text-light);

    font-size: 10px;

    margin-top: 10px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .amenities-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 950px) {

    .nav-links,
    .nav-booking {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        max-width: 650px;
        margin-inline: auto;
    }

    .amenities-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-card {
        flex-basis:
            calc((100% - 15px) / 2);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .cancellation-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .section {
        padding: 75px 0;
    }

    .navbar {
        min-height: 70px;
    }

    .brand img {
        width: 88px;
    }

    .hero {
        min-height: 850px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-info {
        margin-top: 40px;
        display: grid;
        grid-template-columns:
            repeat(3, 1fr);
        gap: 7px;
    }

    .hero-info-item {
        min-width: 0;
        padding: 10px;
        display: block;
        text-align: center;
    }

    .hero-info-icon {
        display: none;
    }

    .hero-info-item strong {
        display: block;
        font-size: 13px;
    }

    .hero-info-item > span:last-child {
        display: block;
        font-size: 8px;
    }

    .hero-scroll {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-heading {
        display: block;
    }

    .gallery-heading p {
        margin-top: 10px;
    }

    .gallery-card {
        flex-basis: 100%;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-6px);
    }

    .price-notes {
        grid-template-columns: 1fr;
    }

    .times-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .calendar-wrapper {
        padding: 15px;
        border-radius: 20px;
    }

    .calendar-weekdays span {
        font-size: 8px;
    }

    .calendar-day {
        min-height: 62px;
        border-radius: 9px;
    }

    .day-number {
        font-size: 14px;
    }

    .day-price,
    .booked-label {
        font-size: 8px;
    }

    .calendar-legend {
        gap: 12px;
    }

    .location-visual {
        min-height: 280px;
    }

    .term {
        grid-template-columns:
            40px 1fr;
        gap: 10px;
        padding: 17px;
    }

    .term > span {
        width: 35px;
        height: 35px;
    }

    .cancellation-policy {
        padding: 25px 18px;
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .modal-box {
        padding: 20px;
        border-radius: 20px;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .booking-price-preview {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 430px) {

    .hero h1 {
        font-size: 35px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .glass-button {
        width: 100%;
    }

    .hero-info-item strong {
        font-size: 11px;
    }

    .hero-info-item > span:last-child {
        font-size: 7px;
    }

    .calendar-day {
        min-height: 55px;
    }

    .day-price {
        font-size: 7px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}
/* =========================================
   TIMES - LAPTOP / DESKTOP ONLY
========================================= */

@media (min-width: 701px) {

    .times .container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 20px;
    }

    .time-card {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        min-height: 100px;
        text-align: right;
    }

}