/* ============================================
   HOLIDAY HOME DORA - Stylesheet
   ============================================ */

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

:root {
    --primary: #2c6e49;
    --primary-dark: #1e4d34;
    --primary-light: #4c956c;
    --accent: #d4a373;
    --accent-light: #e9c89b;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --bg: #fefefe;
    --bg-alt: #f8f6f3;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--dark);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Defaults ---- */
.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(44, 110, 73, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--white);
    background: rgba(255,255,255,0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

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

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 110, 73, 0.3);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--accent-light);
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.navbar.scrolled .nav-logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-menu a {
    color: var(--text);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary);
    background: rgba(44, 110, 73, 0.08);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 8px 16px !important;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---- Language Switcher ---- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.lang-flag {
    width: 17px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

.lang-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.12);
}

.lang-btn.lang-active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-weight: 700;
}

.navbar.scrolled .lang-btn {
    color: var(--text-light);
    border-color: #ddd;
}

.navbar.scrolled .lang-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(44, 110, 73, 0.06);
}

.navbar.scrolled .lang-btn.lang-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: #ffd700;
    margin-right: 4px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 300;
}

.hero-location {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 32px;
}

.hero-location i {
    color: var(--accent-light);
    margin-right: 6px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features span {
    font-size: 14px;
    background: rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-features i {
    margin-right: 6px;
    color: var(--accent-light);
}

.hero-slider-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

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

.slider-dot.active {
    background: var(--white);
    border-color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

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

.about-text .lead {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.highlight i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.highlight span {
    font-size: 13px;
    color: var(--text-light);
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   REVIEWS SLIDER
   ============================================ */
.reviews-section {
    background: var(--bg-alt);
}

.reviews-slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-overflow {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.review-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-meta strong {
    font-size: 0.95rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.review-meta span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.review-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #003580;
    color: var(--white);
    border-radius: 8px;
    padding: 6px 10px;
    flex-shrink: 0;
}

.review-score-num {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.review-score-lbl {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.review-stars {
    display: flex;
    gap: 3px;
    font-size: 0.78rem;
    color: #FFD700;
}

.review-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.4;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.review-source {
    font-size: 0.78rem;
    color: #0057b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: 4px;
}

.reviews-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e0e0e0;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.reviews-nav-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.reviews-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.reviews-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .review-card {
        flex: 0 0 100%;
    }
    .reviews-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    background: var(--bg-alt);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 24px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.gallery-filter:hover,
.gallery-filter.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* ---- Gallery Slider ---- */
.gallery-slider-wrap {
    margin-top: 40px;
}

.gallery-main {
    position: relative;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.gallery-main-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-main-img.fading {
    opacity: 0;
}

.gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #333;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.gal-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.gal-arrow-prev { left: 20px; }
.gal-arrow-next { right: 20px; }

.gal-counter {
    position: absolute;
    bottom: 16px;
    right: 18px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.82rem;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.gal-alt-label {
    position: absolute;
    bottom: 16px;
    left: 18px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.82rem;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-thumbs-outer {
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f0f0f0;
    padding-bottom: 4px;
}

.gallery-thumbs-outer::-webkit-scrollbar { height: 4px; }
.gallery-thumbs-outer::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
.gallery-thumbs-outer::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 2px 0;
    width: max-content;
}

.gallery-thumb {
    flex: 0 0 110px;
    height: 72px;
    cursor: pointer;
    border-radius: 7px;
    overflow: hidden;
    border: 2.5px solid transparent;
    transition: border-color 0.2s, transform 0.15s, opacity 0.15s;
    opacity: 0.65;
    line-height: 0;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================
   AMENITIES
   ============================================ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(44, 110, 73, 0.1), rgba(76, 149, 108, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}

.amenity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
    background: var(--bg-alt);
}

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

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

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

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-info {
    padding: 24px;
}

.room-info h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.room-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.room-info p i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

/* ---- Room card hover overlay ---- */
.room-card {
    cursor: pointer;
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 110, 73, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    border-radius: 0;
}

.room-image {
    position: relative;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

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

/* ============================================
   ROOM MODAL
   ============================================ */
.room-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.room-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

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

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.room-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.room-modal-close:hover {
    background: rgba(0,0,0,0.8);
}

.room-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.room-modal-gallery {
    position: relative;
}

.room-modal-gallery > img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 0;
    display: block;
}

.room-modal-thumbs {
    display: flex;
    gap: 6px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 0 0 0 var(--radius-lg);
    flex-wrap: wrap;
}

.room-modal-thumbs img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
}

.room-modal-thumbs img.active,
.room-modal-thumbs img:hover {
    opacity: 1;
    border-color: var(--primary);
}

.room-modal-details {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.room-modal-details h2 {
    font-size: 1.6rem;
    color: var(--dark);
}

.room-modal-details p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.room-modal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 4px 0;
}

.room-modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    padding: 8px 12px;
    background: var(--bg-alt);
    border-radius: 8px;
}

.room-modal-features li i {
    color: var(--primary);
    width: 18px;
    text-align: center;
    font-size: 15px;
}

.room-modal-btn {
    margin-top: 8px;
    align-self: flex-start;
}

@media (max-width: 680px) {
    .room-modal-inner {
        grid-template-columns: 1fr;
    }
    .room-modal-gallery > img {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        height: 240px;
    }
    .room-modal-thumbs {
        border-radius: 0;
    }
    .room-modal-details {
        padding: 24px 20px;
    }
}

/* ============================================
   LOCATION
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.location-card h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h3 i {
    font-size: 1.1rem;
}

.location-card ul {
    list-style: none;
}

.location-card li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.location-card li:last-child {
    border-bottom: none;
}

.location-card li span:last-child {
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 12px;
}

.address-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 18px 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.address-banner > i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.address-banner > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.address-banner > div strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.address-banner > div span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-outline-sm:hover {
    background: var(--primary);
    color: var(--white);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

.map-footer {
    text-align: right;
    padding: 8px 12px;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.map-footer a {
    font-size: 0.8rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition);
}

.map-footer a:hover {
    color: var(--primary);
}

/* ============================================
   BOOKING RATING BADGE
   ============================================ */
.booking-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    border-radius: var(--radius);
    color: var(--white);
    max-width: 380px;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 8px 14px;
    flex-shrink: 0;
}

.rating-score {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.rating-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.rating-info {
    flex: 1;
}

.rating-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.rating-info span {
    font-size: 0.78rem;
    opacity: 0.8;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.7rem;
    color: #FFD700;
    flex-shrink: 0;
}

.rating-stars i {
    display: block;
}

/* ============================================
   FULL AMENITIES LIST
   ============================================ */
.amenities-full {
    background: var(--bg);
    padding-top: 0 !important;
}

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

.amenity-cat {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-light);
}

.amenity-cat h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-cat h4 i {
    color: var(--primary);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.amenity-cat ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenity-cat ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--text);
}

.amenity-cat ul li i {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .amenities-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RULES
   ============================================ */
.rules {
    background: var(--bg-alt);
}

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

.rule-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.rule-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(44, 110, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.rule-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.rule-card p {
    font-size: 15px;
    color: var(--text);
}

.rule-card small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(44, 110, 73, 0.85));
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.contact-content p {
    opacity: 0.9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    width: 260px;
    max-width: 100%;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--accent-light);
}

.contact-card strong {
    font-size: 1rem;
}

.contact-card span {
    font-size: 13px;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand h3 span {
    color: var(--accent);
}

.footer-brand p {
    font-size: 14px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-lang {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    opacity: 0.5;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(44, 110, 73, 0.3);
    transition: var(--transition);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow var(--transition);
}

.faq-item.open {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
    background: rgba(44,110,73,0.04);
    color: var(--primary-dark);
}

.faq-item.open .faq-question {
    color: var(--primary-dark);
    background: rgba(44,110,73,0.05);
    border-bottom: 1px solid rgba(44,110,73,0.1);
}

.faq-question i {
    font-size: 0.78rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.28s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.28s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 14px 22px 18px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

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

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(4px);
}

.booking-modal-content {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 920px;
    max-height: 94vh;
    overflow-y: auto;
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    animation: bookingIn 0.28s ease;
}

@keyframes bookingIn {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

.booking-modal-close:hover {
    background: rgba(0,0,0,0.22);
}

.booking-modal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 520px;
}

/* ---- Info Panel ---- */
.booking-info-panel {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    padding: 32px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--white);
}

.booking-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.3;
}

.booking-info-title span { color: var(--accent-light); }

.booking-info-img {
    border-radius: 10px;
    overflow: hidden;
    height: 130px;
    flex-shrink: 0;
}

.booking-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.booking-info-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    opacity: 0.92;
}

.booking-info-list li i {
    color: var(--accent-light);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.booking-info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.13);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: auto;
}

.booking-info-score {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    line-height: 1;
}

.booking-info-badge div strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.booking-info-badge div small {
    font-size: 0.72rem;
    opacity: 0.7;
}

/* ---- Form Panel ---- */
.booking-form-panel {
    padding: 32px 34px;
    display: flex;
    flex-direction: column;
}

.booking-form-panel h2 {
    font-size: 1.55rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.booking-form-sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 22px;
}

.booking-dates-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 8px;
    margin-bottom: 12px;
}

.booking-dates-sep {
    display: flex;
    align-items: center;
    padding-bottom: 11px;
    color: #bbb;
    font-size: 0.85rem;
}

.booking-nights-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(44,110,73,0.08);
    border: 1px solid rgba(44,110,73,0.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.booking-nights-bar i { color: var(--primary); }

/* ---- Form fields ---- */
.bform-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 13px;
}

.bform-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.bform-field label i {
    color: var(--primary);
    font-size: 0.78rem;
    width: 14px;
    text-align: center;
}

.bform-field input,
.bform-field select,
.bform-field textarea {
    padding: 10px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.bform-field input:focus,
.bform-field select:focus,
.bform-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,110,73,0.1);
}

.bform-field input.bfield-error,
.bform-field select.bfield-error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.bform-field input[readonly] {
    cursor: pointer;
    background: #fafafa;
}

.bform-field textarea {
    resize: vertical;
    min-height: 68px;
}

.bform-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Submit button */
.booking-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.97rem;
    margin-top: 4px;
    margin-bottom: 10px;
}

.booking-privacy-note {
    font-size: 0.73rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.booking-privacy-note i { color: var(--primary); }

/* Error bar */
.booking-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #c53030;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

/* ---- Success View ---- */
.booking-success-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 40px 20px;
    height: 100%;
    min-height: 420px;
}

.booking-success-icon {
    font-size: 4.5rem;
    color: var(--primary);
    line-height: 1;
}

.booking-success-view h3 {
    font-size: 1.4rem;
    color: var(--dark);
}

.booking-success-view p {
    font-size: 0.92rem;
    color: var(--text-light);
    max-width: 320px;
    line-height: 1.6;
}

/* ---- Flatpickr overrides ---- */
.flatpickr-calendar {
    font-family: 'Inter', sans-serif !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14) !important;
}

