/* ============================================
   ORGANIC BIOPHILIC DESIGN SYSTEM
   Meervilla MIVA 10 - Vacation Rental
   Nature-inspired theme for waterfront villa
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Color Palette - Organic Biophilic Nature */
    --primary: #2C5530;
    --primary-rgb: 44, 85, 48;
    --primary-dark: #1A3A1E;
    --primary-light: #3D7042;
    --secondary: #8B6914;
    --secondary-rgb: 139, 105, 20;
    --cta: #C67B5C;
    --cta-rgb: 198, 123, 92;
    --cta-hover: #B0694D;
    --cta-light: rgba(198, 123, 92, 0.15);
    --accent: #87CEEB;
    --accent-soft: rgba(135, 206, 235, 0.2);
    --background: #FAFAF5;
    --background-alt: #F0EDE5;
    --background-warm: #F5F0E1;
    --text: #2D3230;
    --text-rgb: 45, 50, 48;
    --text-light: #5A6B5E;
    --text-muted: #6B7B6E;
    --white: #FFFFFF;
    --white-rgb: 255, 255, 255;
    --black: #000000;

    /* Glass Effects - Nature tinted */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-bg-strong: rgba(255, 255, 255, 0.22);
    --glass-bg-dark: rgba(44, 85, 48, 0.08);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-border-strong: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(44, 85, 48, 0.1);
    --glass-shadow-lg: 0 25px 50px -12px rgba(44, 85, 48, 0.2);
    --glass-shadow-sm: 0 4px 16px rgba(44, 85, 48, 0.06);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(30px);

    /* Natural Shadows - Soft and organic */
    --shadow-sm: 0 2px 8px rgba(44, 85, 48, 0.06);
    --shadow-md: 0 4px 16px rgba(44, 85, 48, 0.08);
    --shadow-lg: 0 10px 30px -5px rgba(44, 85, 48, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(44, 85, 48, 0.15);

    /* Border Radius - Organic curves */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', 'Outfit', sans-serif;

    /* Transitions - Natural easing */
    --transition-micro: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms ease-out;
    --transition-fluid: 400ms ease-out;
    --transition-morph: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-micro);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top var(--transition-micro);
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--cta);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--background-alt);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fluid);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-icon {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    opacity: 0.6;
    transition: all var(--transition-micro);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover,
.lang-btn:focus {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    min-width: 44px;
    min-height: 44px;
    will-change: transform;
}

.btn-primary {
    background: var(--cta);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(198, 123, 92, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 123, 92, 0.5);
}

.btn-full {
    width: 100%;
    background: var(--cta);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(198, 123, 92, 0.4);
}

.btn-full:hover,
.btn-full:focus {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 123, 92, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

.hero-text {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7), 0 1px 6px rgba(0, 0, 0, 0.5);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-shadow: none;
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.stat i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
}

/* Booking Card - Liquid Glass */
.booking-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-strong);
    -webkit-backdrop-filter: var(--glass-blur-strong);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--glass-shadow-lg);
    transition: all var(--transition-fluid);
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(44, 85, 48, 0.25);
}

.booking-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.2),
        1px -1px 0 rgba(0, 0, 0, 0.2),
        -1px 1px 0 rgba(0, 0, 0, 0.2),
        1px 1px 0 rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: var(--white);
    font-size: 0.9375rem;
    cursor: pointer;
    min-height: 44px;
}

.input-group select:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(198, 123, 92, 0.3);
}

.input-group select option {
    background: var(--primary);
    color: var(--white);
}

.price-estimate {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0;
    color: var(--white);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta);
}

/* Hero Booking Calendar */
.hero-calendar {
    margin-bottom: 20px;
}

.hero-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hero-cal-month {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.15),
        1px -1px 0 rgba(0, 0, 0, 0.15),
        -1px 1px 0 rgba(0, 0, 0, 0.15),
        1px 1px 0 rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.hero-cal-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-cal-nav:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-cal-nav svg {
    width: 16px;
    height: 16px;
}

.hero-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.hero-cal-dayhead {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 0;
    letter-spacing: 0.05em;
}

.hero-cal-day {
    text-align: center;
    font-size: 0.75rem;
    padding: 5px 2px;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    line-height: 1.2;
    font-weight: 500;
}

.hero-cal-day.empty {
    visibility: hidden;
}

