/* ========================================
   PANORAMA - Design System
   ======================================== */

:root {
    /* Colors - Blue/Navy Theme with Gold Accents */
    --color-primary: #2E5266;
    --color-primary-light: #4A7088;
    --color-primary-dark: #1E3A4A;
    --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;
}

@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;
}

.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-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-item {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.property-item:hover {
    background: var(--gray-100);
    transform: translateY(-4px);
}

.property-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.property-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-weight: 600;
}


/* ========================================
   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-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.things-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.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(--gray-200);
}

.things-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.things-card li {
    font-size: 15px;
    color: var(--gray-600);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.things-card li::before {
    display: none;
}

.things-card li i {
    color: var(--color-primary);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.things-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.things-card p i {
    color: var(--color-primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   ROOMS
   ======================================== */
.rooms {
    padding: 100px 0;
    background: var(--gray-50);
}

.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);
}

.room-img {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.room-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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 Preview Grid */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 8px;
    }
}

.gallery-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.gallery-preview-item:hover {
    transform: scale(1.02);
}

.gallery-preview-hero {
    grid-row: span 2;
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-preview-hero {
        grid-row: span 1;
        grid-column: span 2;
        height: 300px;
    }

    .gallery-preview-item {
        height: 200px;
    }
}

.gallery-preview-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.gallery-preview-overlay i {
    color: white;
    font-size: 32px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s var(--ease);
}

.gallery-preview-item:hover .gallery-preview-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-preview-item:hover .gallery-preview-overlay i {
    opacity: 1;
    transform: scale(1);
}

.gallery-preview-overlay-dark {
    background: rgba(0, 0, 0, 0.6);
    flex-direction: column;
    gap: 12px;
}

.gallery-preview-overlay-dark i {
    opacity: 1;
    transform: scale(1);
    font-size: 40px;
}

.gallery-more-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-display);
}

.gallery-preview-item:hover .gallery-preview-overlay-dark {
    background: rgba(0, 0, 0, 0.7);
}

.modal-container-large {
    max-width: 95%;
    width: 1400px;
}

@media (max-width: 1440px) {
    .modal-container-large {
        max-width: 90%;
    }
}

.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: scale(1.1);
    opacity: 0.85;
}

.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: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-700);
    font-size: 28px;
    z-index: 10;
    transition: all 0.3s var(--ease);
}

.modal-close:hover {
    background: var(--black);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-scroll {
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
}

.modal-container-large .modal-scroll {
    padding: 48px 60px;
}

@media (max-width: 768px) {
    .modal-container-large .modal-scroll {
        padding: 40px 24px;
    }
}

.modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-primary);
}

.modal-intro {
    background: var(--gray-50);
    padding: 20px 24px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 32px;
}

.modal-intro p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.modal-intro p i {
    color: var(--color-primary);
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.modal-group {
    margin-bottom: 40px;
}

.modal-group:last-child {
    margin-bottom: 0;
}

.modal-group h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-group h3 i {
    color: var(--color-primary);
    font-size: 22px;
}

.modal-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-group li {
    padding: 12px 0;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.modal-group li:last-child {
    border-bottom: none;
}

.modal-group li i {
    color: var(--color-primary);
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.modal-group strong {
    color: var(--black);
}

.modal-group p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.modal-group p i {
    color: var(--color-primary);
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.modal-item {
    margin-bottom: 20px;
}

.modal-item strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-item strong i {
    color: var(--color-primary);
    font-size: 16px;
}

.modal-item p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--gray-200);
}

/* Gallery Modal */
.gallery-group-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    margin-top: 48px;
    padding: 0 0 12px 16px;
    border-left: 4px solid var(--color-primary);
    letter-spacing: 0.5px;
}

.gallery-group-title:first-child {
    margin-top: 0;
}

/* Modal Gallery Grid - Adjustable Layout */
.modal-container-large .gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--gallery-columns, 7), 1fr);
    grid-auto-rows: 100px;
    gap: var(--gallery-gap, 8px);
    margin-bottom: 32px;
}

