﻿/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

:root {
    --primary: #2c4a2e;
    --primary-light: #3d6a3f;
    --accent: #b88a4b;
    --accent-light: #d4b07a;
    --cream: #f5efe6;
    --dark: #2a2418;
    --text: #3b2e1e;
    --text-light: #6f7a5e;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.20);
    --radius: 18px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== DECORATIVE DIVIDERS ===== */
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 12px auto 24px;
    border-radius: 4px;
    position: relative;
}

    .section-divider::before,
    .section-divider::after {
        content: '✦';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: var(--accent);
        font-size: 0.7rem;
    }

    .section-divider::before {
        left: -20px;
    }

    .section-divider::after {
        right: -20px;
    }

.text-center .section-divider {
    margin: 12px auto 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a2a18;
    padding: 6px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .top-bar-left a {
        color: rgba(255, 255, 255, 0.75);
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }

        .top-bar-left a:hover {
            color: var(--accent);
        }

        .top-bar-left a i {
            font-size: 0.75rem;
            color: var(--accent);
        }

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

    .top-bar-location i {
        color: var(--accent);
    }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .top-bar-right a {
        color: rgba(255, 255, 255, 0.55);
        transition: var(--transition);
        font-size: 0.9rem;
        text-decoration: none;
    }

        .top-bar-right a:hover {
            color: var(--accent);
            transform: translateY(-1px);
        }

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0 0 10px 0;
}

    header .nav-wrapper {
        padding: 12px 0;
        transition: var(--transition);
        max-width: 1220px;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header.scrolled .nav-wrapper {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    header .top-bar {
        background: #1a2a18;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    header.scrolled {
        background: rgba(30, 43, 28, 0.94);
        backdrop-filter: blur(14px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

        header.scrolled .top-bar {
            background: #1a2a18;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

/* ===== LOGO ===== */
.logo-link {
    display: flex;
    align-items: center;
    height: 50px;
}

    .logo-link img {
        height: 90px;
        width: auto;
        transition: opacity 0.3s ease;
    }

.logo-default {
    display: block;
}

.logo-scrolled {
    display: none;
}

header.scrolled .logo-default {
    display: none;
}

header.scrolled .logo-scrolled {
    display: block;
}

/* ===== NAVIGATION LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: var(--dark);
        font-weight: 500;
        font-size: 0.95rem;
        transition: var(--transition);
        position: relative;
        text-decoration: none;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

header.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

    header.scrolled .nav-links a:hover {
        color: var(--white);
    }

.nav-cta {
    background: var(--accent);
    color: var(--dark) !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: #d4943e !important;
        color: var(--dark) !important;
    }

header.scrolled .nav-cta {
    color: var(--dark) !important;
}

    header.scrolled .nav-cta:hover {
        color: var(--dark) !important;
    }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--dark);
        border-radius: 4px;
        transition: var(--transition);
    }

header.scrolled .hamburger span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(184, 138, 75, 0.35);
}

    .btn-primary:hover {
        background: #a0743a;
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(184, 138, 75, 0.45);
    }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white);
    transition: var(--transition);
    cursor: pointer;
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--dark);
        transform: translateY(-3px);
    }

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white);
    transition: var(--transition);
    cursor: pointer;
}

    .btn-outline-white:hover {
        background: var(--white);
        color: var(--dark);
        transform: translateY(-3px);
    }

/* ===== ROOM ACTION BUTTONS ===== */
.room-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

    .room-actions .btn-primary {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: 120px;
    }

.btn-details {
    flex: 1;
    background: var(--primary-light);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
}

    .btn-details:hover {
        background: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 4px 16px rgba(45, 90, 39, 0.3);
    }

/* ===== PLACE DETAILS BUTTON ===== */
.btn-place-details {
    background: var(--accent);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-place-details:hover {
        background: #a0743a;
        transform: translateX(4px);
    }

    .btn-place-details i {
        transition: var(--transition);
    }

    .btn-place-details:hover i {
        transform: translateX(4px);
    }

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, rgba(20, 30, 18, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(20, 30, 18, 0.7) 100%);
        z-index: 1;
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    width: 90%;
    padding: 20px;
    animation: fadeUp 1.2s ease forwards;
}

    .hero-content .badge {
        display: inline-block;
        background: rgba(184, 138, 75, 0.25);
        backdrop-filter: blur(6px);
        padding: 6px 22px;
        border-radius: 50px;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        border: 1px solid rgba(255, 255, 255, 0.12);
        margin-bottom: 18px;
        font-weight: 500;
    }

        .hero-content .badge i {
            margin-right: 6px;
        }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.6rem, 8vw, 4.8rem);
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 18px;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

        .hero-content h1 span {
            color: var(--accent);
            font-style: italic;
        }

    .hero-content p {
        font-size: clamp(1rem, 1.6vw, 1.25rem);
        opacity: 0.92;
        max-width: 600px;
        margin: 0 auto 32px;
        line-height: 1.8;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .hero-content .btn-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

.hero-pine-decoration {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

    .hero-pine-decoration span {
        font-size: 2.5rem;
        color: rgba(255, 255, 255, 0.15);
    }

    .hero-pine-decoration .pine-left {
        transform: rotate(-10deg);
    }

    .hero-pine-decoration .pine-right {
        transform: rotate(10deg) scaleX(-1);
    }

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

    .slider-dot.active {
        background: var(--accent);
        transform: scale(1.25);
        box-shadow: 0 0 20px rgba(184, 138, 75, 0.5);
    }

    .slider-dot:hover {
        background: rgba(255, 255, 255, 0.7);
    }

.slider-arrow {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

    .slider-arrow:hover {
        background: var(--accent);
        color: var(--dark);
        border-color: var(--accent);
    }

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

    .section-label i {
        margin-right: 6px;
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

    .section-title span {
        color: var(--accent);
        font-style: italic;
    }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT ===== */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: var(--transition);
    }

    .about-image:hover img {
        transform: scale(1.02);
    }

    .about-image .tag {
        position: absolute;
        bottom: 24px;
        left: 24px;
        background: var(--accent);
        color: var(--dark);
        padding: 6px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
    }

.about-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1rem;
}

    .about-text p strong {
        color: var(--text);
    }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 24px 0 32px;
}

    .about-features li {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
    }

        .about-features li i {
            color: var(--accent);
            font-size: 1.1rem;
        }

/* ===== HOST SECTION ===== */
#host {
    background: var(--cream);
    padding: 80px 0;
}

.host-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.host-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.host-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .host-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.host-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .host-badge i {
        font-size: 0.9rem;
    }

.host-message {
    padding: 28px 30px 32px;
}

    .host-message h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        margin-bottom: 14px;
        color: var(--dark);
    }

        .host-message h3 span {
            color: var(--accent);
        }

    .host-message p {
        color: var(--text-light);
        margin-bottom: 14px;
        font-size: 0.95rem;
        line-height: 1.8;
    }

        .host-message p strong {
            color: var(--text);
        }

.host-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--cream);
}

    .host-signature span {
        font-family: 'Dancing Script', cursive;
        font-size: 1.3rem;
        color: var(--dark);
        font-weight: 600;
    }

.host-social {
    display: flex;
    gap: 12px;
}

    .host-social a {
        color: var(--text-light);
        transition: var(--transition);
        font-size: 1.1rem;
    }

        .host-social a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

.why-choose {
    padding-top: 4px;
}

    .why-choose .section-title {
        margin-bottom: 4px;
    }

.why-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 28px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    padding: 16px 18px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

    .why-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.why-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: var(--accent);
    color: var(--white);
}