.hero-cal-day.booked {
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.hero-cal-day.available {
    cursor: pointer;
}

.hero-cal-day.available.weekend {
    color: #fff;
    background: rgba(76, 175, 80, 0.35);
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.hero-cal-day.available.weekend:hover {
    background: rgba(76, 175, 80, 0.55);
    transform: scale(1.1);
}

.hero-cal-day.available.midweek {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(38, 166, 154, 0.25);
    border: 1px solid rgba(38, 166, 154, 0.3);
}

.hero-cal-day.available.midweek:hover {
    background: rgba(38, 166, 154, 0.45);
    transform: scale(1.1);
}

.hero-cal-day.smart-pick {
    background: rgba(255, 183, 77, 0.45) !important;
    border: 2px solid rgba(255, 183, 77, 0.8) !important;
    color: #fff !important;
    font-weight: 700;
    animation: smartPickPulse 2s ease-in-out infinite;
}

@keyframes smartPickPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.4);
    }

    50% {
        box-shadow: 0 0 8px 3px rgba(255, 183, 77, 0.25);
    }
}

.hero-cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cta);
}

.hero-cal-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.35);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.legend-dot.available {
    background: rgba(76, 175, 80, 0.6);
}

.legend-dot.booked {
    background: rgba(255, 255, 255, 0.15);
}

.legend-dot.smart-pick {
    background: rgba(255, 183, 77, 0.7);
    box-shadow: 0 0 4px rgba(255, 183, 77, 0.4);
}

/* Smart Suggestion Banner - AI Powered */
.smart-suggestion {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(255, 183, 77, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 183, 77, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-smooth);
}

.smart-suggestion:empty {
    display: none;
}

.smart-suggestion:hover {
    border-color: rgba(255, 183, 77, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* AI Pulse Effect */
.smart-suggestion::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    animation: aiPulse 6s infinite ease-in-out;
}

@keyframes aiPulse {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.smart-suggestion-text {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
}

.smart-suggestion-text strong {
    color: #FFD700;
    /* Gold */
    font-weight: 700;
}

.smart-suggestion-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.smart-suggestion-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer {
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    font-size: 0.875rem;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Certified Trust Emblem - Premium Pro Max */
.trust-emblem {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-morph);
    margin-top: 20px;
    cursor: default;
    width: fit-content;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: emblemFadeIn 0.8s ease-out backwards;
}

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

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

.trust-emblem:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(139, 105, 20, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow:
        0 20px 50px -15px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(139, 105, 20, 0.2);
}

.trust-emblem-icon {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at 30% 30%, var(--secondary) 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Scalloped edge effect simulation */
.trust-emblem-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px dashed rgba(139, 105, 20, 0.4);
    border-radius: 50%;
    animation: emblemRotate 20s linear infinite;
    z-index: -1;
}

@keyframes emblemRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Shine effect */
.trust-emblem-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: rotate(25deg);
    animation: emblemShine 4s infinite;
}

@keyframes emblemShine {
    0% {
        left: -150%;
    }

    15% {
        left: 250%;
    }

    100% {
        left: 250%;
    }
}

.trust-emblem-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.trust-emblem-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--secondary);
    filter: brightness(1.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-emblem-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.trust-emblem-check {
    width: 24px;
    height: 24px;
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(44, 85, 48, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-fluid);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fluid);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(44, 85, 48, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: transform var(--transition-morph);
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */
.instagram-section {
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background-warm) 100%);
}

.instagram-handle {
    color: var(--cta);
    font-weight: 600;
    transition: color var(--transition-micro);
}

.instagram-handle:hover {
    color: var(--cta-hover);
    text-decoration: underline;
}

.instagram-feed {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(44, 85, 48, 0.2) transparent;
}

.instagram-feed::-webkit-scrollbar {
    height: 6px;
}

.instagram-feed::-webkit-scrollbar-track {
    background: transparent;
}

.instagram-feed::-webkit-scrollbar-thumb {
    background: rgba(44, 85, 48, 0.2);
    border-radius: 3px;
}

.instagram-card {
    flex: 0 0 280px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all var(--transition-fluid);
    box-shadow: var(--shadow-md);
}

.instagram-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fluid);
}

.instagram-card:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-fluid);
}

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

.instagram-overlay i {
    width: 28px;
    height: 28px;
    color: #ff4757;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.instagram-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.instagram-cta-card {
    flex: 0 0 220px;
    height: 280px;
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-align: center;
}