.flatpickr-months { border-radius: 12px 12px 0 0; }

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
    background: var(--primary) !important;
    color: rgba(255,255,255,0.85) !important;
    fill: rgba(255,255,255,0.85) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: rgba(255,255,255,0.85) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--accent-light) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--white) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.flatpickr-day.inRange {
    background: rgba(44,110,73,0.12) !important;
    border-color: transparent !important;
    box-shadow: -5px 0 0 rgba(44,110,73,0.12), 5px 0 0 rgba(44,110,73,0.12) !important;
}

.flatpickr-day:hover:not(.selected):not(.startRange):not(.endRange) {
    background: rgba(44,110,73,0.12) !important;
    border-color: transparent !important;
}

.flatpickr-day.today:not(.selected) {
    border-color: var(--primary) !important;
}

/* ---- Booking modal responsive ---- */
@media (max-width: 720px) {
    .booking-modal-grid {
        grid-template-columns: 1fr;
    }
    .booking-info-panel {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 22px 20px;
        flex-direction: column;
        gap: 12px;
    }
    .booking-info-img { display: none; }
    .booking-info-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }
    .booking-form-panel { padding: 22px 20px; }
    .booking-dates-row { grid-template-columns: 1fr; }
    .booking-dates-sep { display: none; }
    .bform-row2 { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .amenities-grid,
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-main-img { height: 480px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .section-header h2 { font-size: 2rem; }
    .section { padding: 70px 0; }

    /* Mobile Nav */
    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .lang-switcher {
        margin-left: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text) !important;
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-menu a:hover {
        background: rgba(44, 110, 73, 0.08) !important;
        color: var(--primary) !important;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    /* Gallery */
    .gallery-main-img { height: 340px; }
    .gal-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
    .gal-arrow-prev { left: 12px; }
    .gal-arrow-next { right: 12px; }
    .gallery-thumb { flex: 0 0 85px; height: 58px; }

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

    /* Rules */
    .rules-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }

    /* Hero features */
    .hero-features {
        gap: 10px;
    }

    .hero-features span {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Full amenities grid */
    .amenities-full-grid {
        grid-template-columns: 1fr;
    }

    /* Rating badge */
    .booking-rating {
        max-width: 100%;
    }

    /* Address banner */
    .address-banner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-outline-sm {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-content { padding: 0 16px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .btn-lg { font-size: 0.95rem; padding: 14px 24px; }

    .lang-btn {
        font-size: 0.7rem;
        padding: 4px 7px;
    }

    .gallery-main-img { height: 240px; }
    .gal-arrow { width: 34px; height: 34px; font-size: 0.8rem; }
    .gal-alt-label { display: none; }
    .gallery-thumb { flex: 0 0 70px; height: 48px; }

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

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