/* ============================================================
   BEAUTE DU DESERT - Dark Luxury Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #1A1410;
    --bg-secondary: #2A1F17;
    --bg-card: #221A13;
    --bg-charcoal: #1E1E1E;
    --bg-input: #1E1812;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gold-dim: #B8922F;
    --cream: #F5E6C8;
    --cream-light: #FFF8ED;
    --text-body: #D4C5A9;
    --text-muted: #9A8B72;
    --white: #FFFFFF;
    --black: #000000;
    --border-gold: rgba(212, 168, 67, 0.25);
    --border-gold-hover: rgba(212, 168, 67, 0.6);
    --shadow-gold: 0 0 20px rgba(212, 168, 67, 0.15);
    --shadow-gold-strong: 0 0 40px rgba(212, 168, 67, 0.25);
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--gold-light);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--cream);
    font-weight: 600;
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

/* ---------- Decorative Elements ---------- */
.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.gold-line-center {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto 0;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold-dim);
}

.section-tag::before { left: -20px; }
.section-tag::after { right: -20px; }

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold-strong);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 12px 28px;
    font-size: 0.8rem;
}

.btn-gold-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn-full {
    width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(26, 20, 16, 0.97);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    transition: height var(--transition);
}

#navbar.scrolled .nav-logo img {
    height: 40px;
}

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

.nav-links a {
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

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

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

.nav-links a:hover {
    color: var(--gold);
}

/* Language Toggle */
.lang-toggle {
    background: none;
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.lang-toggle:hover {
    border-color: var(--gold);
}

.lang-option {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
}

.lang-option.active {
    color: var(--gold);
}

.lang-divider {
    color: var(--border-gold);
    font-size: 0.7rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 16, 0.6) 0%,
        rgba(26, 20, 16, 0.4) 40%,
        rgba(26, 20, 16, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-logo {
    width: 120px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.3));
}

#hero h1 {
    color: var(--cream-light);
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold-dim);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   SECTIONS - General
   ============================================================ */
section {
    padding: 100px 0;
}

#tours {
    background: var(--bg-primary);
}

#pricing {
    background: var(--bg-secondary);
}

#practical {
    background: var(--bg-primary);
}

#gallery {
    background: var(--bg-charcoal);
}

#contact {
    background: var(--bg-primary);
}

/* ============================================================
   TOURS
   ============================================================ */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-top: 3px solid var(--gold);
    padding: 32px 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tour-card:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold-strong);
}

.tour-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tour-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.tour-duration {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
    padding: 4px 12px;
    border-radius: 2px;
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.tour-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tour-highlights {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.tour-highlights li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.5;
}

.tour-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.tour-pricing {
    border-top: 1px solid var(--border-gold);
    padding-top: 18px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.price-value small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tours-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 16px 24px;
    border: 1px solid var(--border-gold);
    background: rgba(212, 168, 67, 0.03);
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
}

.pricing-table th {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-primary);
    text-align: left;
    letter-spacing: 0.5px;
}

.pricing-table td {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-gold);
    background: var(--bg-card);
}

.pricing-table tbody tr:hover td {
    background: rgba(212, 168, 67, 0.05);
}

.pricing-table .price-cell {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
}

.pricing-table .price-cell small {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   PRACTICAL INFO
   ============================================================ */
.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.practical-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 36px 32px;
    transition: all var(--transition);
}

.practical-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold);
}

.practical-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.practical-card h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.practical-card ul {
    list-style: none;
}

.practical-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.practical-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ============================================================
   BIVOUAC
   ============================================================ */
#bivouac {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.bivouac-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.bivouac-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 20, 16, 0.85) 0%,
        rgba(42, 31, 23, 0.8) 100%
    );
}

.bivouac-content {
    position: relative;
    z-index: 2;
}

.bivouac-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.bivouac-feature {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border-gold);
    background: rgba(26, 20, 16, 0.5);
    transition: all var(--transition);
}

.bivouac-feature:hover {
    border-color: var(--border-gold-hover);
    background: rgba(212, 168, 67, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.bivouac-feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.bivouac-feature h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 1.5rem;
}

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

/* ---------- Lightbox ---------- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 8, 6, 0.96);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--cream);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 2px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--text-body);
}

.contact-info-item a:hover {
    color: var(--gold);
}

/* Social Buttons */
.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-gold);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--cream);
    transition: all var(--transition);
    border-radius: 2px;
}

.social-btn:hover {
    color: var(--cream-light);
    transform: translateY(-2px);
}

.social-btn.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.social-btn.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.2);
}

.social-btn.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}

.social-btn.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition);
    border-radius: 2px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form select option {
    background: var(--bg-primary);
    color: var(--cream);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: #0F0C09;
    padding: 48px 0;
    border-top: 1px solid var(--border-gold);
}

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

.footer-logo {
    width: 70px;
    margin: 0 auto 16px;
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

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

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Mobile Nav */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 20, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.4s ease;
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-gold);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    /* Tours */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Practical */
    .practical-grid {
        grid-template-columns: 1fr;
    }

    /* Bivouac */
    .bivouac-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero-logo {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-socials {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 14px;
        font-size: 0.82rem;
    }
}