.why-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.why-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.why-cta {
    margin-top: 28px;
}

    .why-cta .btn-primary i {
        margin-left: 8px;
        transition: var(--transition);
    }

    .why-cta .btn-primary:hover i {
        transform: translateX(4px);
    }

/* ===== NATURE SECTION ===== */
#nature {
    background: var(--white);
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.nature-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

    .nature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

.nature-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .nature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.nature-card:hover .nature-image img {
    transform: scale(1.05);
}

.nature-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(30, 43, 28, 0.85);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .nature-badge i {
        margin-right: 4px;
        color: var(--accent);
    }

.nature-body {
    padding: 22px 24px 26px;
}

    .nature-body h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 6px;
        color: var(--dark);
    }

    .nature-body p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

.nature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .nature-tags span {
        background: var(--white);
        padding: 3px 12px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 500;
        color: var(--text-light);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

        .nature-tags span i {
            color: var(--accent);
            margin-right: 4px;
        }

/* ===== OFFERS ===== */
#offers {
    padding: 0;
}

.offers-bg {
    background-image: url('assets/img/banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

    .offers-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(20, 30, 18, 0.75);
    }

.offers-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.offers-badge {
    display: inline-block;
    background: rgba(184, 138, 75, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    font-weight: 500;
}

    .offers-badge i {
        margin-right: 6px;
    }

.offers-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 12px;
}

    .offers-content h2 span {
        color: var(--accent);
        font-style: italic;
    }

.offers-content > p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 30px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

    .offer-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.14);
    }

    .offer-card i {
        font-size: 2.4rem;
        color: var(--accent);
        margin-bottom: 12px;
    }

    .offer-card h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .offer-card p {
        font-size: 0.95rem;
        opacity: 0.85;
        line-height: 1.6;
    }

        .offer-card p strong {
            color: var(--accent);
        }

