/* ============================================
   Simply Life Journey - style.css
   Unified responsive design
   ============================================ */

:root {
    --forest: #1a3c34;
    --forest-dk: #0f2420;
    --forest-lt: #2d5a4e;
    --terra: #c4774c;
    --terra-dk: #a65f3a;
    --terra-lt: #d4915f;
    --gold: #d4a853;
    --cream: #faf8f5;
    --cream-dk: #f0ece5;
    --charcoal: #2d2d2d;
    --charcoal-lt: #4a4a4a;
    --white: #ffffff;
    --black: #111;
    --sh-sm: 0 2px 8px rgba(0,0,0,0.08);
    --sh-md: 0 4px 16px rgba(0,0,0,0.12);
    --sh-lg: 0 8px 32px rgba(0,0,0,0.16);
    --sh-xl: 0 16px 48px rgba(0,0,0,0.2);
    --tr: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Inter', -apple-system, sans-serif;
    --font-a: 'Caveat', cursive;
    --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 30px;
    --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-b); font-size: 16px; line-height: 1.7; color: var(--charcoal); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--tr); }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-h); font-weight: 600; line-height: 1.2; color: var(--forest); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-family: var(--font-b); font-size: 0.95rem; font-weight: 600; border-radius: var(--r-xl); border: 2px solid transparent; cursor: pointer; transition: var(--tr); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-primary { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-primary:hover { background: var(--terra-dk); border-color: var(--terra-dk); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(196,119,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--forest); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--terra); border-color: var(--terra); }
.btn-ghost:hover { background: var(--terra); color: var(--white); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: var(--tr); }
.header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); box-shadow: var(--sh-md); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.logo-icon { font-size: 2rem; color: var(--terra); }
.logo-img { height: 45px; width: auto; display: block; object-fit: contain; }
.header.scrolled .logo-img { height: 40px; }
.logo-name { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--white); transition: var(--tr); }
.header.scrolled .logo-name { color: var(--forest); }
.logo-tag { font-family: var(--font-a); font-size: 0.95rem; color: var(--gold); display: block; line-height: 1; }
.header.scrolled .logo-tag { color: var(--terra); }