.instagram-cta-inner i {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.instagram-cta-inner span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.instagram-cta-handle {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .instagram-card {
        flex: 0 0 220px;
        height: 220px;
    }

    .instagram-cta-card {
        flex: 0 0 180px;
        height: 220px;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 85, 48, 0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================
   WEATHER FORECAST SECTION
   ============================================ */
.weather-section {
    margin-top: 60px;
}

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

.section-header--sub h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-header--sub p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.weather-forecast {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
}

.weather-forecast::-webkit-scrollbar {
    height: 6px;
}

.weather-forecast::-webkit-scrollbar-track {
    background: transparent;
}

.weather-forecast::-webkit-scrollbar-thumb {
    background: rgba(44, 85, 48, 0.2);
    border-radius: 3px;
}

.weather-forecast::-webkit-scrollbar-thumb:hover {
    background: rgba(44, 85, 48, 0.4);
}

.weather-day {
    flex: 0 0 auto;
    min-width: 110px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid rgba(44, 85, 48, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition-fluid);
    position: relative;
    overflow: hidden;
}

.weather-day::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.04) 0%, rgba(139, 105, 20, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.weather-day:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(44, 85, 48, 0.2);
}

.weather-day:hover::before {
    opacity: 1;
}

.weather-day.today {
    border-color: var(--cta);
    box-shadow: 0 4px 16px rgba(198, 123, 92, 0.2);
}

.weather-day.today .weather-day-name {
    color: var(--cta);
    font-weight: 700;
}

.weather-day-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.weather-day-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.weather-day-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.weather-day-icon svg {
    width: 32px;
    height: 32px;
}

.weather-day-temp {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.weather-temp-high {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.weather-temp-low {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.weather-day-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.3;
}

/* Weather loading state */
.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    width: 100%;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.weather-spinner {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   NEARBY ACTIVITIES SECTION
   ============================================ */
.activities-section {
    margin-top: 60px;
}

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

.activity-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(44, 85, 48, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fluid);
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}

.activity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fluid);
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(44, 85, 48, 0.15);
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-card-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-morph);
}

.activity-card:hover .activity-card-icon {
    transform: scale(1.08) rotate(3deg);
}

.activity-card-icon svg {
    width: 22px;
    height: 22px;
}

.activity-card-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.activity-card-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.activity-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.activity-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.activity-card-meta svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.activity-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.activity-card-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 6px;
}

.activity-card-badge.culture {
    background: rgba(139, 105, 20, 0.1);
    color: var(--secondary);
}

.activity-card-badge.nature {
    background: rgba(44, 85, 48, 0.1);
    color: var(--primary);
}

.activity-card-badge.sport {
    background: rgba(198, 123, 92, 0.1);
    color: var(--cta);
}

.activity-card-badge.family {
    background: rgba(76, 175, 80, 0.1);
    color: #388E3C;
}

.activity-card-badge.food {
    background: rgba(255, 152, 0, 0.1);
    color: #E65100;
}

.activity-card-badge.market {
    background: rgba(156, 39, 176, 0.1);
    color: #7B1FA2;
}


/* ============================================
   AVAILABILITY & CALENDAR
   ============================================ */
.availability-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.availability-info h2 {
    margin-bottom: 16px;
}

.availability-info>p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.price-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(44, 85, 48, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.price-tag:hover {
    border-color: rgba(44, 85, 48, 0.2);
    box-shadow: var(--shadow-sm);
}

.price-tag span:first-child {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.price-tag strong {
    color: var(--primary);
    font-size: 1.125rem;
}

/* Calendar */
.calendar-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

#calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#calendar-header button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-alt);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    transition: all var(--transition-micro);
}

#calendar-header button:hover,
#calendar-header button:focus {
    background: var(--primary);
    color: var(--white);
}

#calendar-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

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

.calendar-day-head {
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 12px 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    min-width: 44px;
    min-height: 44px;
    transition: all var(--transition-micro);
}

.calendar-day.available {
    background: var(--background-alt);
    color: var(--primary);
    cursor: pointer;
}