.offers-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PLACES OF INTEREST ===== */
#places {
    background: var(--cream);
    padding: 80px 0;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.place-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
}

    .place-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

    .place-card .place-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

        .place-card .place-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

    .place-card:hover .place-image img {
        transform: scale(1.05);
    }

    .place-card .place-body {
        padding: 22px 24px 26px;
    }

        .place-card .place-body h5 {
            font-size: 1.15rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
            color: var(--dark);
        }

            .place-card .place-body h5 i {
                color: var(--accent);
                font-size: 1.2rem;
            }

        .place-card .place-body p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .place-card .place-body .distance {
            display: inline-block;
            font-size: 0.8rem;
            background: var(--cream);
            padding: 4px 16px;
            border-radius: 50px;
            font-weight: 500;
            color: var(--text-light);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        }

/* ============================================================= */
/* ===== SIGHTSEEING SERVICES ===== */
/* ============================================================= */

#sightseeing {
    background: var(--white);
    padding: 80px 0;
}

/* ---- Highlight Box ---- */
.sightseeing-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--cream);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.6rem;
}

.highlight-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.highlight-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

    .highlight-text p strong {
        color: var(--text);
    }

/* ---- Tabs ---- */
.sightseeing-tabs {
    margin-top: 20px;
}

.tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--cream);
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-btn {
    padding: 16px 28px;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    flex: 1;
    text-align: center;
    min-width: 200px;
}

    .tab-btn i {
        margin-right: 8px;
        color: var(--accent);
    }

    .tab-btn:hover {
        background: var(--cream);
        color: var(--dark);
    }

    .tab-btn.active {
        color: var(--dark);
        background: var(--cream);
        border-bottom-color: var(--accent);
    }

        .tab-btn.active i {
            color: var(--accent);
        }

/* ---- Tab Panes ---- */
.tab-content {
    background: var(--cream);
    padding: 30px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}
    /* Show active pane */
    .tab-pane.active {
        display: block;
    }
        /* BUT when the active pane also has .sightseeing-grid, use grid */
        .tab-pane.active.sightseeing-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }
