/* ═══ KADA Home — Design System ═══ */
:root {
  --primary: #C8956C; --primary-dark: #A67553; --primary-light: #D4A87E;
  --gold: #D4A853; --gold-light: #E8C97A;
  --bg-dark: #1A1814; --bg-warm: #2C2620; --bg-cream: #F5F0E8; --bg-light: #FAF8F5;
  --text-light: #F5F0E8; --text-dark: #2C2620; --text-muted: #8A7E72;
  --accent-green: #6B8F71; --accent-red: #C75C5C;
  --radius: 12px; --radius-lg: 20px; --radius-full: 50px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08); --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-full); font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition); letter-spacing: 0.3px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,149,108,0.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.8); }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* ═══ NAVBAR ═══ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(26,24,20,0.92); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; transition: var(--transition); position: relative; }
.nav-link:hover { color: #fff; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-link:hover::after { width: 100%; }
.nav-cta { background: var(--primary); color: #fff !important; padding: 10px 24px; border-radius: var(--radius-full); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: rgba(26,24,20,0.98); backdrop-filter: blur(20px); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-content { text-align: center; }
.mobile-link { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--text-light); padding: 16px; transition: var(--transition); }
.mobile-link:hover { color: var(--primary); }
.mobile-cta { color: var(--primary) !important; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ═══ HERO ═══ */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg-dark); }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,24,20,0.4) 0%, rgba(26,24,20,0.6) 50%, rgba(26,24,20,0.8) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 800px; }
.hero-pre { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--primary-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; opacity: 0; animation: fadeUp 1s 0.3s forwards; }
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; opacity: 0; animation: fadeUp 1s 0.5s forwards; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; min-height: 2em; opacity: 0; animation: fadeUp 1s 0.7s forwards; }
.typewriter-cursor { animation: blink 1s infinite; color: var(--primary); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 0.9s forwards; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.scroll-arrow { width: 24px; height: 24px; margin: 8px auto 0; border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg); animation: scrollBounce 2s infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translate(0,0); } 50% { transform: rotate(45deg) translate(5px,5px); } }

