/* ═══════════════════════════════════════════════════════════
   AIRBNB-INSPIRED DESIGN SYSTEM
   - Clean, minimal, photo-focused
   - Rounded corners, soft shadows
   - Generous whitespace
   - Clear typography hierarchy
═══════════════════════════════════════════════════════════ */

:root {
    /* Colors - Airbnb inspired */
    --white: #ffffff;
    --gray-50: #f7f7f7;
    --gray-100: #ebebeb;
    --gray-200: #dddddd;
    --gray-300: #b0b0b0;
    --gray-400: #717171;
    --gray-500: #222222;
    --black: #000000;
    
    /* Brand */
    --primary: #FF385C;
    --primary-dark: #E31C5F;
    --primary-light: #FF5A76;
    
    /* Accent */
    --teal: #008489;
    --gold: #C4A35A;
    
    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius - Airbnb style */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-xl: 0 8px 28px rgba(0,0,0,0.15);
    --shadow-hover: 0 6px 20px rgba(0,0,0,0.2);
    
    /* Transitions */
    --ease: cubic-bezier(0.2, 0, 0, 1);
    --duration: 0.25s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-500);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 744px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

@media (min-width: 1128px) {
    .container {
        padding: 0 80px;
    }
}

/* ═══════════════════════════════════════════════════════════
   HEADER - Modern Airbnb style sticky header
═══════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--duration) var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 744px) {
    .header-inner {
        padding: 0 var(--space-2xl);
    }
}

.logo {
    display: flex;
    align-items: center;
    height: 51px;
    transition: transform var(--duration) var(--ease);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 100%;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--duration) var(--ease);
}

.nav-link:hover {
    background: var(--gray-50);
    color: var(--gray-500);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Language Dropdown - Modern */
.language-dropdown {
    position: relative;
    display: none;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    transition: all var(--duration) var(--ease);
    cursor: pointer;
}

.lang-dropdown-btn:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.lang-current {
    font-weight: 600;
}

.lang-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--duration) var(--ease);
}

.lang-dropdown-menu.show + .lang-dropdown-btn .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s var(--ease);
    z-index: 100;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    transition: background var(--duration) var(--ease);
}

.lang-option:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lang-option:hover {
    background: var(--gray-50);
}

.lang-option.active {
    color: var(--primary);
    background: rgba(255, 56, 92, 0.05);
}

.lang-option svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform var(--duration) var(--ease);
}

.menu-btn:hover {
    transform: scale(1.1);
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-500);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.menu-btn:hover span {
    background: var(--primary);
}

@media (min-width: 744px) {
    .nav {
        display: flex;
    }
    .language-dropdown {
        display: block;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU - Airbnb Style Clean Design
═══════════════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-logo {
    height: 36px;
}

.mobile-menu-logo img {
    height: 100%;
    width: auto;
}

.close-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    transition: all 0.3s var(--ease);
}

.close-btn:hover {
    background: var(--gray-100);
    transform: rotate(90deg) scale(1.05);
}

.close-btn svg {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-sm);
    overflow-y: auto;
}

.mobile-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s var(--ease);
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease);
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    transform: scaleY(1);
}

.mobile-nav-link:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
    transform: translateX(4px);
}

.mobile-nav-link svg {
    width: 22px;
    height: 22px;
    color: var(--gray-400);
    transition: all 0.3s var(--ease);
}

.mobile-nav-link:hover svg {
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-nav-link.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    margin-top: var(--space-lg);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.25);
}

.mobile-nav-link.primary::before {
    display: none;
}

.mobile-nav-link.primary svg {
    color: var(--white);
}

