/* ========================================
   POGLED THE VIEW - Design System
   ======================================== */

:root {
    /* Colors */
    --color-primary: #6F9E9A;
    --color-primary-light: #8FB5B1;
    --color-primary-dark: #5A8682;
    --color-accent: #D4AF37;
    --color-accent-light: #E5C75C;
    --color-accent-dark: #B8962E;

    /* Surfaces */
    --surface-light: #FAFAFA;
    --surface-white: #FFFFFF;
    --surface-dark: #1A1A1A;

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --text-light: #FFFFFF;

    /* Legacy gray mappings for compatibility */
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #7A7A7A;
    --gray-600: #4A4A4A;
    --gray-700: #3f3f46;
    --gray-800: #1A1A1A;
    --gray-900: #1A1A1A;

    /* Accent colors mapped to new system */
    --accent: #D4AF37;
    --accent-light: #E5C75C;
    --accent-dark: #B8962E;

    /* Typography */
    --font-display: 'Libre Caslon Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Animations */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;

    /* Layout */
    --max-width: 1280px;

    /* ========================================
       GALLERY SETTINGS (anpassbar!)
       ======================================== */
    --gallery-columns: 7;              /* Anzahl Spalten (Desktop) */
    --gallery-gap: 8px;                /* Abstand zwischen Bildern */
    --gallery-radius: 8px;             /* Ecken-Rundung */
    --gallery-mobile-aspect: 16 / 10;  /* Seitenverhältnis Mobile */
    --gallery-mobile-gap: 12px;        /* Abstand Mobile */
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--gray-200);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.header.scrolled .logo-text {
    color: var(--black);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.nav-desktop {
    display: none;
    gap: 40px;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s var(--ease);
}

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

.header.scrolled .nav-desktop a {
    color: var(--gray-600);
}

.nav-desktop a:hover,
.header.scrolled .nav-desktop a:hover {
    color: var(--color-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle {
    display: none;
    gap: 8px;
}

@media (min-width: 768px) {
    .lang-toggle {
        display: flex;
    }
}

.lang-toggle a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

.lang-toggle a.active,
.lang-toggle a:hover {
    color: var(--white);
}

.header.scrolled .lang-toggle a {
    color: var(--gray-400);
}

.header.scrolled .lang-toggle a.active,
.header.scrolled .lang-toggle a:hover {
    color: var(--black);
}

/* Menu Button */
.menu-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.header.scrolled .menu-btn span,
.header.scrolled .menu-btn::before,
.header.scrolled .menu-btn::after {
    background: var(--black);
}

.menu-btn::before {
    content: '';
    transform: translateY(-7px);
}

.menu-btn::after {
    content: '';
    transform: translateY(7px);
}

.menu-btn.active span {
    opacity: 0;
}

.menu-btn.active::before {
    transform: rotate(45deg);
    background: var(--white);
}

.menu-btn.active::after {
    transform: rotate(-45deg);
    background: var(--white);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: -60px;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    padding: 2px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}

.mobile-nav.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-footer {
    position: absolute;
    bottom: 48px;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

.mobile-lang {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

.mobile-lang a {
    color: var(--gray-500);
}

.mobile-lang a.active {
    color: var(--white);
}

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

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-star {
    color: var(--accent);
}

.badge-sep {
    opacity: 0.4;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: #F5F5DC;
}

.hero-title-line:first-child {
    font-size: clamp(48px, 10vw, 100px);
}

.hero-title-accent {
    font-size: clamp(56px, 12vw, 120px);
    font-style: italic;
    color: #F5F5DC;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.hero-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.hero-scroll-hint span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    color: var(--color-primary-light);
}

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

/* ========================================
   INFO BAR
   ======================================== */
.info-bar {
    background: var(--black);
    padding: 32px 0;
}

.info-bar-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.info-item {
    color: var(--white);
}

.info-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--white);
}

.info-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--accent-light);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 16px;
}

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

.section-header-light .section-heading {
    color: var(--white);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
    }
}

.about-images {
    position: relative;
}

.about-img img {
    border-radius: 8px;
}