.calendar-day.available:hover,
.calendar-day.available:focus {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.calendar-day.booked {
    background: rgba(44, 85, 48, 0.08);
    color: var(--text-muted);
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--cta);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(198, 123, 92, 0.4);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.dot.available {
    background: var(--background-alt);
    border: 2px solid var(--primary);
}

.dot.booked {
    background: rgba(44, 85, 48, 0.08);
}

.dot.selected {
    background: var(--cta);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: var(--white);
    color: var(--primary);
}

.logo-icon-lucide {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 8px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: var(--primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity var(--transition-micro);
}

.footer-links a:hover,
.footer-links a:focus {
    opacity: 1;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 4px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* ============================================
   CHATBOT WIDGET - LIQUID GLASS
   ============================================ */
.chatbot-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all var(--transition-fluid);
    animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(44, 85, 48, 0.3);
    }

    50% {
        box-shadow: 0 8px 32px rgba(44, 85, 48, 0.5);
    }
}

.chatbot-toggle:hover,
.chatbot-toggle:focus {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(44, 85, 48, 0.4);
}

.chatbot-toggle.active {
    background: var(--cta);
    animation: none;
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-height: 600px;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-strong);
    -webkit-backdrop-filter: var(--glass-blur-strong);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow-lg);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-fluid);
    overflow: hidden;
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.chatbot-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chatbot-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.chatbot-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.chatbot-messages {
    height: 350px;
    overflow-y: auto;
    padding: 20px;
    scroll-behavior: smooth;
}

.chat-message {
    margin-bottom: 16px;
    animation: message-appear 0.3s ease-out;
}

@keyframes message-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.chat-message.user {
    text-align: right;
}

.chat-message .bubble {
    display: inline-block;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.bot .bubble {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--white);
    border-top-left-radius: 4px;
}

.chat-message.user .bubble {
    background: var(--cta);
    color: var(--white);
    border-top-right-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing-bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.chatbot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
}

.quick-action {
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8125rem;
    transition: all var(--transition-micro);
    min-height: 36px;
}

.quick-action:hover,
.quick-action:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--glass-border-strong);
}

.chatbot-input {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9375rem;
    min-height: 44px;
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(198, 123, 92, 0.3);
}

.chatbot-input button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--cta);
    border-radius: var(--radius-full);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-micro);
}