.modal-container-large .gallery-grid-item {
    position: relative;
    grid-column: span var(--w, 1);
    grid-row: span var(--h, 1);
    border-radius: var(--gallery-radius, 8px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--ease);
}

.modal-container-large .gallery-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.modal-container-large .gallery-grid-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.modal-container-large .gallery-grid-item:hover img {
    transform: scale(1.05);
}

/* Responsive for modal gallery */
@media (max-width: 992px) {
    .modal-container-large .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .modal-container-large .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* 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%;
        height: auto !important;
        aspect-ratio: 4/3;
    }

    .gallery-grid-item img {
        position: relative;
        height: auto;
        aspect-ratio: var(--gallery-mobile-aspect);
    }
}

/* Enhanced Mobile Gallery Improvements */
@media (max-width: 640px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-preview-hero {
        grid-column: span 1;
        height: 300px;
    }

    .gallery-preview-item {
        height: 200px;
    }

    .modal-container-large .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-grid-item {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    .gallery-preview-item {
        height: 180px;
    }

    .gallery-more-text {
        font-size: 18px;
    }

    .gallery-preview-overlay i {
        font-size: 24px;
    }
}

/* 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 */
.amenity-group {
    margin-bottom: 48px;
    padding: 28px;
    background: var(--gray-50);
    border-radius: 12px;
}

.amenity-group:last-child {
    margin-bottom: 0;
}

.amenity-group h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .amenity-group ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amenity-group li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.amenity-group .amenity-icon {
    color: var(--color-primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.amenity-group li span {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.5;
}

.amenity-text {
    flex: 1;
}

.amenity-text strong {
    display: block;
    color: var(--black);
    font-size: 15px;
    margin-bottom: 4px;
}

.amenity-text p {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Unavailable amenities */
.amenity-group-unavailable {
    background: var(--gray-100);
    border: 1px dashed var(--gray-300);
}

.amenity-group-unavailable h3 {
    border-bottom-color: var(--gray-400);
    color: var(--gray-600);
}

.amenity-group-unavailable li {
    background: transparent;
    border: 1px dashed var(--gray-300);
}

.amenity-icon-unavailable {
    color: var(--gray-400) !important;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.unavailable-text {
    color: var(--gray-500);
    font-size: 15px;
    text-decoration: line-through;
}

/* ========================================
   AMENITIES
   ======================================== */
.amenities {
    padding: 100px 0;
}

.amenities .section-header {
    text-align: center;
}

.amenities > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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(--gray-700);
}

.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(--color-primary);
    background: var(--white);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 8px rgba(46, 82, 102, 0.15);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46, 82, 102, 0.3);
}

/* ========================================
   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(--black);
    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);
}

/* ========================================
   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);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navigation {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

.navigation.hidden { transform: translateY(-100%); }

.navigation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s var(--ease);
    text-decoration: none;
}

.navigation.scrolled .navigation-logo { color: var(--black); }
.navigation-logo-text { font-weight: 400; }
.navigation-logo-accent { font-style: italic; font-weight: 500; }

.navigation-menu {
    display: none;
    gap: 40px;
}

.navigation-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s var(--ease);
    position: relative;
    text-decoration: none;
}

.navigation-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s var(--ease);
}

.navigation-link:hover::after,
.navigation-link.active::after { width: 100%; }

.navigation.scrolled .navigation-link { color: var(--gray-600); }
.navigation-link:hover,
.navigation.scrolled .navigation-link:hover,
.navigation-link.active,
.navigation.scrolled .navigation-link.active { color: var(--color-primary); }

.navigation-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigation-cta {
    display: none;
    padding: 10px 24px;
    font-size: 14px;
}

.navigation-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.navigation-toggle-icon {
    position: absolute;
    color: var(--white);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.navigation.scrolled .navigation-toggle-icon { color: var(--black); }
.navigation-toggle-close { opacity: 0; transform: rotate(90deg); }
.navigation-toggle[aria-expanded="true"] .navigation-toggle-open { opacity: 0; transform: rotate(-90deg); }
.navigation-toggle[aria-expanded="true"] .navigation-toggle-close { opacity: 1; transform: rotate(0); }

.navigation-mobile {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.navigation-mobile-active {
    opacity: 1;
    visibility: visible;
}

.navigation-mobile-link {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    padding: 8px 0;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}

.navigation-mobile-active .navigation-mobile-link { opacity: 1; transform: translateY(0); }
.navigation-mobile-active .navigation-mobile-link:nth-child(1) { transition-delay: 0.1s; }
.navigation-mobile-active .navigation-mobile-link:nth-child(2) { transition-delay: 0.15s; }
.navigation-mobile-active .navigation-mobile-link:nth-child(3) { transition-delay: 0.2s; }
.navigation-mobile-active .navigation-mobile-link:nth-child(4) { transition-delay: 0.25s; }
.navigation-mobile-active .navigation-mobile-link:nth-child(5) { transition-delay: 0.3s; }
.navigation-mobile-active .navigation-mobile-link:nth-child(6) { transition-delay: 0.35s; }

.navigation-mobile-divider {
    width: 200px;
    height: 1px;
    background: var(--gray-700);
    margin: 16px 0;
}

/* Language Switcher - Modern Toggle Design */
.language-switcher {
    position: relative;
    display: none;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.navigation.scrolled .language-switcher {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.language-option {
    position: relative;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s var(--ease);
    z-index: 2;
    letter-spacing: 0.3px;
}

.navigation.scrolled .language-option {
    color: var(--gray-500);
}

.language-option:hover {
    color: rgba(255, 255, 255, 0.9);
}

.navigation.scrolled .language-option:hover {
    color: var(--gray-700);
}

.language-option.active {
    color: var(--white);
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(46, 82, 102, 0.3);
}

.navigation.scrolled .language-option.active {
    color: var(--white);
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(46, 82, 102, 0.2);
}

/* Mobile Language Switcher */
.mobile-menu-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    margin-top: 8px;
}

.mobile-language-link {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-400);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.3px;
}

.mobile-language-link:hover {
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-language-link.active {
    color: var(--white);
    background: var(--color-primary);
}

.mobile-language-separator {
    display: none;
}

@media (min-width: 768px) {
    .language-switcher { display: flex; }
}

@media (min-width: 1024px) {
    .navigation-menu { display: flex; }
    .navigation-cta { display: inline-flex; }
    .navigation-toggle { display: none; }
}

/* ========================================
   FEATURED EXPERIENCE
   ======================================== */
.featured-experience {
    padding: 100px 0;
    background: var(--white);
}

.experience-grid {
    display: grid;
    gap: 48px;
}

.experience-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 24px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.experience-features {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.experience-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.experience-feature:hover {
    background: var(--gray-100);
    transform: translateX(8px);
}

.experience-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.experience-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.experience-feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

@media (min-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
}

/* ========================================
   ICONS & BADGES
   ======================================== */
.icon-xs { font-size: 12px; }
.icon-sm { font-size: 16px; }
.icon-md { font-size: 20px; }
.icon-lg { font-size: 24px; }
.icon-xl { font-size: 32px; }
.icon-2xl { font-size: 40px; }
.icon-3xl { font-size: 48px; }

.amenity-icon,
.feature-tag svg,
.contact-icon i { font-size: 20px; }

.booking-info-icon i,
.booking-fee-card i { font-size: 32px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-primary { background: var(--color-primary); color: var(--white); }
.badge-accent { background: var(--color-accent); color: var(--white); }
.badge-outline { background: transparent; border: 2px solid var(--gray-300); color: var(--gray-700); }
.badge-glass { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); color: var(--white); }
.badge-lg { padding: 8px 18px; font-size: 14px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@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;
    }

    .navigation-container {
        padding: 0 20px;
    }

    .navigation-logo {
        font-size: 22px;
    }

    .experience-features {
        gap: 12px;
    }

    .experience-feature {
        padding: 16px;
    }

    .experience-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========================================
   BOOKING PAGE STYLES
   ======================================== */

/* Booking Hero Section */
.booking-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.booking-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.booking-hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.booking-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Booking Quick Info Cards */
.booking-quick-info {
    padding: 80px 0;
    background: white;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.booking-info-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease);
}

.booking-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 28px;
}

.booking-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-info-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.booking-info-detail {
    font-size: 14px;
    color: var(--text-muted);
}

/* Booking Sections */
.booking-section {
    padding: 80px 0;
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.booking-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--duration-normal) var(--ease);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(83, 83, 156, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-period {
    display: inline-block;
    font-size: 14px;
    color: var(--text-muted);
    background: var(--gray-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pricing-amount {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-unit {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--color-accent);
    font-size: 16px;
}

/* Booking Steps */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.booking-step {
    position: relative;
}

.booking-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.booking-step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Two Column Layout */
.booking-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.booking-info-box {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.booking-info-box:last-child {
    margin-bottom: 0;
}

.booking-info-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-info-box i {
    color: var(--color-primary);
    font-size: 20px;
}

.booking-info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.booking-list {
    list-style: none;
}

.booking-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-200);
}

.booking-list li:last-child {
    border-bottom: none;
}

.booking-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Additional Fees Grid */
.booking-fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.booking-fee-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.booking-fee-card i {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.booking-fee-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.fee-amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.fee-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Booking CTA Section */
.booking-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.booking-cta-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    color: white;
    margin-bottom: 16px;
}

.booking-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.booking-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary,
.btn-outline,
.btn-airbnb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(46, 82, 102, 0.15);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46, 82, 102, 0.3);
}

.btn-airbnb {
    background: #FF5A5F;
    color: white;
}

.btn-airbnb:hover {
    background: #E14347;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 90, 95, 0.3);
}

/* Responsive Booking Page */
@media (max-width: 1024px) {
    .booking-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .booking-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-two-col {
        grid-template-columns: 1fr;
    }

    .booking-fees-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .booking-hero {
        padding: 120px 0 60px;
    }

    .booking-hero-title {
        font-size: 36px;
    }

    .booking-hero-subtitle {
        font-size: 16px;
    }

    .booking-section {
        padding: 60px 0;
    }

    .booking-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-info-card {
        padding: 24px;
    }

    .booking-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline,
    .btn-airbnb {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   BUTTONS & MODALS
   ======================================== */
button:disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.modal {
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    animation: modalFadeIn 0.3s var(--ease);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-close {
    cursor: pointer;
}

.modal-backdrop {
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

/* ========================================
   RESPONSIVE GRIDS
   ======================================== */
@media (max-width: 991px) {
    .about-grid,
    .rooms-grid,
    .things-grid,
    .reviews-slider,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .room-card-wide {
        grid-column: span 1;
    }

    .about-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-card {
        padding: 20px 12px;
    }

    .amenity-card span {
        font-size: 12px;
    }

    .section-heading {
        font-size: 32px;
    }

    .modal-scroll {
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-group h3 {
        font-size: 20px;
    }

    .hero-title-line:first-child {
        font-size: 42px;
    }

    .hero-title-accent {
        font-size: 48px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .info-bar-inner,
    .property-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 32px;
    }

    .about-features {
        gap: 8px;
    }

    .feature-tag {
        font-size: 13px;
        padding: 8px 14px;
    }

    .modal-scroll {
        padding: 24px 16px;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none !important; }
.visible { display: block !important; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.p-0 { padding: 0; }
.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }

/* ========================================
   PRINT
   ======================================== */
@media print {
    .navigation,
    .navigation-mobile,
    .hero-scroll-hint,
    .modal-close,
    .btn,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        page-break-inside: avoid;
    }
}