.mobile-nav-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 56, 92, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.mobile-language-switcher {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-lang-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-lang-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.mobile-lang-link {
    padding: var(--space-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
    text-align: center;
}

.mobile-lang-link:hover {
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.mobile-lang-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   HERO - Full width image with search
═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

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

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

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

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.hero-title {
    font-size: clamp(32px, 8vw, 28px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-xl);
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--white);
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--duration) var(--ease);
}

.hero-cta:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   SEARCH BAR - Hotel style with icons
═══════════════════════════════════════════════════════════ */
.search-bar {
    position: relative;
    z-index: 10;
    margin-top: -36px;
    padding: 0 var(--space-lg);
}

.search-inner {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 16px;
    border: 1px solid var(--gray-100);
}

.search-field {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: background var(--duration) var(--ease);
}

.search-field:hover {
    background: var(--gray-50);
}

.search-field-icon {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    flex-shrink: 0;
}

.search-field-icon svg {
    width: 100%;
    height: 100%;
}

.search-field-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.search-field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.search-field-value {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 400;
}

.search-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.search-btn {
    min-width: 90px;
    height: 42px;
    background: #e57373;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease);
    margin-left: 6px;
    border: none;
    cursor: pointer;
}

.search-btn:hover {
    background: #d32f2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 115, 115, 0.4);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 743px) {
    .search-bar {
        margin-top: -24px;
        padding: 0 var(--space-md);
    }
    .search-inner {
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .search-field {
        width: 100%;
        padding: 14px 12px;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }
    .search-field:last-of-type {
        border-bottom: none;
    }
    .search-field:hover {
        background: var(--gray-50);
        border-radius: 12px;
    }
    .search-divider {
        display: none;
    }
    .search-btn {
        width: 100%;
        height: 52px;
        border-radius: 12px;
        margin-left: 0;
        margin-top: 12px;
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION STYLES
═══════════════════════════════════════════════════════════ */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-500);
}

@media (min-width: 744px) {
    .section-title {
        font-size: 28px;
    }
}

.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    margin: calc(var(--space-sm) * -1);
    border-radius: var(--radius-sm);
    transition: background var(--duration) var(--ease);
}

.section-link:hover {
    background: var(--gray-50);
    text-decoration: underline;
}

.section-link svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════════════════════
   VILLA CARDS - Airbnb listing style
═══════════════════════════════════════════════════════════ */
.villas-grid {
    display: grid;
    gap: var(--space-lg);
}

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

.villa-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.villa-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.villa-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.villa-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 10px;
    background: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.villa-favorite {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    transition: transform var(--duration) var(--ease);
}

.villa-favorite:hover {
    transform: scale(1.1);
}

.villa-favorite svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.villa-favorite.active svg {
    fill: var(--primary);
    stroke: var(--primary);
}

.villa-image-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.villa-image-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity var(--duration);
}

.villa-image-dot.active {
    opacity: 1;
}

.villa-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.villa-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.villa-location {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
}

.villa-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 400;
}

.villa-rating svg {
    width: 14px;
    height: 14px;
}

.villa-host {
    font-size: 15px;
    color: var(--gray-400);
}

.villa-details {
    font-size: 15px;
    color: var(--gray-400);
}

.villa-price {
    font-size: 15px;
    margin-top: var(--space-sm);
}

.villa-price strong {
    font-weight: 600;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES - Icon cards
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   WHY US SECTION - Ultra Minimal 2026
═══════════════════════════════════════════════════════════ */
.why-us-section {
    background: var(--gray-50);
}

.why-us-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.why-us-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.why-us-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: -0.02em;
}

.why-us-features {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-sm);
}

@media (min-width: 744px) {
    .why-us-features {
        padding: var(--space-md);
    }
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    position: relative;
}

@media (min-width: 744px) {
    .why-us-item {
        padding: var(--space-xl) var(--space-2xl);
        gap: var(--space-lg);
    }
}

.why-us-item:hover {
    transform: translateX(4px);
}

.why-us-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.why-us-item:hover .why-us-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.05);
}

.why-us-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
    transition: all 0.3s var(--ease);
}

.why-us-item:hover .why-us-icon svg {
    color: var(--white);
}

.why-us-icon.airbnb-icon svg {
    width: 24px;
    height: 24px;
}

.why-us-content {
    flex: 1;
    min-width: 0;
}

.why-us-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

@media (min-width: 744px) {
    .why-us-content h3 {
        font-size: 17px;
    }
}

.why-us-content p {
    font-size: 13px;
    color: var(--gray-400);
    margin: 0;
}

@media (min-width: 744px) {
    .why-us-content p {
        font-size: 14px;
    }
}