/* Grid styles for all sightseeing grids */
.sightseeing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Sightseeing Cards ---- */
.sightseeing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

    .sightseeing-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

    .sightseeing-card .sightseeing-image {
        width: 100%;
        height: 180px;
        overflow: hidden;
        position: relative;
    }

        .sightseeing-card .sightseeing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

    .sightseeing-card:hover .sightseeing-image img {
        transform: scale(1.04);
    }

    .sightseeing-card .sightseeing-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(30, 43, 28, 0.8);
        backdrop-filter: blur(4px);
        color: var(--white);
        padding: 3px 12px;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .sightseeing-card .sightseeing-body {
        padding: 16px 20px 20px;
    }

        .sightseeing-card .sightseeing-body h5 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .sightseeing-card .sightseeing-body .sightseeing-location {
            font-size: 0.8rem;
            color: var(--accent);
            margin-bottom: 6px;
            font-weight: 500;
        }

            .sightseeing-card .sightseeing-body .sightseeing-location i {
                margin-right: 4px;
            }

        .sightseeing-card .sightseeing-body p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .sightseeing-card .sightseeing-body .sightseeing-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

            .sightseeing-card .sightseeing-body .sightseeing-tags span {
                background: var(--cream);
                padding: 2px 10px;
                border-radius: 50px;
                font-size: 0.65rem;
                font-weight: 500;
                color: var(--text-light);
                box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
            }

                .sightseeing-card .sightseeing-body .sightseeing-tags span i {
                    color: var(--accent);
                    margin-right: 4px;
                }

        .sightseeing-card .sightseeing-body .btn-sightseeing-details {
            margin-top: 12px;
            background: none;
            border: none;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0;
            transition: var(--transition);
        }

            .sightseeing-card .sightseeing-body .btn-sightseeing-details:hover {
                color: #a0743a;
                gap: 10px;
            }

/* ---- CTA ---- */
.sightseeing-cta {
    margin-top: 40px;
}

/* ============================================================= */
/* ===== ROOMS ===== */
/* ============================================================= */

#rooms {
    background: var(--cream);
    padding: 80px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .room-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

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

    .room-card .body {
        padding: 24px 26px 28px;
    }

        .room-card .body h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            margin-bottom: 6px;
            color: var(--dark);
        }

        .room-card .body .price {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

            .room-card .body .price small {
                font-weight: 400;
                color: var(--text-light);
                font-size: 0.9rem;
            }

        .room-card .body p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 16px;
        }

        .room-card .body .amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

            .room-card .body .amenities span {
                background: var(--cream);
                padding: 4px 14px;
                border-radius: 50px;
                font-size: 0.8rem;
                font-weight: 500;
                color: var(--text-light);
            }

/* ===== GALLERY ===== */
#gallery {
    background: var(--white);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

    .gallery-grid .gallery-item {
        border-radius: var(--radius);
        overflow: hidden;
        position: relative;
        cursor: pointer;
        aspect-ratio: 1 / 1;
    }

        .gallery-grid .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-grid .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-grid .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(30, 43, 28, 0.45);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            gap: 4px;
        }

            .gallery-grid .gallery-item .overlay i {
                font-size: 1.8rem;
            }

            .gallery-grid .gallery-item .overlay span {
                font-size: 0.75rem;
                letter-spacing: 1px;
                text-transform: uppercase;
                font-weight: 500;
            }

        .gallery-grid .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-grid .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

/* ===== REVIEWS ===== */
#reviews {
    background: var(--cream);
    padding: 60px 0;
}

.reviews-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow);
    text-align: center;
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

    .review-stars i {
        color: #f4b400;
        font-size: 1.4rem;
    }

    .review-stars .rating {
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--dark);
        margin-left: 8px;
    }

.review-text {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
}

.review-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
    border-radius: 4px;
}

.review-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.qr-code {
    flex-shrink: 0;
}

    .qr-code img {
        width: 110px;
        height: 110px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

.qr-text {
    text-align: left;
}

    .qr-text h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .qr-text p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

/* ===== CONTACT ===== */
#contact {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

    #contact .section-title {
        color: var(--white);
    }

    #contact .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 10px;
}