.about-img-main {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 45%;
    border: 6px solid var(--white);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-img-small {
        display: none;
    }
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 17px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-tag svg {
    color: var(--accent);
}

/* ========================================
   PROPERTY DETAILS
   ======================================== */
.property-details {
    padding: 100px 0;
    background: var(--white);
}

.property-details .section-label {
    color: var(--accent-light);
}

.property-details .section-heading {
    color: var(--black);
}

.property-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-item {
    padding: 32px;
    background: rgba(111, 158, 154, 0.1);
    border: 1px solid rgba(111, 158, 154, 0.2);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}



.property-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.property-item p {
    font-size: 15px;
    color: var(--black);
    line-height: 1.7;
    font-weight: 500;
}


/* ========================================
   THINGS TO KNOW
   ======================================== */
.things-to-know {
    padding: 100px 0;
    background: var(--gray-50);
}

.things-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .things-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.things-card {
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.things-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary-light);
}

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

.things-card li {
    font-size: 15px;
    color: var(--gray-600);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.things-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* ========================================
   ROOMS
   ======================================== */
.rooms {
    padding: 100px 0;
    background: var(--black);
}

.rooms .section-label {
    color: var(--accent-light);
}

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

.rooms-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-card-wide {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .room-card-wide {
        grid-column: span 2;
    }
}

.room-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.room-img {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.room-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.room-card:hover .room-img img {
    transform: none;
}

.room-info {
    padding: 24px;
}

.room-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.room-info p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: 100px 0;
    background: var(--gray-900);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .gallery-mosaic {
        grid-template-columns: repeat(4, 1fr);
    }

    .gi-1 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-item {
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), opacity 0.3s var(--ease);
}

.gallery-item:hover img {
    transform: none;
    opacity: 1;
}

.gallery-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    margin: 0 auto;
    display: flex;
}

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

/* ========================================
   MODALS
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-container {
    position: relative;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s var(--ease);
}

.modal.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-container-sm {
    max-width: 700px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-700);
    z-index: 10;
    transition: all 0.3s var(--ease);
}

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

.modal-scroll {
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 32px;
}

/* Gallery Modal */
.gallery-group-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 24px;
    margin-top: 56px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
    letter-spacing: 0.5px;
}

.gallery-group-title:first-child {
    margin-top: 0;
}

/* Gallery Grid - Desktop: mosaic, Mobile: single column
   Einstellungen oben in :root anpassbar! */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--gallery-columns), 1fr);
    gap: var(--gallery-gap);
}

.gallery-grid-item {
    grid-column: span var(--w, 2);
    grid-row: span var(--h, 2);
    border-radius: var(--gallery-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.gallery-grid-item:hover img {
    transform: none;
}

/* Mobile: single column with equal rectangles */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: var(--gallery-mobile-gap);
    }

    .gallery-grid-item {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
    }

    .gallery-grid-item img {
        height: auto;
        aspect-ratio: var(--gallery-mobile-aspect);
    }
}

/* Lightbox Slider */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Amenities Modal */
.amenities-list {
    display: grid;
    gap: 32px;
}

@media (min-width: 600px) {
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amenities-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.amenities-category ul {
    list-style: none;
}

.amenities-category li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    padding: 8px 0;
}

.amenities-category li svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* ========================================
   AMENITIES
   ======================================== */
.amenities {
    padding: 100px 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 600px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: 12px;
    text-align: center;
}

.amenity-icon {
    color: var(--color-primary);
}

.amenity-card span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

.btn-outline {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 14px 32px;
    border: 2px solid var(--black);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

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

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
    padding: 100px 0;
    background: var(--gray-50);
}

.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.score-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--black);
}

.score-stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
}

.score-count {
    font-size: 14px;
    color: var(--gray-500);
}

.reviews-slider {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .reviews-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.review-quote {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--gray-200);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 24px;
}

.review-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--black);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========================================
   BOOKING
   ======================================== */
.booking {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.booking-bg {
    position: absolute;
    inset: 0;
}

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

.booking-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.booking-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 24px;
}

.booking-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
}

.booking-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.booking-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

.detail-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--color-primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.booking-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.contact-card:hover .contact-icon {
    color: var(--white);
}

.contact-card:hover h3,
.contact-card:hover p {
    color: var(--white);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: all 0.3s var(--ease);
}

.contact-card:hover .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    transition: color 0.3s var(--ease);
}

.contact-card p {
    font-size: 16px;
    color: var(--gray-600);
    transition: color 0.3s var(--ease);
}