/* NAV */
.nav { display: flex; align-items: center; gap: 24px; }
.nav-list { display: flex; gap: 4px; }
.nav-link { padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); border-radius: var(--r-xl); transition: var(--tr); }
.nav-link i { display: none; }
.header.scrolled .nav-link { color: var(--charcoal); }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.15); color: var(--gold); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { background: var(--cream); color: var(--terra); }
.nav-close { display: none; background: none; border: none; font-size: 1.5rem; color: var(--charcoal); cursor: pointer; position: absolute; top: 20px; right: 24px; }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; gap: 6px; }
.lang-btn { display: flex; align-items: center; padding: 5px 8px; border-radius: 8px; background: rgba(255,255,255,0.1); border: 2px solid transparent; cursor: pointer; transition: var(--tr); }
.lang-btn:hover { background: rgba(255,255,255,0.2); }
.lang-btn.active { background: rgba(196,119,76,0.2); border-color: var(--gold); }
.header.scrolled .lang-btn { background: rgba(0,0,0,0.05); }
.header.scrolled .lang-btn.active { background: rgba(196,119,76,0.15); border-color: var(--terra); }
.lang-btn img { width: 22px; height: 16px; border-radius: 3px; }
.menu-btn { display: none; background: none; border: none; font-size: 1rem; font-weight: 600; color: var(--white); cursor: pointer; z-index: 1001; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--r-xl); transition: var(--tr); }
.menu-btn i { font-size: 1.2rem; }
.menu-btn:hover { background: rgba(255,255,255,0.15); }
.header.scrolled .menu-btn { color: var(--forest); }
.header.scrolled .menu-btn:hover { background: var(--cream); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; transition: opacity 0.3s ease; }
.nav-overlay.active { display: block; opacity: 1; }
.nav-cta { margin-left: 8px; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,36,32,0.9) 0%, rgba(26,60,52,0.75) 40%, rgba(196,119,76,0.3) 100%); }
.hero-content { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px; width: 100%; }
.hero-subtitle { font-family: var(--font-a); font-size: 1.5rem; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: italic; display: block; }
.hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 600px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; }
.stat-num { font-family: var(--font-h); font-size: 3rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ANIMATIONS */
.anim-fade { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.anim-d1 { animation-delay: 0.2s; }
.anim-d2 { animation-delay: 0.4s; }
.anim-d3 { animation-delay: 0.6s; }
.anim-d4 { animation-delay: 0.8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* SECTION HEADERS */
.section-tag { font-family: var(--font-a); font-size: 1.4rem; color: var(--terra); display: block; margin-bottom: 10px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--charcoal-lt); line-height: 1.8; }

/* VIDEO */
.section-video { background: var(--forest); padding: 100px 0; }
.video-box { position: relative; max-width: 1000px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); aspect-ratio: 16/9; cursor: pointer; background: var(--black); }
.video-box video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%); display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.play-btn { width: 90px; height: 90px; background: var(--terra); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); transition: var(--tr); box-shadow: 0 0 40px rgba(196,119,76,0.4); }
.play-btn i { margin-left: 4px; }
.video-box:hover .play-btn { transform: scale(1.1); box-shadow: 0 0 60px rgba(196,119,76,0.6); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.img-stack { position: relative; }
.img-stack img { border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.img-offset { position: absolute; bottom: -40px; right: -40px; width: 55%; border: 5px solid var(--white); box-shadow: var(--sh-xl); }
.about-badge { position: absolute; bottom: 30px; left: -20px; background: var(--terra); color: var(--white); padding: 16px 24px; border-radius: var(--r-md); text-align: center; box-shadow: var(--sh-lg); }
.badge-num { font-family: var(--font-h); font-size: 2.2rem; font-weight: 700; display: block; line-height: 1; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { margin-bottom: 20px; }
.about-text .lead { font-size: 1.15rem; color: var(--forest); font-weight: 500; margin-bottom: 16px; line-height: 1.8; }
.about-text p { color: var(--charcoal-lt); line-height: 1.8; margin-bottom: 12px; }
.about-text .italic { font-style: italic; color: var(--terra); font-weight: 500; margin: 20px 0 28px; }

/* PURPOSE */
.section-purpose { background: var(--cream); }
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { padding: 40px 32px; border-radius: var(--r-lg); transition: var(--tr); position: relative; overflow: hidden; }
.card-purpose { background: var(--white); text-align: center; box-shadow: var(--sh-sm); }
.card-purpose::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--terra); transform: scaleX(0); transition: var(--tr); }
.card-purpose:hover::before { transform: scaleX(1); }
.card-purpose:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.card-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--terra), var(--terra-dk)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.8rem; color: var(--white); }
.card-purpose h3 { margin-bottom: 12px; font-size: 1.3rem; }
.card-purpose p { color: var(--charcoal-lt); line-height: 1.7; margin-bottom: 0; }