.contact-info h4 {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 460px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

    .contact-detail i {
        width: 44px;
        height: 44px;
        background: rgba(184, 138, 75, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .contact-detail .text {
        font-size: 0.95rem;
    }

        .contact-detail .text strong {
            color: var(--white);
        }

.map-container {
    margin-top: 16px;
}

    .map-container iframe {
        border-radius: 12px;
        filter: brightness(0.85) contrast(1.1);
    }

/* ===== BOOKING FORM ===== */
.booking-form {
    background: rgba(255, 255, 255, 0.06);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .booking-form .form-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 4px;
    }

    .booking-form .form-subtitle {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 4px;
    }

    .form-group .required {
        color: #ff6b6b;
        font-weight: 700;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
        font-size: 0.95rem;
        transition: var(--transition);
        font-family: 'Inter', sans-serif;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
        }

        .form-group input[type="date"] {
            color-scheme: dark;
        }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        cursor: pointer;
    }

        .form-group select option {
            background: var(--dark);
            color: var(--white);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 80px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

    .form-row .form-group {
        margin-bottom: 0;
    }

.radio-group {
    display: flex;
    gap: 24px;
    padding-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    cursor: pointer;
}

    .radio-label input[type="radio"] {
        width: 18px;
        height: 18px;
        accent-color: var(--accent);
        cursor: pointer;
    }

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

    .form-submit i {
        font-size: 1.3rem;
    }

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

    .modal-overlay.active {
        display: flex;
    }

.modal-box {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

    .modal-close:hover {
        background: var(--accent);
        color: var(--white);
    }

.modal-content {
    padding: 0;
}

.modal-slider {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--dark);
    border-radius: var(--radius) var(--radius) 0 0;
}

.modal-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

    .modal-slide.active {
        opacity: 1;
    }

    .modal-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-arrow:hover {
        background: var(--accent);
        color: var(--dark);
    }

    .modal-arrow.prev {
        left: 12px;
    }

    .modal-arrow.next {
        right: 12px;
    }

.modal-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.modal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

    .modal-dot.active {
        background: var(--accent);
        transform: scale(1.3);
    }

    .modal-dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

.modal-info {
    padding: 30px 36px 36px;
}

    .modal-info h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 4px;
    }

    .modal-info .modal-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 18px;
    }

        .modal-info .modal-price span {
            font-weight: 400;
            color: var(--text-light);
            font-size: 0.95rem;
        }

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
    margin: 20px 0 18px;
    background: var(--cream);
    padding: 20px 24px;
    border-radius: var(--radius);
}

    .modal-details-grid div {
        font-size: 0.95rem;
    }

    .modal-details-grid strong {
        color: var(--dark);
        display: block;
        font-weight: 600;
        margin-bottom: 2px;
    }

.modal-others {
    margin: 16px 0 24px;
}

    .modal-others strong {
        font-weight: 600;
        color: var(--dark);
    }

    .modal-others p {
        color: var(--text-light);
        margin-top: 4px;
        font-size: 0.95rem;
    }

.modal-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

    .modal-actions .btn-primary {
        flex: 1;
        text-align: center;
        min-width: 140px;
    }

    .modal-actions .modal-close-btn {
        background: var(--text-light);
        color: var(--white);
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        font-size: 0.95rem;
    }

        .modal-actions .modal-close-btn:hover {
            background: var(--dark);
        }

