/* ═══════════════════════════════════════════════════════
   BookingBreb — Main Styles
   Premium booking website for Breb Village, Maramureș
   ═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --color-primary: #2D5016;
    --color-primary-light: #4a7c28;
    --color-primary-dark: #1a3009;
    --color-secondary: #c8956c;
    --color-secondary-light: #dbb08e;
    --color-secondary-dark: #a67448;
    --color-accent: #8B4513;
    --color-bg: #faf8f5;
    --color-bg-alt: #f0ece6;
    --color-bg-dark: #1a1a1a;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999999;
    --color-white: #ffffff;
    --color-border: #e5e0d8;
    --color-success: #27ae60;
    --color-error: #e74c3c;
    --color-warning: #f39c12;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Dancing Script', cursive;

    /* Elegant Shadows - more sophisticated */
    --shadow-subtle: 0 1px 3px rgba(45, 80, 22, 0.03), 0 1px 2px rgba(45, 80, 22, 0.02);
    --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 16px rgba(45, 80, 22, 0.06), 0 8px 24px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 8px 32px rgba(45, 80, 22, 0.08), 0 12px 40px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 16px 48px rgba(45, 80, 22, 0.10), 0 20px 60px rgba(0, 0, 0, 0.05);
    --shadow-elegant: 0 10px 40px rgba(45, 80, 22, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);

    /* Soft Border Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Smooth Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    /* Fix for mobile viewport height (especially iOS Safari) */
    height: -webkit-fill-available;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.75;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    min-height: 100vh;
    /* Fix for mobile viewport height (especially iOS Safari) */
    min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    overflow-x: hidden;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 24px;
    }
}

/* ─── Preloader ─── */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.mountain-svg {
    width: 120px;
    height: 120px;
}

.preloader-text {
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.preloader-bar {
    margin-top: 20px;
    width: 200px;
    height: 3px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
    animation: preloaderProgress 1.5s ease-in-out forwards;
}

@keyframes preloaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    transition: var(--transition);
    cursor: default;
    user-select: none;
}

.header.scrolled .logo-text {
    color: var(--color-primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-white);
}

.header.scrolled .nav-link:hover {
    color: var(--color-primary);
}

/* Language Selector */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.header.scrolled .lang-btn {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
    color: var(--color-text);
}

.lang-btn:hover {
    background: rgba(255,255,255,0.25);
}

.lang-flag {
    font-size: 16px;
}

.chevron {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.lang-selector.open .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 160px;
    overflow: hidden;
    z-index: 100;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    width: 100%;
    border: none;
    background: none;
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.lang-option:hover {
    background: var(--color-bg-alt);
}

.lang-option.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--color-text);
}

/* ─── Hero Section ─── */
.hero {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* Fallback for mobile */
    width: 100vw;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Section page heroes - hidden by default, shown by router */
.hero.section-page.active {
    display: flex;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(45, 80, 22, 0.72) 0%, rgba(26, 48, 9, 0.58) 50%, rgba(139, 69, 19, 0.42) 100%),
        url('https://upload.wikimedia.org/wikipedia/commons/thumb/f/fe/View_across_the_meadows_towards_Creasta_Coco%C8%99ului%2C_Breb%2C_2017.jpg/1920px-View_across_the_meadows_towards_Creasta_Coco%C8%99ului%2C_Breb%2C_2017.jpg') center/cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
    filter: brightness(0.92) contrast(1.05);
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.hero-with-video .hero-bg {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.72) 0%, rgba(26, 48, 9, 0.58) 50%, rgba(139, 69, 19, 0.42) 100%);
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaf, .floating-bird {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
}

.leaf-1 { top: 20%; left: 10%; animation: floatLeaf 8s ease-in-out infinite; }
.leaf-2 { top: 60%; right: 15%; animation: floatLeaf 10s ease-in-out infinite reverse; }
.leaf-3 { bottom: 30%; left: 20%; animation: floatLeaf 12s ease-in-out infinite 2s; }
.bird-1 { top: 15%; right: 20%; animation: floatBird 15s linear infinite; }
.bird-2 { top: 25%; right: 40%; animation: floatBird 20s linear infinite 5s; }