.chatbot-input button:hover,
.chatbot-input button:focus {
    background: var(--cta-hover);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .booking-card {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

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

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

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .nav {
        height: 70px;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .calendar-grid {
        gap: 4px;
    }

    .calendar-day {
        font-size: 0.8125rem;
        min-width: 36px;
        min-height: 36px;
    }

    .chatbot-window {
        width: calc(100% - 48px);
        right: 24px;
        left: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

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

    .weather-day {
        min-width: 95px;
        padding: 16px 12px;
    }

    .weather-section,
    .activities-section {
        margin-top: 40px;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .booking-card {
        padding: 24px;
    }

    .lang-switcher {
        gap: 4px;
    }

    .lang-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1rem;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* ============================================
   OWNER TOP BAR
   ============================================ */
.owner-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    animation: topbarShimmer 8s ease-in-out infinite;
}

@keyframes topbarShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.owner-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.owner-topbar-text {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.owner-topbar-text i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.owner-topbar-text strong {
    color: #FFD54F;
    font-weight: 700;
}

.owner-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all var(--transition-micro);
    white-space: nowrap;
}

.owner-topbar-link:hover,
.owner-topbar-link:focus {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

.owner-topbar-link.active {
    background: rgba(255, 213, 79, 0.25);
    border-color: rgba(255, 213, 79, 0.4);
}

/* ============================================
   BREADCRUMB NAVIGATION (SEO)
   ============================================ */
.breadcrumb {
    background: transparent;
    padding: 0 0 20px;
    margin-bottom: 8px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8125rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-micro);
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item.active {
    color: rgba(255, 213, 79, 0.8);
}

/* Adjust header and hero for topbar + breadcrumb */
.header {
    top: 38px;
}

.hero {
    padding-top: 118px;
}

/* ============================================
   OWNER PAGE STYLES
   ============================================ */
.owner-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.owner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 105, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.owner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.owner-hero-text h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.owner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.owner-price-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    margin-bottom: 32px;
}

.owner-price-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.owner-price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD54F;
    line-height: 1;
}

.owner-price-note {
    font-size: 0.8125rem;
    opacity: 0.7;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Owner Steps */
.owner-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.owner-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all var(--transition-fluid);
}

.owner-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.owner-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.owner-step h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.owner-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.owner-step-arrow {
    display: flex;
    align-items: center;
    color: var(--primary);
    opacity: 0.3;
}

.owner-step-arrow i {
    width: 32px;
    height: 32px;
}

/* Owner CTA Section */
.owner-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

.owner-cta-content>p {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.owner-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.owner-cta-price {
    font-size: 1rem;
    opacity: 0.7;
}

.owner-cta-price strong {
    color: #FFD54F;
    font-size: 1.25rem;
}

/* Owner hero buttons */
.owner-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(44, 85, 48, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-fluid);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.15);
}

.pricing-card.featured {
    border-color: #C67B5C;
    box-shadow: 0 12px 48px rgba(198, 123, 92, 0.2);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 64px rgba(198, 123, 92, 0.3);
}

.pricing-badge {
    background: linear-gradient(135deg, #C67B5C 0%, #D4956F 100%);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(44, 85, 48, 0.08);
}

.pricing-tier {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 12px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    color: #C67B5C;
}

.pricing-period {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-features {
    padding: 24px 28px;
    flex: 1;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(44, 85, 48, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-features li.included {
    color: var(--text);
}

.pricing-features li.included i {
    color: var(--primary);
}

.pricing-features li.included.highlight {
    font-weight: 600;
    color: var(--primary-dark);
}

.pricing-features li.excluded {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.excluded i {
    color: #ccc;
}

.pricing-footer {
    padding: 20px 28px 28px;
    text-align: center;
    margin-top: auto;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-micro);
    text-decoration: none;
}

.btn-pricing:hover,
.btn-pricing:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 85, 48, 0.3);
    color: var(--white);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #C67B5C 0%, #D4956F 100%);
}

.btn-pricing-featured:hover,
.btn-pricing-featured:focus {
    background: linear-gradient(135deg, #b56a4d 0%, #c58460 100%);
    box-shadow: 0 8px 24px rgba(198, 123, 92, 0.4);
}

.pricing-hosting {
    display: block;
    margin-top: 12px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px 24px;
    background: rgba(44, 85, 48, 0.04);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   ROI CHART
   ============================================ */
.roi-section {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(44, 85, 48, 0.03) 100%);
}

.roi-chart {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roi-bar-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roi-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.roi-scenario {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
}

.roi-bookings {
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.roi-bar-wrapper {
    background: rgba(44, 85, 48, 0.06);
    border-radius: var(--radius-full);
    height: 44px;
    overflow: hidden;
    position: relative;
}

.roi-bar {
    height: 100%;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 16px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.roi-chart.animated .roi-bar {
    width: var(--bar-width);
}

.roi-bar-base {
    background: linear-gradient(135deg, #94a89a 0%, #b8c9bb 100%);
    transition-delay: 0s;
}

.roi-bar-starter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition-delay: 0.15s;
}

.roi-bar-premium {
    background: linear-gradient(135deg, #C67B5C 0%, #D4956F 100%);
    transition-delay: 0.3s;
}

.roi-bar-vip {
    background: linear-gradient(135deg, #8B6914 0%, #C9A227 100%);
    transition-delay: 0.45s;
}

.roi-bar-text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease 1.4s;
}

.roi-chart.animated .roi-bar-text {
    opacity: 1;
}

.roi-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.06) 0%, rgba(198, 123, 92, 0.06) 100%);
    border: 1px solid rgba(44, 85, 48, 0.12);
    border-radius: var(--radius-xl);
    color: var(--text);
}

.roi-callout i {
    color: #C67B5C;
    margin-top: 2px;
}

.roi-callout p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.roi-callout strong {
    color: var(--primary-dark);
}

/* ============================================
   COMMISSION SAVINGS SECTION
   ============================================ */
.commission-section {
    max-width: 800px;
    margin: 48px auto 0;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(44, 85, 48, 0.1);
    box-shadow: 0 8px 32px rgba(44, 85, 48, 0.08);
}

.commission-header {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

.commission-header i {
    color: #C67B5C;
}

.commission-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.commission-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.commission-intro strong {
    color: var(--primary);
}

.commission-compare {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
}

.commission-card {
    flex: 1;
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.commission-europarcs {
    background: linear-gradient(135deg, rgba(180, 60, 50, 0.06) 0%, rgba(180, 60, 50, 0.02) 100%);
    border: 1px solid rgba(180, 60, 50, 0.15);
}

.commission-own {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.06) 0%, rgba(44, 85, 48, 0.02) 100%);
    border: 1px solid rgba(44, 85, 48, 0.2);
}

.commission-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.commission-europarcs .commission-card-header {
    color: #a04030;
}

.commission-own .commission-card-header {
    color: var(--primary);
}

.commission-percentage {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.commission-europarcs .commission-percentage {
    color: #b43c32;
}

.commission-own .commission-percentage {
    color: var(--primary);
}

.commission-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.commission-example {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.commission-week {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.commission-cost {
    font-size: 0.9375rem;
    font-weight: 600;
}

.commission-europarcs .commission-cost {
    color: #b43c32;
}

.commission-own .commission-cost {
    color: var(--primary);
}

.commission-result {
    font-size: 0.9375rem;
    color: var(--text);
    margin-top: 4px;
}

.commission-result strong {
    font-size: 1.25rem;
}

.commission-europarcs .commission-result strong {
    color: #b43c32;
}

.commission-own .commission-result strong {
    color: var(--primary);
}

.commission-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    flex-shrink: 0;
}

.commission-vs span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
}

.commission-savings-highlight {
    text-align: center;
    margin-bottom: 32px;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #C67B5C 0%, #D4956F 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 20px rgba(198, 123, 92, 0.35);
}

.commission-payback {
    margin-bottom: 32px;
}

.commission-payback h4 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.payback-item {
    background: rgba(44, 85, 48, 0.03);
    border: 1px solid rgba(44, 85, 48, 0.08);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.payback-item.payback-featured {
    background: rgba(198, 123, 92, 0.06);
    border-color: rgba(198, 123, 92, 0.2);
}

.payback-package {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 4px;
}

.payback-featured .payback-package {
    color: #C67B5C;
}

.payback-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.payback-calc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payback-bookings {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.payback-featured .payback-bookings {
    color: #C67B5C;
}

.payback-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.commission-section .roi-callout {
    margin-top: 0;
}

/* Commission responsive */
@media (max-width: 768px) {
    .commission-section {
        padding: 28px 20px;
        margin: 32px auto 0;
    }

    .commission-header h3 {
        font-size: 1.25rem;
    }

    .commission-compare {
        flex-direction: column;
        gap: 0;
    }

    .commission-vs {
        padding: 12px 0;
    }

    .commission-percentage {
        font-size: 2.5rem;
    }

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

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

    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
        order: -1;
    }
}

@media (max-width: 768px) {
    .owner-topbar {
        font-size: 0.6875rem;
        padding: 6px 0;
    }

    .owner-topbar-inner {
        gap: 8px;
    }

    .owner-topbar-text i {
        display: none;
    }

    .header {
        top: 34px;
    }

    .hero {
        padding-top: 104px;
    }

    .owner-hero {
        padding: 130px 0 60px;
    }

    .owner-hero-text h1 {
        font-size: 2rem;
    }

    .owner-price-amount {
        font-size: 2.5rem;
    }

    .owner-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .owner-steps {
        flex-direction: column;
        gap: 16px;
    }

    .owner-step-arrow {
        transform: rotate(90deg);
    }

    .owner-cta-content h2 {
        font-size: 1.875rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
        max-width: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .roi-bar-wrapper {
        height: 38px;
    }

    .roi-scenario {
        font-size: 0.8125rem;
    }

    .roi-callout {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .owner-topbar-text span[data-i18n] {
        font-size: 0.625rem;
    }

    .owner-topbar-link {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .pricing-header {
        padding: 24px 20px 20px;
    }

    .pricing-features {
        padding: 20px;
    }

    .pricing-footer {
        padding: 16px 20px 24px;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .header,
    .chatbot-toggle,
    .chatbot-window,
    .owner-topbar {
        display: none !important;
    }

    .hero {
        min-height: auto;
        page-break-after: always;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: var(--background-warm);
}

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

.review-card {
    background: var(--white);
    border: 1px solid rgba(44, 85, 48, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-fluid);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(44, 85, 48, 0.08);
    line-height: 1;
}

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

.review-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    border: none;
    padding: 0;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(44, 85, 48, 0.08);
}

.review-name {
    font-weight: 600;
    color: var(--primary);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    min-height: 400px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(44, 85, 48, 0.06);
    transition: all var(--transition-smooth);
}

.location-detail:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.location-detail i {
    color: var(--cta);
    margin-top: 2px;
}

.location-detail strong {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.location-detail p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

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

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(44, 85, 48, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(44, 85, 48, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    transition: background var(--transition-micro);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question:hover {
    background: rgba(44, 85, 48, 0.03);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--cta);
    transition: transform var(--transition-smooth);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-banner-inner a {
    color: var(--cta);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
    padding-top: 140px;
}

.legal-container {
    max-width: 800px;
}

.legal-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(44, 85, 48, 0.1);
}

.legal-container p,
.legal-container li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.legal-container ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-container li {
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--cta);
    text-decoration: underline;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-section {
    padding-top: 140px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-container h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary);
    margin: 24px 0 8px;
    line-height: 1;
}

.error-container h2 {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.error-container p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ============================================
   FOOTER LEGAL LINKS
   ============================================ */
.footer-legal-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 12px;
}

.footer-legal-links a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity var(--transition-micro);
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}