.why-us-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-500);
    white-space: nowrap;
    transition: all 0.3s var(--ease);
}

@media (max-width: 480px) {
    .why-us-badge {
        display: none;
    }
}

.why-us-item:hover .why-us-badge {
    background: var(--gray-500);
    color: var(--white);
}

.why-us-badge.superhost {
    background: linear-gradient(135deg, #FF385C 0%, #E31C5F 100%);
    color: var(--white);
}

.why-us-item:hover .why-us-badge.superhost {
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.4);
}

.why-us-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
    margin: var(--space-xs) var(--space-xl);
}

@media (min-width: 744px) {
    .why-us-divider {
        margin: var(--space-sm) var(--space-3xl);
    }
}

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE CARDS
═══════════════════════════════════════════════════════════ */
.experiences-grid {
    display: grid;
    gap: var(--space-md);
}

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

.exp-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.exp-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.exp-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS - Testimonial section
═══════════════════════════════════════════════════════════ */
.reviews {
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    gap: var(--space-lg);
}

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

.review-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    flex: 1;
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
}

.review-date {
    font-size: 14px;
    color: var(--gray-400);
}

.review-rating {
    display: flex;
    gap: 2px;
    color: var(--gray-500);
}

.review-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.review-text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION MAP
═══════════════════════════════════════════════════════════ */
.location-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 744px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.location-map {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.location-pin svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    transform: rotate(45deg);
}

.location-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.location-info p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.location-stat {
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.location-stat-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.location-stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER - Modern Split Design
═══════════════════════════════════════════════════════════ */
.cta-modern-section {
    background: var(--gray-50);
}

.cta-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

@media (min-width: 744px) {
    .cta-modern {
        grid-template-columns: 280px 1fr;
        padding: var(--space-3xl);
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .cta-modern {
        grid-template-columns: 320px 1fr;
        padding: var(--space-3xl) var(--space-4xl);
    }
}

.cta-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 744px) {
    .cta-visual {
        height: 280px;
    }
}

.cta-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8A9B 50%, #FFB7C3 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
    opacity: 0.9;
}

@media (min-width: 744px) {
    .cta-blob {
        width: 240px;
        height: 240px;
    }
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%; }
    75% { border-radius: 40% 30% 60% 50% / 60% 50% 40% 30%; }
}

.cta-icon-group {
    position: relative;
    z-index: 2;
}

.cta-floating-icon {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: float 3s ease-in-out infinite;
}

.cta-floating-icon svg {
    color: var(--primary);
}

.cta-icon-1 {
    width: 64px;
    height: 64px;
    top: -40px;
    left: -20px;
    animation-delay: 0s;
}

.cta-icon-1 svg {
    width: 28px;
    height: 28px;
}

.cta-icon-2 {
    width: 52px;
    height: 52px;
    top: 20px;
    right: -30px;
    animation-delay: 0.5s;
}

.cta-icon-2 svg {
    width: 22px;
    height: 22px;
}

.cta-icon-3 {
    width: 48px;
    height: 48px;
    bottom: -20px;
    left: 10px;
    animation-delay: 1s;
}

.cta-icon-3 svg {
    width: 20px;
    height: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-content {
    text-align: center;
}

@media (min-width: 744px) {
    .cta-content {
        text-align: left;
    }
}

.cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.cta-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--gray-500);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.cta-title span {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8A9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

@media (min-width: 744px) {
    .cta-desc {
        font-size: 17px;
    }
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 744px) {
    .cta-actions {
        justify-content: flex-start;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.5);
}

.cta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: var(--white);
    color: #25D366;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid #25D366;
    transition: all 0.3s var(--ease);
}

.cta-btn-secondary:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.cta-btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER - Airbnb style
═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
}

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

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

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: var(--space-md);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--duration);
}

.footer-col a:hover {
    color: var(--gray-500);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.footer-copy {
    font-size: 14px;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-500);
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    background: var(--gray-500);
    border-color: var(--gray-500);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════════════════════════ */
.whatsapp-fab {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 90;
}

.whatsapp-fab a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--duration) var(--ease);
}