@keyframes floatLeaf {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(10deg); }
    50% { transform: translate(-10px, -50px) rotate(-5deg); }
    75% { transform: translate(15px, -20px) rotate(8deg); }
}

@keyframes floatBird {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-200px, -30px); }
    100% { transform: translate(-400px, 0); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
    display: block;
    font-size: clamp(52px, 8vw, 90px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 6px 30px rgba(200, 149, 108, 0.5));
}

.hero-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: 19px;
    line-height: 1.85;
    max-width: 650px;
    margin: 0 auto 48px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-owner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
    transition: all 0.3s ease;
}

.btn-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.4);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-owner .owner-icon {
    font-size: 14px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hidden for independent page navigation */
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 1px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseScroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Sections ─── */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section.active {
    display: block;
    opacity: 1;
    animation: sectionFadeIn 0.5s ease-out;
}

.section#home {
    display: block;
    opacity: 1;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─── About Section ─── */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

.about-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-slow);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
}

.about-card:hover::after {
    height: 100%;
}

.about-card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-card:hover .about-card-image {
    transform: scale(1.08);
    transition: var(--transition-slow);
}

.about-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.5), transparent);
    transition: var(--transition);
}

.about-card:hover .about-card-overlay {
    height: 70%;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.6), transparent);
}

.about-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: inline-block;
    transition: var(--transition-bounce);
}

.about-card:hover .about-icon {
    transform: scale(1.15) rotate(5deg);
}

.about-card-content h3 {
    font-size: 24px;
    color: var(--color-primary-dark);
    margin-bottom: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.about-card:hover h3 {
    color: var(--color-primary);
}

.about-card-content p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 20px;
}

/* ─── Listings Section ─── */
.listings-section {
    background: var(--color-bg-alt);
}

.listings-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.listing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    display: flex;
    flex-direction: column;
}

.listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.listing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-elegant);
}

.listing-card:hover::before {
    opacity: 1;
}

.listing-card-image {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: var(--transition-slow);
}

.listing-card:hover .listing-card-image {
    transform: scale(1.05);
}

.listing-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.listing-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 16px;
    z-index: 2;
}

.listing-price small {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text-light);
}

.listing-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-card-body h3 {
    font-size: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.listing-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.listing-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.amenity-tag {
    padding: 4px 10px;
    background: var(--color-bg-alt);
    border-radius: 50px;
    font-size: 12px;
    color: var(--color-text-light);
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary-dark);
}

.listing-footer .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ─── Restaurants Section ─── */
.restaurants-section {
    background: var(--color-bg);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.restaurant-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.restaurant-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.08), transparent);
    transition: var(--transition-slow);
    z-index: 0;
}

.restaurant-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-elegant);
}

.restaurant-card:hover::before {
    width: 100%;
}

.restaurant-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.restaurant-card:hover .restaurant-card-image {
    transform: scale(1.06);
}

.restaurant-card-body {
    padding: 28px;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.restaurant-card-body h3 {
    font-size: 22px;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.restaurant-card:hover h3 {
    color: var(--color-accent);
}

.restaurant-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.restaurant-cuisine {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cuisine-tag {
    padding: 4px 12px;
    background: var(--color-bg-alt);
    border-radius: 50px;
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 500;
}

/* ─── Experiences Section ─── */
.experiences-section {
    background: var(--color-bg-alt);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.exp-card {
    display: flex;
    gap: 28px;
    padding: 36px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.04), transparent);
    transition: var(--transition-slow);
}

.exp-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: var(--shadow-elegant);
}

.exp-card:hover::before {
    left: 100%;
}

.exp-card-visual {
    flex-shrink: 0;
    text-align: center;
    transition: var(--transition);
}

.exp-card:hover .exp-card-visual {
    transform: scale(1.1);
}

.exp-number {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.exp-icon-large {
    font-size: 48px;
    transition: var(--transition-bounce);
}

.exp-card:hover .exp-icon-large {
    transform: rotate(12deg) scale(1.15);
}

.exp-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-card-content h3 {
    font-size: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.exp-card-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    flex: 1;
}

/* ─── Testimonials ─── */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
}

.testimonials-section .section-tag {
    color: var(--color-secondary-light);
}

.testimonials-section .section-title {
    color: var(--color-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.testimonial-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 140px;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.96;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(200, 149, 108, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 149, 108, 0.6);
}

.testimonial-author span {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}

/* ─── Contact Section ─── */
.contact-section {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 18px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.8;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--color-white), var(--color-bg-alt));
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-bounce);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(-5deg);
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary-dark);
    font-size: 15px;
    font-weight: 700;
}