/* TERRITORY */
.territory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card-territory { display: flex; gap: 16px; padding: 28px; background: var(--cream); border-radius: var(--r-md); }
.card-territory:hover { background: var(--forest); color: var(--white); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card-territory:hover h4 { color: var(--white); }
.card-territory:hover p { color: rgba(255,255,255,0.85); }
.card-territory:hover i { color: var(--gold); }
.card-territory i { font-size: 1.8rem; color: var(--terra); margin-top: 4px; flex-shrink: 0; }
.card-territory h4 { font-size: 1.05rem; margin-bottom: 6px; }
.card-territory p { font-size: 0.9rem; color: var(--charcoal-lt); margin-bottom: 0; }

/* DESTINATIONS */
.section-dest { background: var(--cream); }
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dest-card { position: relative; height: 380px; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s; }
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.dest-img { position: absolute; inset: 0; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.dest-card:hover .dest-img img { transform: scale(1.1); }
.dest-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,36,32,0.95) 0%, rgba(15,36,32,0.5) 50%, transparent 100%); transition: var(--tr); }
.dest-card:hover .dest-img::after { background: linear-gradient(to top, rgba(15,36,32,0.98) 0%, rgba(15,36,32,0.7) 60%, rgba(15,36,32,0.2) 100%); }
.dest-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px; transform: translateY(20px); transition: transform 0.5s cubic-bezier(0.23,1,0.32,1); }
.dest-card:hover .dest-body { transform: translateY(0); }
.dest-region { display: inline-block; padding: 4px 12px; background: rgba(196,119,76,0.3); color: var(--gold); font-size: 0.7rem; font-weight: 700; border-radius: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; backdrop-filter: blur(4px); }
.dest-body h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.dest-body p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 12px; opacity: 0; transform: translateY(8px); transition: all 0.5s 0.1s; }
.dest-card:hover .dest-body p { opacity: 1; transform: translateY(0); }
.dest-tags { display: flex; gap: 8px; opacity: 0; transform: translateY(8px); transition: all 0.5s 0.2s; }
.dest-card:hover .dest-tags { opacity: 1; transform: translateY(0); }
.dest-tags span { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); font-size: 0.7rem; font-weight: 600; border-radius: 16px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); }
.dest-tags i { font-size: 0.65rem; color: var(--gold); }
.dest-shine { position: absolute; inset: 0; z-index: 3; background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 55%, transparent 60%); transform: translateX(-100%); transition: transform 0.8s; pointer-events: none; }
.dest-card:hover .dest-shine { transform: translateX(100%); }

/* GALLERY SLIDER */
.section-gallery { background: var(--white); padding-bottom: 0; }
.slider { position: relative; overflow: hidden; height: 70vh; min-height: 450px; max-height: 700px; margin-top: 20px; }
.slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.slide { position: relative; min-width: 100%; height: 100%; overflow: hidden; }
.slide img { width: 100%; height: 120%; object-fit: cover; position: absolute; top: -10%; left: 0; will-change: transform; transition: transform 0.1s linear; }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 80px; background: linear-gradient(to top, rgba(15,36,32,0.95), rgba(15,36,32,0.5) 60%, transparent); z-index: 2; }
.slide-tag { display: inline-block; padding: 4px 14px; background: rgba(196,119,76,0.4); color: var(--gold); font-size: 0.7rem; font-weight: 700; border-radius: 16px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(4px); }
.slide-caption h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 8px; }
.slide-caption p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 500px; margin-bottom: 0; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); color: var(--white); font-size: 1.1rem; cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); z-index: 5; }
.slider-btn:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--tr); border: 2px solid transparent; }
.slider-dot.active { background: var(--terra); border-color: var(--white); transform: scale(1.2); }
.slider-progress { position: absolute; bottom: 0; left: 0; height: 4px; background: var(--terra); z-index: 5; transition: width 0.8s cubic-bezier(0.23,1,0.32,1); box-shadow: 0 0 12px rgba(196,119,76,0.6); }

/* VALUES */
.section-values { background: var(--forest); position: relative; overflow: hidden; }
.section-values::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(196,119,76,0.15), transparent 70%); border-radius: 50%; }
.section-values .section-tag { color: var(--gold); }
.section-values h2 { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-value { padding: 32px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); text-align: center; border-radius: var(--r-md); }
.card-value:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.card-value .icon { font-size: 2rem; margin-bottom: 12px; }
.card-value h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.card-value p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 0; }