.whatsapp-fab a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SEARCH MODAL & PICKERS - Airbnb Style
═══════════════════════════════════════════════════════════ */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

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

.search-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

.search-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s var(--ease);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Picker Header */
.picker-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: 10;
}

.picker-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--duration) var(--ease);
}

.picker-close:hover {
    background: var(--gray-50);
}

.picker-close svg {
    width: 16px;
    height: 16px;
}

.picker-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   LOCATION PICKER
═══════════════════════════════════════════════════════════ */
.location-picker {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.location-option:hover {
    border-color: var(--gray-500);
}

.location-option.selected {
    border-color: var(--gray-500);
    background: var(--gray-50);
}

.location-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-option.selected .location-icon {
    background: var(--gray-500);
    color: var(--white);
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-info {
    flex: 1;
}

.location-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.location-desc {
    font-size: 14px;
    color: var(--gray-400);
}

.location-check {
    width: 24px;
    height: 24px;
    background: var(--gray-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   DATE PICKER - Airbnb Calendar Style
═══════════════════════════════════════════════════════════ */
.date-picker-container {
    padding: var(--space-lg);
}

.date-picker-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.date-input {
    padding: var(--space-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.date-input.active {
    border-color: var(--gray-500);
    background: var(--gray-50);
}

.date-input label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.date-input .date-value {
    font-size: 16px;
    color: var(--gray-500);
}

/* Calendar */
.calendar-navigation {
    position: relative;
    height: 0;
}

.calendar-nav-btn {
    position: absolute;
    top: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    z-index: 10;
}

.calendar-nav-btn:hover:not(:disabled) {
    border-color: var(--gray-500);
    background: var(--gray-50);
    transform: scale(1.05);
}

.calendar-nav-btn:disabled {
    cursor: not-allowed;
}

.calendar-nav-btn svg {
    width: 16px;
    height: 16px;
}

.calendar-nav-btn.prev {
    left: 0;
}

.calendar-nav-btn.next {
    right: 0;
}

@media (max-width: 743px) {
    .calendar-nav-btn.prev {
        left: 10px;
    }
    
    .calendar-nav-btn.next {
        right: 10px;
    }
}

.date-picker-calendar {
    display: grid;
    gap: var(--space-2xl);
}

@media (min-width: 744px) {
    .date-picker-calendar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 743px) {
    .date-picker-calendar {
        max-height: 55vh;
        overflow-y: auto;
        padding-right: var(--space-sm);
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.calendar-month {
    min-width: 0;
}

.calendar-header {
    margin-bottom: var(--space-md);
}

.calendar-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.calendar-days-header div {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    padding: var(--space-sm) 0;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.calendar-day:not(.empty):not(.disabled):hover {
    border-color: var(--gray-500);
    background: var(--gray-50);
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.disabled {
    color: var(--gray-300);
    text-decoration: line-through;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--gray-500);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.in-range {
    background: var(--gray-50);
    border-radius: 0;
}

.calendar-day.start {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.calendar-day.end {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.calendar-day.start.end {
    border-radius: var(--radius-sm);
}

.date-picker-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-clear {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: underline;
    transition: color var(--duration) var(--ease);
}

.btn-clear:hover {
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════
   GUEST PICKER - Airbnb Style
═══════════════════════════════════════════════════════════ */
.guest-picker {
    padding: var(--space-lg);
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--gray-100);
}

.guest-row:last-child {
    border-bottom: none;
}

.guest-info {
    flex: 1;
}

.guest-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.guest-desc {
    font-size: 14px;
    color: var(--gray-400);
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.guest-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--duration) var(--ease);
}

.guest-btn:not(.disabled):hover {
    border-color: var(--gray-500);
    background: var(--gray-50);
}

.guest-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guest-btn svg {
    width: 12px;
    height: 12px;
}

.guest-count {
    min-width: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-500);
}

/* Mobile Responsive */
@media (max-width: 743px) {
    .search-modal {
        padding: 0;
    }
    
    .search-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .date-picker-calendar {
        grid-template-columns: 1fr;
    }
}

/* Hide month navigation on mobile */
@media (max-width: 743px) {
    .calendar-navigation {
        display: none;
    }
}

/* Continue Button */
.btn-continue {
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

/* Smooth modal content transition */
.search-modal-content {
    transition: opacity 0.2s ease;
}

/* ============================================
   PREMIUM LOCATION SECTION WITH INTERACTIVE MAP
   ============================================ */

.location-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.location-section .section-description {
    text-align: center;
    font-size: 18px;
    color: var(--gray-400);
    margin-top: var(--space-sm);
    font-weight: 500;
}

.location-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 992px) {
    .location-premium-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-3xl);
    }
}

/* Interactive Google Map */
.location-map-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.google-map {
    width: 100%;
    height: 100%;
    filter: saturate(1.1) contrast(1.05);
}

.map-overlay-info {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    z-index: 10;
    animation: slideInLeft 0.6s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 320px;
}

.map-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.map-info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.map-info-content {
    flex: 1;
}

.map-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.map-info-address {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .location-map-container {
        height: 400px;
    }
    
    .map-overlay-info {
        top: var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
    }
    
    .map-info-card {
        max-width: none;
        padding: var(--space-md);
    }
    
    .map-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-info-title {
        font-size: 16px;
    }
    
    .map-info-address {
        font-size: 12px;
    }
}

/* Location Details Cards */
.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.location-detail-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    transition: all var(--duration) var(--ease);
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out both;
}

.location-detail-card:nth-child(1) { animation-delay: 0.1s; }
.location-detail-card:nth-child(2) { animation-delay: 0.2s; }
.location-detail-card:nth-child(3) { animation-delay: 0.3s; }
.location-detail-card:nth-child(4) { animation-delay: 0.4s; }

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

.location-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.location-detail-card.highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-color: var(--primary-light);
}

.location-detail-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease);
}

.location-detail-card:hover .location-detail-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.location-detail-card:hover .location-detail-icon svg {
    stroke: white;
}

.location-detail-card.highlight .location-detail-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.location-detail-card.highlight .location-detail-icon svg {
    stroke: white;
}

.location-detail-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gray-500);
    transition: stroke var(--duration) var(--ease);
}

.location-detail-content {
    flex: 1;
}

.location-detail-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.location-detail-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 8px;
}

.location-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-500);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-badge.premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.3);
}