.contact-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), transparent);
    border-radius: 0 0 0 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(45, 80, 22, 0.08), var(--shadow-sm);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--color-primary-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-row-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.form-hint {
    font-size: 12px;
    color: var(--color-secondary);
}

/* Pricing & Discount Styles */
.discount-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    padding: 16px;
    background: var(--color-bg-light);
    border-radius: 12px;
    border: 1px dashed var(--color-border);
}

.discount-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-item input[type="number"] {
    width: 60px;
    padding: 6px 8px;
    text-align: center;
}

.discount-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Price Calculator Box */
.price-calculator-box {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid var(--color-primary-light);
}

.price-calculator-box h4 {
    margin: 0 0 16px 0;
    color: var(--color-primary);
}

.calc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.calc-row span {
    min-width: 80px;
    font-weight: 500;
}

.calc-row input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.calc-result {
    margin-top: 16px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.calc-result .price-breakdown {
    margin: 0;
    padding: 0;
    list-style: none;
}

.calc-result .price-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.calc-result .price-breakdown li:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Photo Buttons */
.photo-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.photo-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
}

.photo-buttons .btn span {
    font-size: 18px;
}

@media (max-width: 480px) {
    .photo-buttons {
        flex-direction: column;
    }
    
    .photo-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Photo URL Section */
.photo-url-section {
    margin-top: 20px;
    padding: 16px;
    background: var(--color-bg-light);
    border-radius: 12px;
}

.photo-url-section .form-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.photo-url-input {
    flex: 1;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.form-actions .btn {
    flex: 1;
}

.form-actions .btn-lg {
    flex: 2;
    padding: 16px 24px;
    font-size: 1.1rem;
}

/* Photo Preview Grid Enhancements */
.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.photo-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.photo-preview-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-preview-item:first-child::after {
    content: 'COVER';
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-item .photo-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s;
}

.photo-preview-item:hover .photo-remove {
    opacity: 1;
}

.photo-preview-item.dragging {
    opacity: 0.5;
    transform: scale(1.1);
}

/* ─── Listings Empty State ─── */
.listings-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.listings-empty p {
    font-size: 17px;
    color: var(--color-text-light);
}

/* ─── Footer ─── */
.footer {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0f0f0f 100%);
    color: rgba(255,255,255,0.75);
    padding: 90px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 149, 108, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 8px rgba(200, 149, 108, 0.3));
}

.footer-brand .logo-text {
    color: var(--color-white);
    font-size: 24px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.8;
}

.footer-links h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.4s var(--transition-spring);
}

.footer-links a:hover {
    color: var(--color-secondary-light);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-newsletter h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-tagline {
    color: var(--color-secondary);
}

/* ─── Modal ─── */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-bg-alt);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text);
}

.modal-close:hover {
    background: var(--color-error);
    color: var(--color-white);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 28px;
    color: var(--color-primary-dark);
}

.modal-property-name {
    font-size: 15px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Auth Modal */
.modal-auth {
    max-width: 480px;
}

.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-border);
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-header {
    text-align: center;
    margin-bottom: 8px;
}

