/* ============================================
   BEAUTE DU DESERT — Full-Screen Immersive
   ============================================ */

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

:root {
    --dark: #1A1410;
    --dark-85: rgba(26, 20, 16, 0.85);
    --dark-70: rgba(26, 20, 16, 0.70);
    --dark-50: rgba(26, 20, 16, 0.50);
    --warm-white: #FFF8EF;
    --orange: #E07B3A;
    --gold: #D4A843;
    --sand: #F5E6D0;
    --sand-dark: #E8D5B8;
    --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- SECTION DEFAULTS --- */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-70);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

/* --- PARALLAX --- */
.parallax-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 20, 16, 0.95);
    padding: 0.7rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-white);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

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

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

.lang-toggle {
    background: rgba(255, 248, 239, 0.15);
    border: 1px solid rgba(255, 248, 239, 0.3);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 248, 239, 0.25);
}

.lang-option {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: rgba(255, 248, 239, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.lang-separator {
    color: rgba(255, 248, 239, 0.3);
    font-size: 0.9rem;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--warm-white);
    margin: 6px 0;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 1s ease 0.3s both;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 248, 239, 0.85);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 1.2s both;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--warm-white);
    border-bottom: 2px solid var(--warm-white);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    opacity: 0.7;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(10px); }
    60% { transform: rotate(45deg) translateY(5px); }
}

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

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

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: var(--warm-white);
    box-shadow: 0 4px 20px rgba(224, 123, 58, 0.3);
}

.btn-primary:hover {
    background: #c96a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 123, 58, 0.45);
    color: var(--warm-white);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.1rem 3.5rem;
}

.btn-full {
    width: 100%;
}

/* --- TOURS --- */
.tours-section {
    background: var(--sand);
}

.tours-section .section-title {
    color: var(--dark);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.tour-card {
    background: var(--dark-85);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tour-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 20, 16, 0.4);
}

.tour-card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.tour-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--warm-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.tour-badge-camel {
    background: var(--gold);
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.tour-duration {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
}

.tour-card-body {
    padding: 0.5rem 2rem 1.5rem;
    flex: 1;
}

.tour-highlights {
    list-style: none;
}

.tour-highlights li {
    color: rgba(255, 248, 239, 0.8);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.tour-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.tour-card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 248, 239, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--warm-white);
    letter-spacing: 0.02em;
}

.price-main small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.7;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 248, 239, 0.5);
}

.tours-note {
    text-align: center;
    font-style: italic;
    color: var(--dark-70);
    font-size: 1rem;
}

/* --- PARALLAX BREAK --- */
.parallax-break {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.55);
}

.parallax-break-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.parallax-quote {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--warm-white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    line-height: 1.15;
}

/* --- PRICING TABLE --- */
.pricing-section {
    background: var(--warm-white);
}

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(26, 20, 16, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.pricing-table-wrapper.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-85);
    color: var(--warm-white);
    min-width: 700px;
}

.pricing-table thead {
    background: var(--dark);
}

.pricing-table th {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1.2rem 1.5rem;
    text-align: left;
    color: var(--orange);
}

.pricing-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 248, 239, 0.08);
    font-size: 0.95rem;
}

.pricing-table tbody tr:hover {
    background: rgba(224, 123, 58, 0.1);
}

.pricing-table td small {
    opacity: 0.6;
}

/* --- PRACTICAL INFO --- */
.practical-section {
    background: var(--sand);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.practical-card {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(26, 20, 16, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.practical-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.practical-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    color: var(--orange);
}

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

.practical-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

.practical-card li {
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: var(--dark-70);
    font-size: 1rem;
}

.practical-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* --- BIVOUAC --- */
.bivouac-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

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

.bivouac-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 20, 16, 0.9) 0%,
        rgba(26, 20, 16, 0.6) 100%
    );
}

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

.bivouac-section .section-title {
    color: var(--warm-white);
    text-align: left;
}

.bivouac-text {
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
}

.bivouac-text.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bivouac-text p {
    color: rgba(255, 248, 239, 0.85);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* --- GALLERY --- */
.gallery-section {
    background: var(--dark);
}

.gallery-section .section-title {
    color: var(--warm-white);
}

.gallery-section .section-intro {
    color: rgba(255, 248, 239, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2.5rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

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

/* --- CONTACT --- */
.contact-section {
    padding: 7rem 0;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.88);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    color: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
}

.contact-info.animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--warm-white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 248, 239, 0.85);
    font-size: 1.05rem;
}

.contact-detail svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-detail a {
    color: rgba(255, 248, 239, 0.85);
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--orange);
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 248, 239, 0.2);
    border-radius: 50%;
    color: var(--warm-white);
    transition: all 0.3s ease;
}

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

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    opacity: 0;
    transform: translateX(30px);
}

.contact-form-wrapper.animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form {
    background: rgba(26, 20, 16, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 248, 239, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(255, 248, 239, 0.15);
    border-radius: 10px;
    background: rgba(255, 248, 239, 0.07);
    color: var(--warm-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 248, 239, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFF8EF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--dark);
    color: var(--warm-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark);
    color: rgba(255, 248, 239, 0.7);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 248, 239, 0.08);
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1rem;
    font-weight: 300;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 248, 239, 0.4);
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* --- SCROLL ANIMATIONS --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Disable parallax on mobile */
    .parallax-section,
    .bivouac-bg {
        background-attachment: scroll !important;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-intro {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 100px;
    }

    .parallax-quote {
        font-size: 2rem;
    }

    /* Mobile nav */
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(26, 20, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transition: right 0.4s ease;
        padding: 2rem;
    }

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

    .nav-links a {
        font-size: 1.4rem;
    }

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

    .tour-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-card-footer .btn {
        width: 100%;
    }

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

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Pricing table */
    .pricing-table-wrapper {
        margin: 0 -1rem;
        border-radius: 8px;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    /* Bivouac */
    .bivouac-section .section-title {
        text-align: center;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.6rem 0.8rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 0.9rem 2.5rem;
    }
}

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

    .section-title {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .parallax-break {
        height: 40vh;
        min-height: 280px;
    }

    .parallax-quote {
        font-size: 1.6rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.8rem;
        font-size: 0.85rem;
    }
}