/* Directions Button */
.directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.directions-btn svg {
    width: 20px;
    height: 20px;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 56, 92, 0.4);
}

.directions-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .location-detail-card {
        padding: var(--space-lg);
    }
    
    .location-detail-icon {
        width: 48px;
        height: 48px;
    }
    
    .location-detail-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .location-detail-content h4 {
        font-size: 16px;
    }
    
    .location-detail-content p {
        font-size: 14px;
    }
}

/* ============================================

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

/* Map Wrapper */
.location-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--gray-200);
}

.google-map-clean {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .location-map-wrapper {
        height: 400px;
    }
}

/* Location Info - Clean */
.location-info-clean {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.location-address h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.location-address p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
}

.location-description p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Distance Items */
.location-distances {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.distance-label {
    font-size: 16px;
    color: var(--gray-500);
}

.distance-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
}

/* Directions Link */
.directions-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: underline;
    transition: color 0.2s ease;
    margin-top: var(--space-lg);
}

.directions-link:hover {
    color: var(--gray-500);
}

.directions-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .location-address h3 {
        font-size: 20px;
    }
    
    .location-address p,
    .location-description p,
    .distance-label,
    .distance-value,
    .directions-link {
        font-size: 15px;
    }
}

/* ============================================
/* ============================================
/* ============================================
   MODERN LOCATION SECTION WITH ICONS - AIRBNB COLORS
   ============================================ */

.location-clean-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

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

/* Map Wrapper */
.location-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    border: 1px solid #DDDDDD;
}

.google-map-clean {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .location-map-wrapper {
        height: 400px;
    }
}

/* Location Info - Modern with Icons */
.location-info-modern {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #EBEBEB;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.location-place {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.location-subtitle {
    font-size: 14px;
    color: #717171;
}