.auth-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.auth-header h3 {
    font-size: 22px;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.auth-header p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Booking Summary */
.booking-summary {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 8px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.summary-row strong {
    font-size: 22px;
    color: var(--color-primary);
}

/* ─── Toast Notifications ─── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    animation: toastIn 0.4s forwards, toastOut 0.4s 3.5s forwards;
    max-width: 360px;
}

.toast-success {
    background: var(--color-success);
}

.toast-error {
    background: var(--color-error);
}

.toast-info {
    background: var(--color-primary);
}

@keyframes toastIn {
    to { transform: translateX(0); }
}

@keyframes toastOut {
    to { transform: translateX(120%); opacity: 0; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .crafts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    /* Header Mobile */
    .header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .nav.open {
        display: flex;
    }
    
    .nav-link {
        color: var(--color-text) !important;
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
        padding: 0;
    }
    
    .hero-title-line {
        font-size: 32px;
    }

    .hero-title-accent {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0 16px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 0 16px;
    }

    .stat {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-divider {
        display: none;
    }

    /* Section Mobile */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    /* Section Mobile Adjustments */
    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 15px;
    }

    /* About Mobile */
    .about-grid {
        gap: 24px;
        margin-bottom: 40px;
    }

    .about-card {
        width: 100%;
        max-width: 100%;
        transform: none !important;
    }

    .about-card.animated {
        transform: translateY(0) translateX(0) !important;
    }

    .about-card-image {
        height: 260px;
        flex-shrink: 0;
    }

    .about-card-content {
        padding: 28px 24px;
    }

    .about-icon {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .about-card-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .about-card-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-h {
        font-size: 13px;
        padding: 12px;
    }

    .about-h-icon {
        font-size: 24px;
    }

    /* Listings & Restaurants Mobile */
    .listings-grid,
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .listing-card,
    .restaurant-card {
        max-width: 100%;
    }
    
    .listings-filters {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .filter-btn {
        font-size: 14px;
        padding: 8px 16px;
        min-width: 80px;
    }

    /* Experience Cards Mobile */
    .exp-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .exp-card-visual {
        margin-bottom: 20px;
    }

    .exp-number {
        font-size: 48px;
    }

    /* Crafts Mobile */
    .crafts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .craft-card {
        padding: 24px;
    }

    /* Contact Mobile */
    .contact-details {
        gap: 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-full {
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    /* Modal Mobile */
    .modal-container {
        padding: 24px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    /* Testimonials Mobile */
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Booking Form Mobile */
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    /* Header Extra Small */
    .header-container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        font-size: 22px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Hero Extra Small */
    .hero {
        min-height: 100vh;
        padding: 90px 0 60px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-title-line {
        font-size: 26px;
    }

    .hero-title-accent {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 12px;
    }

    .hero-actions {
        padding: 0 12px;
    }

    .hero-actions .btn {
        max-width: 100%;
        font-size: 14px;
        padding: 12px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 0 12px;
    }

    .stat {
        width: 100%;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Section Extra Small */
    .section {
        padding: 40px 0;
    }

    .section-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* About Extra Small */
    .about-grid {
        gap: 20px;
        margin-bottom: 30px;
    }

    .about-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none !important;
    }

    .about-card.animated {
        transform: translateY(0) translateX(0) !important;
    }

    .about-card-image {
        height: 240px;
        flex-shrink: 0;
    }

    .about-card-content {
        padding: 24px 20px;
    }

    .about-icon {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .about-card-content h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .about-card-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .about-h {
        font-size: 14px;
        padding: 14px;
    }

    /* Cards Extra Small */
    .listing-card,
    .restaurant-card {
        border-radius: var(--radius-md);
    }

    .card-title {
        font-size: 20px;
    }

    .card-price {
        font-size: 18px;
    }

    /* Experience Extra Small */
    .exp-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .exp-number {
        font-size: 40px;
    }

    .exp-icon-large {
        font-size: 48px;
    }

    .exp-card-content h3 {
        font-size: 20px;
    }

    /* Crafts Extra Small */
    .craft-card {
        padding: 20px;
    }

    .craft-icon {
        font-size: 40px;
    }

    .craft-card h3 {
        font-size: 20px;
    }

    /* Contact Extra Small */
    .contact-icon {
        font-size: 24px;
    }

    .contact-item strong {
        font-size: 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 12px;
    }

    /* Buttons Extra Small */
    .btn {
        font-size: 14px;
        padding: 10px 20px;
        min-height: 44px; /* Touch-friendly */
    }

    .btn-primary {
        padding: 12px 28px;
    }

    /* Modal Extra Small */
    .modal-container {
        width: 98%;
        padding: 20px;
        border-radius: var(--radius-md);
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .auth-tabs button {
        font-size: 14px;
        padding: 12px;
    }

    /* Footer Extra Small */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-links h4 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .newsletter-form input {
        font-size: 13px;
        padding: 10px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 16px;
    }

    /* Testimonials Extra Small */
    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-stars {
        font-size: 16px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════
   Development Banner
   ═══════════════════════════════════════════════════════ */
.dev-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: slideDownBanner 0.6s ease-out;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.dev-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@keyframes slideDownBanner {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.dev-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
}

.dev-banner-icon {
    font-size: 20px;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.dev-banner-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.dev-progress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 260px;
}

.dev-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.dev-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8956c, #e8b88a, #c8956c);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: shimmer-progress 2s infinite linear;
    transition: width 1s ease;
    position: relative;
}

.dev-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #e8b88a;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(232, 184, 138, 0.6);
}

@keyframes shimmer-progress {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.dev-progress-label {
    font-size: 14px;
    font-weight: 800;
    color: #e8b88a;
    font-family: 'Playfair Display', serif;
    min-width: 36px;
}

.dev-banner-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.dev-banner-close:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Offset header when banner is visible */
body:has(.dev-banner:not(.hidden)) .header {
    top: 42px;
}

body:has(.dev-banner:not(.hidden)) .hero {
    margin-top: 42px;
}

/* ═══════════════════════════════════════════════════════
   Traditional Crafts Section
   ═══════════════════════════════════════════════════════ */
.crafts-section {
    background: linear-gradient(180deg, #faf6f1 0%, #f5ece3 50%, #faf6f1 100%);
    position: relative;
    overflow: hidden;
}

.crafts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.crafts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.craft-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(200, 149, 108, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.craft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.craft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.12);
    border-color: rgba(200, 149, 108, 0.3);
}

.craft-card:hover::before {
    opacity: 1;
}

.craft-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.craft-card:hover .craft-icon {
    transform: scale(1.15) rotate(-5deg);
}

.craft-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.craft-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}

.craft-tag-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(200, 149, 108, 0.12));
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    font-style: italic;
    font-family: 'Dancing Script', cursive;
    font-size: 0.9rem;
}

.crafts-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(45, 80, 22, 0.04);
    border-radius: 16px;
    border: 1px dashed rgba(200, 149, 108, 0.3);
}

.crafts-cta p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

/* Crafts responsive */
@media (max-width: 1024px) {
    .crafts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dev-banner-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .dev-progress-wrap {
        max-width: 180px;
    }
    .dev-banner-text {
        font-size: 11px;
    }
    body:has(.dev-banner:not(.hidden)) .header {
        top: 62px;
    }
    body:has(.dev-banner:not(.hidden)) .hero {
        margin-top: 62px;
    }
}

@media (max-width: 480px) {
    .crafts-grid {
        grid-template-columns: 1fr;
    }
    .craft-card {
        padding: 30px 20px 24px;
    }
    .dev-banner-content {
        gap: 6px;
    }
    .dev-banner-text {
        font-size: 10px;
    }
    .dev-progress-wrap {
        max-width: 120px;
    }
}
/* ═══════════════════════════════════════════════════════
   CALENDAR - Dashboard & Booking Calendar
   ═══════════════════════════════════════════════════════ */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding: 12px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.calendar-day:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.calendar-day.other-month {
    color: var(--color-text-muted);
    opacity: 0.4;
    cursor: default;
}

.calendar-day.other-month:hover {
    transform: none;
    box-shadow: none;
}

.calendar-day.today {
    border-color: var(--color-primary);
    font-weight: 700;
}

.calendar-day.available {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: var(--color-success);
}

.calendar-day.booked {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: var(--color-error);
    cursor: pointer;
}

.calendar-day.booked:hover {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
}

.calendar-day.checkin {
    border-left: 4px solid var(--color-primary);
}

.calendar-day.checkin::before {
    content: '📥';
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 10px;
}

.calendar-day.checkout {
    border-right: 4px solid var(--color-secondary);
}

.calendar-day.checkout::after {
    content: '📤';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
}

/* Calendar Controls */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.calendar-month-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid transparent;
}

.legend-dot.available {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.legend-dot.booked {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.legend-dot.blocked {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.calendar-listing-selector {
    margin: 20px 0;
    padding: 15px 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.calendar-listing-selector label {
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.calendar-listing-selector select {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-listing-selector select:hover {
    border-color: var(--color-primary);
}

.calendar-listing-selector select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Booking Details Modal */
.booking-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-details-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--color-border);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.booking-details-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
}

.btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.booking-details-body {
    padding: 30px;
}

.booking-day-detail {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
}

.booking-day-detail:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.booking-day-detail:last-child {
    margin-bottom: 0;
}

.booking-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--color-border);
}

.status-badge {
    background: var(--color-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.booking-status-confirmed {
    color: var(--color-success);
    font-weight: 600;
}

.booking-status-pending {
    color: var(--color-warning);
    font-weight: 600;
}

.booking-day-detail p {
    margin: 8px 0;
    color: var(--color-text);
    line-height: 1.6;
}

.booking-day-detail strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Calendar Responsive */
@media (max-width: 768px) {
    .calendar-grid {
        gap: 4px;
        padding: 15px;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    .calendar-day-header {
        font-size: 0.75rem;
        padding: 8px 4px;
    }

    .calendar-legend {
        gap: 10px;
    }

    .legend-item {
        font-size: 0.75rem;
    }

    .legend-dot {
        width: 16px;
        height: 16px;
    }

    .booking-details-content {
        width: 95%;
    }

    .booking-details-header {
        padding: 20px;
    }

    .booking-details-header h3 {
        font-size: 1.25rem;
    }

    .booking-details-body {
        padding: 20px;
    }

    .booking-day-detail {
        padding: 15px;
    }
}

/* ═══════════════════════════════════════════════════════
   BOOKING CALENDAR - Mini Calendar for Availability
   ═══════════════════════════════════════════════════════ */

.booking-availability-section {
    padding: 25px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    border: 2px solid var(--color-border);
}

.availability-title {
    margin: 0 0 15px 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary);
}

.availability-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.availability-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cal-available-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid var(--color-success);
}

.cal-booked-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid var(--color-error);
}

.booking-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.month-calendar {
    background: white;
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.month-header {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
    font-family: var(--font-display);
}

.calendar-mini-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 6px 4px;
    text-transform: uppercase;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.cal-day.other-month {
    color: var(--color-text-muted);
    opacity: 0.3;
}

.cal-day.past {
    background: #f5f5f5;
    color: #ccc;
    text-decoration: line-through;
}

.cal-day.cal-available {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: var(--color-success);
    font-weight: 600;
}

.cal-day.cal-booked {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: var(--color-error);
    font-weight: 600;
}

/* Booking Calendar Responsive */
@media (max-width: 1024px) {
    .booking-calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-availability-section {
        padding: 20px 15px;
    }

    .booking-calendar-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .month-calendar {
        padding: 12px;
    }

    .calendar-mini-grid {
        gap: 3px;
    }

    .cal-day {
        font-size: 0.8rem;
    }

    .cal-day-header {
        font-size: 0.7rem;
        padding: 4px 2px;
    }
}