.contact-card-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.contact-card-link p a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-700);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
    }
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 300px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--gray-400);
    transition: all 0.3s var(--ease);
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--color-primary-light);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.footer-airbnb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--gray-600);
    border-radius: 6px;
    color: var(--gray-300);
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.footer-airbnb-link:hover {
    border-color: #FF5A5F;
    color: #FF5A5F;
}

.footer-airbnb-link i {
    font-size: 18px;
    color: #FF5A5F;
}

.footer-col-wide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .footer-col-wide {
        text-align: right;
        align-items: flex-end;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color 0.3s var(--ease);
}

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

/* ========================================
   BOOKING CALENDAR MODAL - LUXURY REDESIGN
   ======================================== */

.modal-container-booking {
    max-width: 1200px;
    width: 96%;
    max-height: 90vh;
    background: linear-gradient(135deg, #f8fafa 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.booking-calendar-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .booking-calendar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Calendar Wrapper - Premium Glass Effect */
.calendar-wrapper {
    background: linear-gradient(to bottom right, #ffffff, #f9fafb);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s var(--ease);
}

.calendar-wrapper:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 10px 15px -3px rgba(111, 158, 154, 0.1),
                0 4px 6px -2px rgba(111, 158, 154, 0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
}

.calendar-month {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.calendar-nav {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.calendar-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(111, 158, 154, 0.3);
}

.calendar-nav:active {
    transform: scale(0.95);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    padding: 0.75rem 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--surface-light), white);
    border-radius: 8px;
    margin-bottom: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    border: 2px solid transparent;
    background: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.calendar-day::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.calendar-day:hover:not(:disabled)::before {
    opacity: 1;
}

.calendar-day:hover:not(:disabled) {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    color: var(--color-primary-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 20px -8px rgba(111, 158, 154, 0.4);
    border-color: var(--color-primary-light);
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
    box-shadow: none;
}

.calendar-day.past,
.calendar-day.unavailable {
    color: var(--gray-600);
    text-decoration: line-through;
    cursor: not-allowed;
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
    opacity: 1;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    border-color: var(--gray-400);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-weight: 700;
    border-color: var(--color-primary-dark);
    box-shadow: 0 8px 16px rgba(111, 158, 154, 0.4),
                0 0 0 4px rgba(111, 158, 154, 0.1);
    transform: scale(1.1);
}

.calendar-day.selected::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.65rem;
    opacity: 0.8;
}

.calendar-day.in-range {
    background: linear-gradient(135deg, rgba(111, 158, 154, 0.15), rgba(111, 158, 154, 0.25));
    color: var(--color-primary-dark);
    border-color: var(--color-primary-light);
    font-weight: 600;
}

.calendar-legend {
    display: flex;
    gap: 1.75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--gray-200);
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-dot.available {
    background: white;
    border: 2px solid var(--gray-300);
}

.legend-dot.selected {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.legend-dot.unavailable {
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-400);
}

/* Booking Details Panel - Luxury Card */
.booking-details-panel {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.booking-card {
    background: linear-gradient(to bottom, white, #fafbfc);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.booking-header {
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.booking-price .price-label {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.booking-rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #fffbf0, #fff9e6);
    padding: 0.625rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--color-accent-light);
}

.rating-star {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.rating-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Date Selection - Modern Glass Inputs */
.date-selection {
    margin-bottom: 2rem;
}

.date-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.date-input {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.date-input label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-input input,
.date-input select {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    background: white;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.date-input input:hover,
.date-input select:hover {
    border-color: var(--color-primary-light);
}

.date-input input:focus,
.date-input select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(111, 158, 154, 0.1),
                0 4px 8px rgba(0, 0, 0, 0.05);
}

.date-input input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

/* Booking Info Section - Enhanced Card */
.booking-info-section {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f8fafa, #ffffff);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.booking-info-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

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

.booking-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.925rem;
    color: var(--text-secondary);
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    transition: all 0.2s var(--ease);
}

.booking-info-list li:hover {
    background: linear-gradient(135deg, #e0f2f1, #f0f9ff);
    transform: translateX(4px);
}

.booking-info-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.booking-info-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Booking Submit Button - Premium Gradient */
.booking-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(111, 158, 154, 0.3),
                0 6px 6px rgba(111, 158, 154, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.booking-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.booking-submit-btn:hover::before {
    left: 100%;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(111, 158, 154, 0.4),
                0 8px 10px rgba(111, 158, 154, 0.3);
}

.booking-submit-btn:active {
    transform: translateY(-1px);
}

.booking-submit-btn svg {
    transition: transform 0.3s var(--ease);
}

.booking-submit-btn:hover svg {
    transform: translate(4px, -4px);
}

/* Booking Contact - Elegant Footer */
.booking-contact {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 2px solid var(--gray-200);
}

.booking-contact p {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.booking-contact a {
    display: block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s var(--ease);
}

.booking-contact a:hover {
    background: linear-gradient(135deg, #e0f2f1, #f0f9ff);
    color: var(--color-primary-dark);
    transform: scale(1.02);
}

/* Modal Subtitle */
.modal-subtitle {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Price Breakdown */
.price-breakdown {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2f1);
    border-radius: 16px;
    border: 2px solid var(--color-primary-light);
    display: none;
}

.price-breakdown.visible {
    display: block;
}

#petFeeRow {
    display: none;
}

#petFeeRow.visible {
    display: flex;
}

.price-breakdown h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.price-row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.price-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    margin: 1rem 0;
}

.price-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 0.5rem;
}

.price-total span {
    font-weight: 700;
}

/* Booking Form Modal */
.modal-container-form {
    max-width: 700px;
    width: 95%;
}

.booking-summary {
    background: linear-gradient(135deg, #f8fafa, #ffffff);
    padding: 1.75rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    margin-bottom: 2rem;
}

.booking-summary h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-row strong {
    color: var(--text-primary);
    font-weight: 600;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    margin: 1rem 0;
}

.summary-total {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.summary-total strong {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: white;
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(111, 158, 154, 0.1);
}

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

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.form-actions {
    margin-top: 2rem;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 16px rgba(111, 158, 154, 0.3);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(111, 158, 154, 0.4);
}

.form-submit-btn svg {
    transition: transform 0.3s var(--ease);
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    font-style: italic;
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .modal-container-booking {
        width: 96%;
        max-height: 92vh;
    }

    .booking-calendar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-details-panel {
        position: static;
        top: auto;
    }

    .calendar-wrapper {
        padding: 1.5rem;
    }

    .booking-card {
        padding: 2rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .modal-container-booking {
        width: 98%;
        border-radius: 20px;
        max-height: 94vh;
    }

    .booking-calendar-container {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .calendar-wrapper {
        padding: 1.25rem;
    }

    .calendar-month {
        font-size: 1.5rem;
    }

    .calendar-nav {
        width: 44px;
        height: 44px;
    }

    .calendar-day {
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .calendar-day-header {
        font-size: 0.65rem;
        padding: 0.625rem 0.25rem;
    }

    .calendar-legend {
        gap: 1.25rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .legend-dot {
        width: 18px;
        height: 18px;
    }

    .booking-card {
        padding: 1.75rem;
    }

    .booking-price .price-label {
        font-size: 1.35rem;
    }

    .booking-rating {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }

    .price-breakdown {
        padding: 1.25rem;
    }

    .price-breakdown h4 {
        font-size: 1rem;
    }

    .booking-info-section {
        padding: 1.25rem;
    }

    .booking-info-section h4 {
        font-size: 1.05rem;
    }

    .booking-info-list li {
        font-size: 0.875rem;
        padding: 0.625rem;
    }

    .booking-submit-btn {
        padding: 1.125rem;
        font-size: 1rem;
    }

    .modal-container-form {
        width: 96%;
        max-height: 94vh;
    }

    .booking-summary {
        padding: 1.5rem;
    }

    .booking-summary h3 {
        font-size: 1.15rem;
    }

    .booking-form {
        padding: 1.75rem;
    }
}

/* Mobile Portrait */
@media (max-width: 640px) {
    .modal-container-booking,
    .modal-container-form {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 96vh;
        margin: auto 0 0 0;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                    opacity 0.4s ease;
    }

    #bookingModal.active .modal-container-booking,
    #bookingFormModal.active .modal-container-form {
        transform: translateY(0);
        opacity: 1;
    }

    .modal-scroll {
        padding: 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .modal-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .booking-calendar-container {
        gap: 1.25rem;
        margin-top: 1rem;
    }

    .calendar-wrapper {
        padding: 1rem;
        border-radius: 16px;
    }

    .calendar-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .calendar-month {
        font-size: 1.25rem;
    }

    .calendar-nav {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .calendar-grid {
        gap: 6px;
    }

    .calendar-day {
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .calendar-day-header {
        font-size: 0.6rem;
        padding: 0.5rem 0.125rem;
    }

    .calendar-legend {
        margin-top: 1.5rem;
        padding-top: 1rem;
        gap: 1rem;
        justify-content: flex-start;
    }

    .legend-item {
        font-size: 0.75rem;
    }

    .legend-dot {
        width: 16px;
        height: 16px;
    }

    .booking-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .booking-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .booking-price .price-label {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .booking-rating {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .rating-star {
        font-size: 1.1rem;
    }

    .rating-value {
        font-size: 0.95rem;
    }

    .rating-count {
        font-size: 0.8rem;
    }

    .date-selection {
        margin-bottom: 1.5rem;
    }

    .date-input-group {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .date-input label {
        font-size: 0.75rem;
    }

    .date-input input,
    .date-input select {
        padding: 0.875rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .price-breakdown {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .price-breakdown h4 {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .price-row {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
    }

    .price-total {
        font-size: 1.05rem;
    }

    .booking-info-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .booking-info-section h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .booking-info-list {
        gap: 0.75rem;
    }

    .booking-info-list li {
        font-size: 0.825rem;
        padding: 0.625rem 0.5rem;
        border-radius: 8px;
    }

    .booking-info-list li svg {
        width: 16px;
        height: 16px;
    }

    .booking-submit-btn {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
        margin-bottom: 1.25rem;
    }

    .booking-contact {
        padding-top: 1.25rem;
    }

    .booking-contact p {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }

    .booking-contact a {
        font-size: 0.9rem;
        padding: 0.375rem;
    }

    /* Booking Form Mobile */
    .modal-container-form {
        border-radius: 16px 16px 0 0;
    }

    .booking-summary {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .booking-summary h3 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .summary-row {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .summary-total {
        font-size: 1.05rem;
    }

    .summary-total strong {
        font-size: 1.15rem;
    }

    .booking-form {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

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

    .checkbox-label {
        font-size: 0.875rem;
        gap: 0.625rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .form-submit-btn {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .form-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .modal-container-booking,
    .modal-container-form {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }

    .modal-scroll {
        padding: 0.75rem;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .calendar-grid {
        gap: 4px;
    }

    .calendar-day {
        font-size: 0.75rem;
    }

    .calendar-day-header {
        font-size: 0.55rem;
    }

    .calendar-month {
        font-size: 1.15rem;
    }

    .calendar-nav {
        width: 36px;
        height: 36px;
    }

    .booking-price .price-label {
        font-size: 1.15rem;
    }

    .booking-card {
        padding: 1.25rem;
    }

    .date-input input,
    .date-input select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .booking-info-list li {
        font-size: 0.8rem;
    }

    .booking-submit-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .modal-container-booking,
    .modal-container-form {
        max-height: 98vh;
    }

    .modal-scroll {
        padding: 0.75rem;
    }

    .calendar-wrapper {
        padding: 0.875rem;
    }

    .booking-card {
        padding: 1.25rem;
    }

    .calendar-grid {
        gap: 4px;
    }

    .calendar-day {
        font-size: 0.8rem;
    }

    .booking-info-section {
        padding: 0.875rem;
    }

    .booking-info-list {
        gap: 0.5rem;
    }

    .booking-info-list li {
        padding: 0.5rem;
    }
}

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

/* Gallery Desktop Styles - Show only first 5 images */
@media (min-width: 769px) {
    .gallery-item:not(.gi-1):not(.gi-2):not(.gi-3):not(.gi-4):not(.gi-5) {
        display: none;
    }
}

/* Gallery Mobile Styles - Show all images */
@media (max-width: 768px) {
    .gallery-mosaic {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.5rem;
    }

    .gallery-mosaic::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 300px !important;
        display: block !important;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
}

@media (max-width: 767px) {
    .info-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-value {
        font-size: 24px;
    }

    .booking-details {
        flex-wrap: wrap;
        gap: 24px;
    }
}