/* QUOTE */
.section-quote { background: linear-gradient(135deg, var(--terra), var(--terra-dk)); padding: 80px 0; text-align: center; }
.quote-box { max-width: 800px; margin: 0 auto; }
.quote-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.quote-box blockquote { font-family: var(--font-h); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-style: italic; color: var(--white); line-height: 1.7; margin-bottom: 24px; }
.quote-author { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* FOOTER */
.footer { background: var(--forest-dk); color: var(--white); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 20px; line-height: 1.7; }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border-radius: 50%; color: var(--white); transition: var(--tr); }
.social a:hover { background: var(--terra); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { opacity: 0.8; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { opacity: 1; color: var(--terra); }
.footer-col i { width: 18px; color: var(--terra); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.85rem; opacity: 0.6; }

/* BACK TO TOP */
.back-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--terra); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(196,119,76,0.4); opacity: 0; transform: translateY(20px); transition: var(--tr); z-index: 100; }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--terra-dk); transform: translateY(-3px); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
    .header-inner { height: 70px; }
    .logo-img { height: 38px; }
    .header.scrolled .logo-img { height: 34px; }
    .nav-link { padding: 8px 12px; font-size: 0.85rem; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .purpose-grid { grid-template-columns: 1fr; }
    .territory-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-caption { padding: 40px; }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .section { padding: 64px 0; }

    /* Mobile Menu Button */
    .menu-btn { display: flex; }

    /* Mobile Nav Panel */
    .nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh; height: 100dvh; background: var(--white); box-shadow: -4px 0 30px rgba(0,0,0,0.25); padding: 0; transition: right 0.35s cubic-bezier(0.25,0.8,0.25,1); z-index: 1000; flex-direction: column; align-items: stretch; overflow-y: auto; }
    .nav.active { right: 0; }
    .nav-close { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--cream); border-radius: 50%; position: absolute; top: 16px; right: 16px; font-size: 1.2rem; color: var(--charcoal); cursor: pointer; border: none; z-index: 10; transition: var(--tr); }
    .nav-close:hover { background: var(--cream-dk); }

    /* Mobile Nav Header */
    .nav::before {
        content: 'Menú';
        display: block;
        font-family: var(--font-h);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--forest);
        padding: 24px 24px 16px;
        border-bottom: 2px solid var(--cream);
    }

    /* Nav Links */
    .nav-list { flex-direction: column; gap: 0; padding: 8px 0; }
    .nav-link { padding: 16px 24px; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--cream); border-radius: 0; color: var(--charcoal); display: flex; align-items: center; gap: 12px; min-height: 52px; }
    .nav-link i { width: 24px; text-align: center; color: var(--terra); font-size: 1rem; }
    .nav-link:hover, .nav-link.active { background: var(--cream); color: var(--terra); border-radius: 0; }

    /* CTA Button */
    .nav-cta { margin: 16px 24px 24px; }
    .nav-cta .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; min-height: 52px; }

    /* Language Switch in mobile nav */
    .nav .nav-lang { display: flex; padding: 0 24px 24px; gap: 8px; border-top: 1px solid var(--cream); padding-top: 16px; }
    .nav .nav-lang .lang-btn { flex: 1; justify-content: center; padding: 10px; border-radius: var(--r-md); }

    /* Hide header lang switch on mobile */
    .header-actions .lang-switch { display: none; }

    /* Hero */
    .hero-content { padding: 100px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .stat { flex: 0 0 calc(50% - 10px); text-align: center; }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.75rem; }

    /* Destinations */
    .dest-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .dest-card { height: auto; min-height: 320px; }
    .dest-body { transform: translateY(0); padding: 20px; }
    .dest-body p, .dest-tags { opacity: 1; transform: translateY(0); }

    /* Gallery Slider */
    .slider { height: 50vh; min-height: 320px; }
    .slider-btn { width: 40px; height: 40px; font-size: 0.9rem; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .slide-caption { padding: 20px; }
    .slide-caption h3 { font-size: 1.2rem; }
    .slide-caption p { font-size: 0.85rem; }

    /* Values */
    .values-grid { grid-template-columns: 1fr; }

    /* Territory */
    .territory-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* About */
    .about-badge { position: relative; bottom: auto; left: auto; display: inline-block; margin-top: 16px; }
    .img-offset { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 12px; }

    /* Quote */
    .quote-box blockquote { font-size: 1.1rem; }
}

/* Hide nav-lang on desktop */
.nav-lang { display: none !important; }

/* RESPONSIVE - SMALL MOBILE */
@media (max-width: 480px) {
    .header-inner { padding: 0 16px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .stat { flex: 0 0 100%; }
    .play-btn { width: 70px; height: 70px; font-size: 1.5rem; }
    .dest-card { min-height: 280px; }
    .slide-caption h3 { font-size: 1.1rem; }
}