/* Feature Items */
.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #F7F7F7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feature-item:hover .feature-icon {
    background: #FFF0F3;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #717171;
}

.feature-item:hover .feature-icon svg {
    color: #FF385C;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-label {
    font-size: 14px;
    color: #717171;
}

.feature-value {
    font-size: 15px;
    font-weight: 600;
    color: #222222;
}

/* Directions Button - Airbnb Style */
.directions-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF385C 0%, #E61E4D 100%);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.2);
}

.directions-btn-modern:hover {
    background: linear-gradient(135deg, #E61E4D 0%, #D70466 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.directions-btn-modern:active {
    transform: translateY(0);
}

.directions-btn-modern svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .location-header {
        gap: 12px;
    }
    
    .location-icon {
        width: 44px;
        height: 44px;
    }
    
    .location-place {
        font-size: 20px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .directions-btn-modern {
        width: 100%;
        padding: 16px 24px;
    }
}
/* ============================================
   MOBILE MENU - LEFT PANEL + OVERLAY
   ============================================ */

/* Overlay backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 199;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu panel - Sol tarafta dar */
.mobile-menu {
    width: 400px !important;
    max-width: 85vw !important;
    right: auto !important;
    left: 0 !important;
    transform: translateX(-100%) !important;
    z-index: 200 !important;
}

.mobile-menu.open,
.mobile-menu.active {
    transform: translateX(0) !important;
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   MINIMAL LIGHT MOBILE MENU - 2026 Premium
   Terracotta/warm tone inspired design
═══════════════════════════════════════════════════════════ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    z-index: 200;
    background: #c9a08a;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Menu Header with Language Switcher */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.menu-close-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 48, 40, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: rgba(61, 48, 40, 0.2);
    transform: rotate(90deg);
}

.menu-close-btn svg {
    width: 18px;
    height: 18px;
    color: #3d3028;
}

.menu-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-lang-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #5a483d;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-lang-btn:hover {
    background: rgba(61, 48, 40, 0.1);
}

.menu-lang-btn.active {
    background: #3d3028;
    color: #fff;
}

.menu-lang-divider {
    color: #5a483d;
    opacity: 0.4;
    font-size: 12px;
}

/* Navigation */
.menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 40px 0;
}

.menu-nav-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-30px);
    animation: menuItemSlide 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.08s + 0.1s);
}

.mobile-menu.open .menu-nav-item {
    animation: menuItemSlide 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.08s + 0.1s);
}

@keyframes menuItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-nav-number {
    font-size: 11px;
    font-weight: 400;
    color: #5a483d;
    opacity: 0.7;
    min-width: 20px;
}

.menu-nav-title {
    font-size: 20px;
    font-weight: 500;
    color: #3d3028;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.menu-nav-item:hover .menu-nav-title {
    color: #fff;
    transform: translateX(8px);
}

.menu-nav-item:hover .menu-nav-number {
    color: #fff;
    opacity: 1;
}

/* Footer */
.menu-footer {
    padding-top: 32px;
    border-top: 1px solid rgba(61, 48, 40, 0.15);
}

.menu-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3d3028;
    margin-bottom: 8px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-footer-item:hover {
    opacity: 0.7;
}

.menu-footer-label {
    font-weight: 500;
    min-width: 45px;
}

/* Social Links */
.menu-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.menu-social-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d3028;
    transition: all 0.3s ease;
}

.menu-social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.menu-social-link svg {
    width: 20px;
    height: 20px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide old mobile menu styles */
.mobile-menu-header,
.mobile-nav,
.mobile-menu-footer,
.mobile-nav-link,
.mobile-lang-buttons,
.close-btn {
    display: none !important;
}

@media (min-width: 769px) {
    .mobile-menu {
        max-width: 420px;
    }
    
    .menu-nav-title {
        font-size: 22px;
    }
}

/* Villa Explore Link */
.villa-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.villa-info .villa-explore svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.villa-card:hover .villa-explore {
    color: var(--primary-dark);
}

.villa-card:hover .villa-explore svg {
    transform: translateX(4px);
}

/* Footer Column Social Icons */
.footer-col-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-col-social a {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-col-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col-social a svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}