/* ═══ STATS ═══ */
.stats { background: var(--bg-dark); padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.stats-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary); display: block; }
.stat-text { font-size: 1.1rem !important; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; display: block; }
@media (max-width: 768px) { .stats-container { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ═══ SECTIONS ═══ */
.section { padding: 100px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); }
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-pre { font-size: 0.85rem; font-weight: 600; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-pre-light { color: var(--primary-light); }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-title-light { color: var(--text-light); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-desc-light { color: rgba(255,255,255,0.6); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ PROPERTIES ═══ */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.property-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; }
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-image { position: relative; height: 260px; overflow: hidden; }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.property-card:hover .property-image img { transform: scale(1.08); }
.property-badge { position: absolute; top: 16px; right: 16px; background: var(--bg-dark); color: var(--primary); padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; }
.property-tags { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; }
.property-tag { background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 500; color: var(--text-dark); }
.property-info { padding: 24px; }
.property-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 6px; }
.property-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.property-amenities { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.amenity { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--text-muted); }
.property-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #f0ebe3; }
.property-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--primary-dark); }
.property-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.property-tour-btn { background: var(--bg-cream); color: var(--text-dark); padding: 10px 20px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 500; border: none; cursor: pointer; transition: var(--transition); }
.property-tour-btn:hover { background: var(--primary); color: #fff; }

/* ═══ TOUR MODAL ═══ */
.tour-modal { position: fixed; inset: 0; z-index: 2000; background: var(--bg-dark); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.tour-modal.active { opacity: 1; pointer-events: all; }
.tour-progress { height: 3px; background: rgba(255,255,255,0.1); display: flex; gap: 4px; padding: 12px 16px 0; }
.tour-progress-bar { flex: 1; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.tour-progress-bar.filled { background: var(--primary); }
.tour-progress-bar.active { background: rgba(255,255,255,0.3); }
.tour-close { position: absolute; top: 20px; right: 20px; z-index: 10; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.tour-slides { flex: 1; position: relative; overflow: hidden; }
.tour-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; opacity: 0; transition: opacity 0.5s ease; }
.tour-slide.active { opacity: 1; }
.tour-slide-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.tour-slide-caption { position: relative; z-index: 1; width: 100%; padding: 60px 24px 24px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; font-size: 1.1rem; font-weight: 500; }
.tour-nav { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 16px; }
.tour-prev, .tour-next { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.tour-prev:hover, .tour-next:hover { background: var(--primary); }
.tour-dots { display: flex; gap: 6px; }
.tour-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.tour-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.tour-footer { padding: 16px 24px; text-align: center; }

/* ═══ EXPERIENCE ═══ */
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.experience-card { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: var(--transition); overflow: hidden; }
.experience-card:hover { transform: translateY(-4px); border-color: var(--primary); background: rgba(200,149,108,0.08); }
.experience-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.experience-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-light); margin-bottom: 12px; }
.experience-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

/* ═══ MAP ═══ */
.map-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.map-filter { padding: 8px 20px; border-radius: var(--radius-full); border: 1px solid #e0d8cc; background: #fff; font-size: 0.85rem; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.map-filter.active, .map-filter:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.map-container { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); min-height: 300px; }
.map-points-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.map-point-card { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: var(--radius); border: 1px solid #f0ebe3; transition: var(--transition); }
.map-point-card:hover { border-color: var(--primary); background: var(--bg-cream); }
.map-point-icon { font-size: 1.5rem; flex-shrink: 0; }
.map-point-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.map-point-info p { font-size: 0.8rem; color: var(--text-muted); }
.map-point-type { font-size: 0.7rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.map-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* ═══ BOOKING ═══ */
.booking-card { max-width: 520px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.booking-form .form-group { margin-bottom: 20px; }
.booking-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.booking-form select, .booking-form input[type="date"] { width: 100%; padding: 14px 16px; border: 1px solid #e0d8cc; border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-body); background: #fff; transition: var(--transition); appearance: auto; }
.booking-form select:focus, .booking-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,149,108,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-summary { background: var(--bg-cream); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.summary-row.total { font-weight: 700; font-size: 1.1rem; border-top: 1px solid #e0d8cc; padding-top: 12px; margin-top: 8px; color: var(--primary-dark); }
.summary-row.discount { color: var(--accent-green); }
.booking-badges { display: flex; justify-content: center; gap: 16px; margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; }

/* ═══ GUIDE ═══ */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.guide-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.guide-image { height: 200px; overflow: hidden; position: relative; }
.guide-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.guide-card:hover .guide-image img { transform: scale(1.08); }
.guide-icon-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.guide-content { padding: 24px; }
.guide-name { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 8px; }
.guide-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ═══ REVIEWS ═══ */
.reviews-scores { display: flex; justify-content: center; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.review-platform { text-align: center; padding: 24px 32px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.review-platform-name { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.review-platform-score { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--primary-dark); }
.review-platform-count { font-size: 0.8rem; color: var(--text-muted); }
.reviews-carousel-wrapper { position: relative; overflow: hidden; }
.reviews-carousel { display: flex; gap: 24px; transition: transform 0.5s ease; padding: 8px 0; }
.review-card { min-width: 360px; max-width: 360px; background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); flex-shrink: 0; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-cream); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; overflow: hidden; flex-shrink: 0; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-guest-name { font-weight: 600; font-size: 0.95rem; }
.review-meta { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; color: var(--text-dark); line-height: 1.7; font-style: italic; }
.review-platform-badge { display: inline-block; margin-top: 12px; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; background: var(--bg-cream); color: var(--text-muted); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; border: none; background: #fff; box-shadow: var(--shadow); cursor: pointer; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--text-dark); }
.carousel-btn:hover { background: var(--primary); color: #fff; }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }

/* ═══ CHAT WIDGET ═══ */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1500; }
.chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(200,149,108,0.5); display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.chat-toggle:hover { transform: scale(1.08); background: var(--primary-dark); }
.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block; }
.chat-panel { position: absolute; bottom: 72px; right: 0; width: 340px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(10px) scale(0.95); opacity: 0; pointer-events: none; transition: var(--transition); }
.chat-widget.open .chat-panel { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-header { background: var(--bg-dark); color: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { font-size: 1.5rem; }
.chat-header strong { display: block; font-size: 0.95rem; }
.chat-header small { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.chat-messages { padding: 16px; max-height: 200px; overflow-y: auto; }
.chat-message { margin-bottom: 12px; }
.chat-message p { background: var(--bg-cream); padding: 12px 16px; border-radius: var(--radius) var(--radius) var(--radius) 4px; font-size: 0.9rem; line-height: 1.5; }
.chat-quick-replies { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.quick-reply { padding: 8px 14px; border-radius: var(--radius-full); border: 1px solid #e0d8cc; background: #fff; font-size: 0.8rem; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.quick-reply:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.chat-contact { padding: 12px 16px; border-top: 1px solid #f0ebe3; display: flex; gap: 8px; }
.chat-contact-btn { flex: 1; text-align: center; padding: 10px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; }
.chat-contact-btn.whatsapp { background: #25D366; color: #fff; }
.chat-contact-btn.zalo { background: #0068FF; color: #fff; }

/* ═══ FOOTER ═══ */
.footer { background: var(--bg-dark); color: var(--text-light); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--text-muted); }
.social-link:hover { background: var(--primary); color: #fff; }
.footer-links h4, .footer-contact h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; color: #fff; }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 6px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* ═══ CONFIRM MODAL ═══ */
.confirm-modal { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); }
.confirm-modal.active { opacity: 1; pointer-events: all; }
.confirm-content { background: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; max-width: 420px; width: 90%; }
.confirm-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-green); color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.confirm-content h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 12px; }
.confirm-content p { color: var(--text-muted); margin-bottom: 24px; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; }

/* ═══ EMPTY STATES ═══ */
.empty-section { text-align: center; padding: 60px 24px; color: var(--text-muted); }
.empty-section .empty-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.empty-section p { font-size: 1rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 280px; justify-content: center; }
  .properties-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .review-card { min-width: 280px; max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .reviews-scores { gap: 16px; }
  .booking-card { padding: 24px; }
  .chat-panel { width: 300px; right: -8px; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .guide-grid { grid-template-columns: 1fr; }
  .map-points-list { grid-template-columns: 1fr; }
}

/* ═══ LANGUAGE SWITCHER ═══ */
.lang-switcher {
  position: fixed;
  top: 90px;
  right: 24px;
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  z-index: 999;
  transition: var(--transition);
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0.5;
  transform: scale(0.95);
  padding: 0;
}
.lang-btn img {
  width: 20px;
  height: auto;
  border-radius: 3px;
  display: block;
}
.lang-btn:hover {
  opacity: 0.9;
  transform: scale(1.1);
}
.lang-btn.active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(200, 149, 108, 0.6);
}
@media (max-width: 768px) {
  .lang-switcher {
    top: auto;
    bottom: 20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
}