/* ===== FOOTER ===== */
footer {
    background: #141f13;
    color: rgba(255, 255, 255, 0.6);
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .footer-grid .copy {
        font-size: 0.9rem;
    }

.footer-tagline {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

    .footer-tagline i {
        color: var(--accent);
        margin-right: 4px;
    }

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

    .footer-socials a {
        color: rgba(255, 255, 255, 0.5);
        transition: var(--transition);
        font-size: 1.2rem;
    }

        .footer-socials a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

    .footer-credit a {
        color: var(--accent);
        font-weight: 500;
        transition: var(--transition);
    }

        .footer-credit a:hover {
            color: var(--white);
            text-decoration: underline;
        }

/* ============================================================= */
/* ===== RESPONSIVE ===== */
/* ============================================================= */

@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

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

        .gallery-grid .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

    .host-section {
        gap: 40px;
    }

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

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

        .gallery-grid .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 1;
        }

    .modal-slider {
        height: 260px;
    }

    .modal-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
        padding: 16px;
    }

    .modal-info {
        padding: 24px 20px 28px;
    }

    .host-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .host-image {
        height: 250px;
    }

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

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

    .review-card {
        padding: 30px 24px;
    }

    .review-qr {
        flex-direction: column;
        text-align: center;
    }

    .qr-text {
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .booking-form {
        padding: 24px 18px;
    }

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

    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-bar-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 4px 12px;
    }

    .top-bar-left {
        justify-content: center;
        gap: 12px;
        font-size: 0.7rem;
        flex-wrap: wrap;
    }

    .top-bar-right {
        gap: 10px;
        display: none;
    }

        .top-bar-right a {
            font-size: 0.8rem;
        }

    .top-bar-divider {
        display: none;
    }

    .top-bar-location {
        font-size: 0.65rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px 32px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
        margin: 0;
    }

        .nav-links.open {
            right: 0;
        }

        .nav-links a {
            font-size: 1.2rem;
            color: var(--dark) !important;
        }

    header.scrolled .nav-links {
        background: var(--dark);
    }

        header.scrolled .nav-links a {
            color: rgba(255, 255, 255, 0.85) !important;
        }

            header.scrolled .nav-links a:hover {
                color: var(--white) !important;
            }

        header.scrolled .nav-links .nav-cta {
            color: var(--dark) !important;
        }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-content .btn-group {
        flex-direction: column;
        align-items: center;
    }

        .hero-content .btn-group .btn-primary,
        .hero-content .btn-group .btn-outline {
            width: 100%;
            text-align: center;
        }

    .slider-controls {
        bottom: 24px;
        gap: 8px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    section {
        padding: 56px 0;
    }

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

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .logo-link img {
        height: 40px;
    }

    .hamburger span {
        background: var(--dark);
    }

    header.scrolled .hamburger span {
        background: var(--white);
    }

    .room-actions {
        flex-direction: column;
    }

        .room-actions .btn-primary,
        .room-actions .btn-details {
            width: 100%;
            text-align: center;
        }

    .modal-slider {
        height: 200px;
    }

    .modal-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 14px;
    }

    .modal-info {
        padding: 20px 16px 24px;
    }

    .modal-actions {
        flex-direction: column;
    }

        .modal-actions .btn-primary,
        .modal-actions .modal-close-btn {
            width: 100%;
            text-align: center;
        }

    .modal-close {
        top: 10px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    #host {
        padding: 56px 0;
    }

    .host-image {
        height: 220px;
    }

    .host-message {
        padding: 22px 20px 26px;
    }

        .host-message h3 {
            font-size: 1.3rem;
        }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-item {
        padding: 14px 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offers-cta {
        flex-direction: column;
        align-items: center;
    }

        .offers-cta .btn-primary,
        .offers-cta .btn-outline-white {
            width: 100%;
            text-align: center;
        }

    .review-card {
        padding: 24px 18px;
    }

    .review-stars i {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .qr-code img {
        width: 90px;
        height: 90px;
    }

    .footer-right {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-credit {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-form {
        padding: 20px 14px;
    }

    header .nav-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .hero-pine-decoration {
        display: none;
    }

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

    .place-card .place-image {
        height: 160px;
    }

    /* ---- Sightseeing Mobile ---- */
    .tab-btn {
        flex: 1 1 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .tab-headers {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .tab-content {
        padding: 16px;
    }

    .sightseeing-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .tab-pane.active.sightseeing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar-left a:not(:first-child) {
        display: none;
    }

    .top-bar-left a:first-child {
        font-size: 0.7rem;
    }

    .top-bar-wrapper {
        padding: 3px 8px;
    }

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

        .gallery-grid .gallery-item {
            aspect-ratio: 1/1;
        }

            .gallery-grid .gallery-item:first-child {
                grid-column: span 2;
            }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .modal-slider {
        height: 180px;
    }

    .modal-details-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .host-image {
        height: 200px;
    }

    .host-message h3 {
        font-size: 1.2rem;
    }

    .host-signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .radio-group {
        flex-direction: column;
        gap: 8px;
    }

    header .nav-wrapper {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .places-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .place-card .place-image {
        height: 180px;
    }

    .tab-pane.active.sightseeing-grid {
        grid-template-columns: 1fr;
    }
}
