/* ================================================
   AMAZON TOUR - Professional Design System
   ================================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --c-primary-900: #042013;
    --c-primary-800: #0a3d1f;
    --c-primary-700: #0d4d2b;
    --c-primary-600: #12693a;
    --c-primary-500: #1a7a42;
    --c-primary-400: #22a556;
    --c-primary-300: #2ecc71;
    --c-primary-200: #7ee2a8;
    --c-primary-100: #d4f5e2;

    --c-gold: #c9a84c;
    --c-gold-light: #dcc175;

    --c-neutral-950: #0a0a0a;
    --c-neutral-900: #111111;
    --c-neutral-800: #1a1a1a;
    --c-neutral-700: #333333;
    --c-neutral-600: #555555;
    --c-neutral-500: #777777;
    --c-neutral-400: #999999;
    --c-neutral-300: #bbbbbb;
    --c-neutral-200: #e0e0e0;
    --c-neutral-100: #f2f2f2;
    --c-neutral-50:  #f9f9f9;
    --c-white: #ffffff;

    --c-danger: #dc3545;
    --c-warning: #f0ad4e;
    --c-success: #22a556;

    /* Gradients */
    --g-primary: linear-gradient(135deg, var(--c-primary-800), var(--c-primary-600));
    --g-hero: linear-gradient(160deg, rgba(4,32,19,.92) 0%, rgba(10,61,31,.85) 40%, rgba(0,0,0,.80) 100%);
    --g-card: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    --g-accent: linear-gradient(135deg, var(--c-primary-400), var(--c-primary-300));
    --g-gold: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));

    /* Typography */
    --f-heading: 'Playfair Display', Georgia, serif;
    --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.14);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.20);
    --shadow-glow: 0 0 40px rgba(34,165,86,.25);

    /* Radius */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(.4,0,.2,1);
    --t-fast: .15s var(--ease);
    --t-normal: .3s var(--ease);
    --t-slow: .5s var(--ease);

    /* Layout */
    --header-h: 72px;
    --container-max: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-neutral-200);
    background: var(--c-neutral-900);
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--c-primary-500); color: var(--c-white); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-neutral-800); }
::-webkit-scrollbar-thumb { background: var(--c-primary-700); border-radius: var(--r-full); }

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--r-full);
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .3px;
    cursor: pointer;
    transition: transform .24s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow .24s cubic-bezier(0.22, 0.61, 0.36, 1),
                background-color .24s ease,
                color .24s ease,
                border-color .24s ease,
                filter .24s ease,
                opacity .24s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--g-accent);
    color: var(--c-white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(34,165,86,.35);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34,165,86,.35);
    filter: brightness(1.04);
}

.btn--outline {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--c-white);
    transform: translateY(-2px);
}

.btn--sm { padding: 8px 20px; font-size: .85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

.btn--secondary {
    background: transparent;
    color: var(--c-primary-700);
    border-color: var(--c-primary-200);
}
.btn--secondary:hover {
    background: var(--c-primary-100);
    border-color: var(--c-primary-400);
    color: var(--c-primary-800);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--g-primary);
    color: var(--c-white);
    box-shadow: var(--shadow-md);
}
.btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,.2);
}

.btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none !important;
    filter: grayscale(.8);
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,255,255,.1);
    color: var(--c-primary-200);
    border-radius: var(--r-full);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header--light .section-header__tag {
    background: rgba(255,255,255,.12);
    color: var(--c-primary-200);
}

.section-header__title {
    font-family: var(--f-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--c-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header--light .section-header__title {
    color: var(--c-white);
}

.section-header__line {
    width: 60px;
    height: 4px;
    background: var(--g-accent);
    border-radius: var(--r-full);
    margin: 0 auto 20px;
}

.section-header__desc {
    font-size: 1.1rem;
    color: var(--c-neutral-300);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-header__desc {
    color: rgba(255,255,255,.7);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10,61,31,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: all var(--t-normal);
}

.header--scrolled {
    background: rgba(4,32,19,.98);
    box-shadow: var(--shadow-lg);
    height: 64px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--t-fast);
}
.header__logo:hover { transform: scale(1.03); }

.header__logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
}

.header__logo-text {
    font-family: var(--f-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--c-white);
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-align: center;
}

.header__logo-accent {
    color: var(--c-gold);
    font-weight: 800;
}

/* Nav */
.header__nav-list {
    display: flex;
    gap: 4px;
}

.header__nav-link {
    padding: 8px 20px;
    color: rgba(255,255,255,.8);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: var(--r-full);
    transition: all var(--t-normal);
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--c-white);
    background: rgba(255,255,255,.1);
}

.header__nav-link.active {
    background: rgba(255,255,255,.15);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--c-gold);
    border-radius: var(--r-full);
    transition: transform var(--t-normal);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__lang {
    display: flex;
    gap: 6px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all var(--t-normal);
}
.lang-btn:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--c-gold);
    transform: translateY(-2px);
}
.lang-btn.active {
    border-color: var(--c-gold);
    background: rgba(201,168,76,.15);
    box-shadow: 0 0 12px rgba(201,168,76,.3);
}
.lang-btn img {
    display: block;
    border-radius: 2px;
}

/* Mobile Toggle */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: var(--r-full);
    transition: all var(--t-normal);
}
.header__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.open span:nth-child(2) { opacity: 0; }
.header__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--c-white);
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1591081658714-f576fb7ea3ed?q=80&w=871&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--g-hero);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero__logo {
    width: 180px;
    margin: 0 auto 32px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,.5));
}

.hero__title {
    font-family: var(--f-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255,255,255,.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--t-normal);
}
.hero__scroll:hover { color: var(--c-white); }

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--c-white);
    border-radius: var(--r-full);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--c-primary-800);
    position: relative;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    color: var(--c-primary-200);
    border-radius: var(--r-md);
    font-size: 1.2rem;
    transition: all var(--t-normal);
}

.about__feature:hover .about__feature-icon {
    background: var(--g-accent);
    color: var(--c-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.about__feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 2px;
}

.about__feature p {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
}

/* About Image */
.about__visual {
    position: relative;
}

.about__image-main {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about__image-main:hover img {
    transform: scale(1.04);
}

.about__image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--g-primary);
    color: var(--c-white);
    padding: 24px 28px;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about__badge-number {
    display: block;
    font-family: var(--f-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--c-gold);
}

.about__badge-text {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .9;
}

/* Stats */
.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(255,255,255,.06);
    border-radius: var(--r-xl);
    padding: 40px;
    border: 1px solid rgba(255,255,255,.1);
}

.stat {
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--r-lg);
    transition: all var(--t-normal);
}

.stat:hover {
    background: rgba(255,255,255,.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    color: var(--c-primary-200);
    border-radius: var(--r-md);
    font-size: 1.3rem;
    transition: all var(--t-normal);
}

.stat:hover .stat__icon {
    background: var(--g-accent);
    color: var(--c-white);
    box-shadow: var(--shadow-glow);
}

.stat__number {
    font-family: var(--f-body);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat__label {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ========================================
   TOURS
   ======================================== */
.tours {
    padding: 100px 0;
    background: var(--c-neutral-900);
    position: relative;
    overflow: hidden;
}

.tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-neutral-700), transparent);
}

/* ---- Carousel (shared) ---- */
.carousel {
    overflow: hidden;
    position: relative;
}

/* Static mode – few cards, centred with flex (desktop) */
.carousel--static .carousel__track {
    justify-content: center;
    transform: none !important;
    will-change: auto;
}

.carousel__track {
    display: flex;
    gap: 24px;
    padding: 20px 0 40px;
    position: relative;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    user-select: none;
    -webkit-user-select: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__track > * {
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
    min-width: 0;
}

.tours__carousel,
.services__carousel {
    position: relative;
    padding: 0 50px;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-neutral-800);
    border: 2px solid var(--c-primary-400);
    color: var(--c-primary-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-normal);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel__btn:hover {
    background: var(--c-primary-600);
    color: var(--c-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }

/* Carousel Dots */
.carousel__dots {
    margin-top: 16px;
    display: none;
    justify-content: center;
    gap: 6px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--c-neutral-500);
    opacity: 0.35;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.carousel__dot.active {
    opacity: 1;
    background: var(--c-primary-400);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(34,165,86,.3);
}

/* Tour Card */
.tour-card {
    background: var(--c-white);
    border: 1px solid var(--c-neutral-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .28s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow .28s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color .28s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity .28s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    will-change: transform;
    height: 485px;
}

.tour-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: var(--c-neutral-200);
}

.tour-card.featured::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    width: 0;
    height: 0;
}

.tour-card__featured-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: var(--g-gold);
    color: var(--c-neutral-900);
    padding: 5px 12px;
    border-radius: var(--r-full);
    font-weight: 800;
    font-size: .66rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(0,0,0,.2);
}

.tour-card__image {
    position: relative;
    height: 165px;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    filter: brightness(1);
    will-change: transform;
    backface-visibility: hidden;
    transition: transform 1.1s cubic-bezier(0.18, 0.7, 0.22, 1),
                filter 1.1s cubic-bezier(0.18, 0.7, 0.22, 1);
}

.tour-card.is-zoomed .tour-card__image img,
.tour-card:hover .tour-card__image img,
.tour-card__image:hover img {
    transform: scale(1.03);
    filter: brightness(1.03);
}

.tour-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
}

.tour-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card__name {
    font-family: var(--f-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-neutral-900);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: calc(1.3em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card__desc {
    color: var(--c-neutral-600);
    font-size: .82rem;
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.55em * 3);
}

.tour-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-neutral-200);
}

.tour-card__duration {
    color: var(--c-neutral-600);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-card__price {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34,165,86,.15);
    color: var(--c-primary-700);
    font-family: var(--f-body);
    font-size: .85rem;
    font-weight: 700;
    border-radius: var(--r-full);
    border: 2px solid var(--c-primary-400);
    box-shadow: 0 2px 8px rgba(34,165,86,.15);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.tour-card__price.is-consult,
.service-card__price.is-consult {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(120deg, rgba(28,135,72,.18) 0%, rgba(215,222,226,.52) 50%, rgba(28,135,72,.18) 100%);
    background-size: 220% 100%;
    border-color: rgba(108,160,132,.95);
    color: #1b6a3e;
    box-shadow: 0 2px 10px rgba(34,165,86,.18);
}

.tour-card__price.is-consult::before,
.service-card__price.is-consult::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 42%;
    height: 220%;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(232,237,239,.85) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(18deg) translateX(-150%);
    pointer-events: none;
    z-index: 0;
}

.tour-card__price.is-consult:hover,
.service-card__price.is-consult:hover {
    animation: consultPulse 1.1s ease-in-out infinite;
    border-color: rgba(186,198,204,.95);
    box-shadow: 0 4px 14px rgba(124,152,138,.35);
}

.tour-card__price.is-consult:hover::before,
.service-card__price.is-consult:hover::before {
    animation: consultShine .85s ease-out;
}

@keyframes consultPulse {
    0% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 55% 50%;
        filter: brightness(1.08);
    }
    100% {
        background-position: 100% 50%;
        filter: brightness(1);
    }
}

@keyframes consultShine {
    from {
        transform: rotate(18deg) translateX(-150%);
    }
    to {
        transform: rotate(18deg) translateX(420%);
    }
}

.tour-card:hover .tour-card__price {
    background: rgba(34,165,86,.15);
    color: var(--c-primary-700);
    border-color: var(--c-primary-400);
    box-shadow: 0 2px 8px rgba(34,165,86,.15);
}

.tour-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.tour-card__status.available {
    background: rgba(34,165,86,.1);
    color: var(--c-primary-700);
    border: 1px solid rgba(34,165,86,.25);
}

.tour-card__status.sold-out {
    background: rgba(220,53,69,.1);
    color: #dc3545;
    border: 1px solid rgba(220,53,69,.3);
}

.tour-card__status.full {
    background: rgba(240,173,78,.1);
    color: #c97a1e;
    border: 1px solid rgba(240,173,78,.3);
}

.tour-card__status.unavailable {
    background: rgba(119,119,119,.1);
    color: var(--c-neutral-600);
    border: 1px solid rgba(119,119,119,.3);
}

.tour-card__actions {
    display: flex;
    gap: 10px;
}

.tour-card__actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: .85rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--c-primary-800);
    overflow: hidden;
}

.contact__cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    margin-top: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
    background: var(--c-white);
    border-radius: var(--r-lg);
    border: 2px solid var(--c-neutral-200);
    transition: transform .24s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow .24s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color .24s cubic-bezier(0.22, 0.61, 0.36, 1);
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
    border-color: var(--c-primary-400);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary-100);
    color: var(--c-primary-700);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: background-color .24s ease, color .24s ease, transform .24s ease;
}

.contact-card:hover .contact-card__icon {
    background: var(--g-accent);
    color: var(--c-white);
    transform: scale(1.04);
}

.contact-card__body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-neutral-900);
    margin-bottom: 4px;
}

.contact-card__body p {
    font-size: 0.85rem;
    color: var(--c-neutral-600);
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-card__body .btn {
    padding: 8px 16px;
    font-size: .8rem;
}

.contact-card__body .btn--primary {
    background: var(--g-accent);
    color: var(--c-white);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    overflow-y: auto;
}

.modal.open { display: flex; align-items: flex-start; justify-content: center; }

.modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(6px);
    animation: fadeIn .2s var(--ease);
}

.modal__container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    margin: 60px auto;
    background: var(--c-neutral-800);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    animation: slideUp .3s var(--ease);
    overflow: hidden;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
    color: var(--c-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--t-fast);
}
.modal__close:hover { background: var(--c-danger); transform: rotate(90deg); }

.modal__body { padding: 32px; }

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.modal-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--r-md);
}

.modal-title {
    font-family: var(--f-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-primary-300);
    margin-bottom: 16px;
}

.modal-details {
    margin-bottom: 16px;
}

.modal-details p {
    margin-bottom: 6px;
    color: var(--c-neutral-300);
}

.modal-description {
    line-height: 1.8;
    color: var(--c-neutral-300);
    margin-bottom: 24px;
}

.modal-actions { display: flex; gap: 12px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--c-neutral-950);
    color: var(--c-neutral-300);
    padding: 80px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__logo {
    font-family: var(--f-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--c-white);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 16px;
    line-height: 1.3;
}
.footer__logo span { color: var(--c-gold); font-weight: 800; }

.footer__desc {
    font-size: .9rem;
    line-height: 1.8;
    color: var(--c-neutral-400);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: var(--r-sm);
    color: var(--c-neutral-300);
    font-size: 1rem;
    transition: all var(--t-normal);
}

.footer__social a:hover {
    background: var(--g-accent);
    color: var(--c-white);
    transform: translateY(-3px);
}

.footer__links h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links ul li {
    margin-bottom: 10px;
    font-size: .88rem;
    color: var(--c-neutral-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__contact-item {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
}

.footer__contact-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    margin-top: 0;
}

.footer__contact-text {
    display: block;
    min-width: 0;
    line-height: 1.35;
}

#footerEmailText .footer__contact-text {
    white-space: nowrap;
    font-size: .84rem;
}

.footer__links ul li a {
    color: var(--c-neutral-400);
    transition: all var(--t-fast);
}

.footer__links ul li a:hover {
    color: var(--c-gold);
    padding-left: 4px;
}

.footer__links ul li i {
    color: var(--c-primary-400);
    width: 16px;
    text-align: center;
}

/* Compatibility for service-details footer structure (.footer__list) */
.footer__list li {
    margin-bottom: 10px;
    font-size: .88rem;
    color: var(--c-neutral-400);
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
}

.footer__list li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary-400);
    width: 16px;
    margin-top: 0;
    text-align: center;
}

.footer__list li a {
    color: var(--c-neutral-300);
    transition: color var(--t-fast);
}

.footer__list li a:hover {
    color: var(--c-gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: var(--c-neutral-500);
}

.footer__developer {
    color: var(--c-neutral-500);
    font-size: .8rem;
}

.footer__developer strong {
    color: var(--c-gold);
    font-weight: 600;
}

.footer__admin {
    color: var(--c-neutral-600);
    font-size: .8rem;
    transition: color var(--t-fast);
}
.footer__admin:hover { color: var(--c-gold); }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--c-white);
    border-radius: 50%;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: all var(--t-normal);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50%      { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.15); }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--c-primary-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s var(--ease), visibility .5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__content {
    text-align: center;
}

.preloader__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: var(--c-primary-300);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.preloader__text {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--c-white);
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
}
.preloader__text span { color: var(--c-gold); font-weight: 800; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1591081658714-f576fb7ea3ed?q=80&w=871&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat fixed;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,61,31,.92), rgba(0,0,0,.8));
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--c-gold);
}

.cta-banner__title {
    font-family: var(--f-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 12px;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__actions .btn {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--c-neutral-900);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

.service-card {
    background: var(--c-white);
    border: 1px solid var(--c-neutral-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .28s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow .28s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color .28s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity .28s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    will-change: transform;
    height: 485px;
}

.service-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: var(--c-neutral-200);
}

.service-card__image {
    position: relative;
    height: 165px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    filter: brightness(1);
    will-change: transform;
    backface-visibility: hidden;
    transition: transform 1.1s cubic-bezier(0.18, 0.7, 0.22, 1),
                filter 1.1s cubic-bezier(0.18, 0.7, 0.22, 1);
}

.service-card.is-zoomed .service-card__image img,
.service-card:hover .service-card__image img,
.service-card__image:hover img {
    transform: scale(1.03);
    filter: brightness(1.03);
}

.service-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
}

.service-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__name {
    font-family: var(--f-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-neutral-900);
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: calc(1.3em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card__title {
    font-family: var(--f-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-neutral-900);
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: calc(1.3em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card__desc {
    color: var(--c-neutral-600);
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6em * 3);
}

.service-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-neutral-200);
}

.service-card__duration {
    color: var(--c-neutral-600);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card__price {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34,165,86,.15);
    color: var(--c-primary-700);
    font-family: var(--f-body);
    font-size: .85rem;
    font-weight: 700;
    border-radius: var(--r-full);
    border: 2px solid var(--c-primary-400);
    box-shadow: 0 2px 8px rgba(34,165,86,.15);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover .service-card__price {
    background: rgba(34,165,86,.15);
    color: var(--c-primary-700);
    border-color: var(--c-primary-400);
    box-shadow: 0 2px 8px rgba(34,165,86,.15);
}

.service-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.service-card__status.available {
    background: rgba(34,165,86,.1);
    color: var(--c-primary-700);
    border: 1px solid rgba(34,165,86,.25);
}

.service-card__status.sold-out {
    background: rgba(220,53,69,.1);
    color: #dc3545;
    border: 1px solid rgba(220,53,69,.3);
}

.service-card__status.full {
    background: rgba(240,173,78,.1);
    color: #c97a1e;
    border: 1px solid rgba(240,173,78,.3);
}

.service-card__status.unavailable {
    background: rgba(119,119,119,.1);
    color: var(--c-neutral-600);
    border: 1px solid rgba(119,119,119,.3);
}

.service-card__actions {
    display: flex;
    gap: 10px;
}

.service-card__actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: .85rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 100px 0;
    background: var(--c-neutral-800);
    overflow: hidden;
}

.faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--c-neutral-800);
    border: 1px solid var(--c-neutral-700);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-normal);
}

.faq__item:hover {
    border-color: var(--c-primary-200);
}

.faq__item.open {
    border-color: var(--c-primary-400);
    box-shadow: 0 4px 20px rgba(34,165,86,.1);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-neutral-200);
    transition: color var(--t-fast);
}

.faq__item.open .faq__question {
    color: var(--c-primary-700);
}

.faq__question i {
    font-size: .85rem;
    color: var(--c-neutral-500);
    transition: transform var(--t-normal), color var(--t-normal);
    flex-shrink: 0;
}

.faq__item.open .faq__question i {
    transform: rotate(180deg);
    color: var(--c-primary-500);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}

.faq__item.open .faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq__answer p {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--c-neutral-300);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    z-index: 899;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g-primary);
    color: var(--c-white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--t-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__stats { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Tablet (≤768px) ---------- */
@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .header__toggle { display: flex; }

    .header__nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(4,32,19,.98);
        backdrop-filter: blur(16px);
        padding: 20px;
        transform: translateY(-120%);
        transition: transform var(--t-normal);
        box-shadow: var(--shadow-lg);
    }
    .header__nav.open { transform: translateY(0); }

    .header__nav-list {
        flex-direction: column;
        gap: 4px;
    }
    .header__nav-link {
        display: block;
        padding: 14px 20px;
        text-align: center;
        border-radius: var(--r-md);
    }

    .hero__content { padding: 100px 20px 60px; }
    .hero__title { font-size: 2rem; }
    .hero__cta { flex-direction: column; align-items: center; }
    .hero__cta .btn { width: 100%; max-width: 300px; }

    .section-header { margin-bottom: 40px; }

    .about__stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 16px; }
    .about__image-badge { position: relative; bottom: 0; left: 0; margin-top: -20px; display: inline-flex; gap: 12px; align-items: center; }
    .about__badge-number { font-size: 2rem; }

    .tours__carousel,
    .services__carousel { padding: 0 36px; }
    .carousel__btn { width: 40px; height: 40px; font-size: 0.85rem; }
    .carousel__track > * { flex: 0 0 240px; width: 240px; max-width: 240px; }
    .tour-card__image { height: 150px; }
    .tour-card__body,
    .service-card__body { padding: 14px; }
    .tour-card__name { font-size: 1.05rem; }
    .service-card__name,
    .service-card__title { font-size: 1.05rem; }
    .tour-card__desc,
    .service-card__desc { font-size: .8rem; }

    .service-card__image { height: 150px; }

    .cta-banner { padding: 70px 0; }
    .cta-banner__icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .cta-banner__text { font-size: 1rem; margin-bottom: 24px; }
    .cta-banner__actions .btn { font-size: 1rem; padding: 14px 32px; }

    .faq__question { padding: 16px 18px; font-size: .92rem; }
    .faq__item.open .faq__answer { padding: 0 18px 16px; }
    .faq__answer p { font-size: .88rem; }

    .contact__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
    }
    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        min-width: 0;
        padding: 18px 12px;
        gap: 10px;
    }
    .contact-card__body p { word-break: break-word; }
    .contact-card__body .btn { width: 100%; }

    .back-to-top { right: 20px; bottom: 100px; }

    .footer { padding: 50px 0 20px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Disable horizontal AOS animations on mobile */
    [data-aos="fade-right"],
    [data-aos="fade-left"],
    [data-aos="slide-right"],
    [data-aos="slide-left"] {
        opacity: 0;
        transform: translateY(20px) !important;
        transition-property: opacity, transform !important;
    }
    [data-aos="fade-right"].aos-animate,
    [data-aos="fade-left"].aos-animate,
    [data-aos="slide-right"].aos-animate,
    [data-aos="slide-left"].aos-animate {
        opacity: 1;
        transform: translateY(0) !important;
    }
}

/* ---------- Mobile (≤576px) ---------- */
@media (max-width: 576px) {
    /* === GLOBAL MOBILE SPACING === */
    .container { padding: 0 16px; }
    .section-header { margin-bottom: 28px; }
    .section-header__title { font-size: 1.6rem; }
    .section-header__tag { font-size: .75rem; padding: 4px 14px; margin-bottom: 10px; }
    .section-header__desc { font-size: .92rem; }
    .section-header__line { width: 40px; height: 3px; margin-bottom: 14px; }

    /* === HERO MOBILE === */
    .hero { min-height: 92vh; }
    .hero__content { padding: 80px 16px 50px; }
    .hero__logo { width: 110px; margin-bottom: 20px; }
    .hero__title { font-size: 1.65rem; margin-bottom: 12px; }
    .hero__subtitle { font-size: .92rem; margin-bottom: 28px; line-height: 1.5; }
    .hero__cta { gap: 10px; }
    .hero__cta .btn { padding: 12px 24px; font-size: .88rem; max-width: 260px; }
    .hero__scroll { display: none; }

    /* === TOURS CAROUSEL MOBILE === */
    .tours { padding: 60px 0; }
    .tours__carousel,
    .services__carousel { padding: 0; }
    .carousel__btn { display: none; }
    .carousel__dots { display: flex; }
    .carousel__track { padding: 8px 0 44px; gap: 16px; }
    .carousel__track > * {
        flex: 0 0 78vw;
        width: 78vw;
        max-width: 270px;
    }

    /* Static carousel on mobile → horizontal scroll-snap */
    .carousel--static { overflow: visible; }
    .carousel--static .carousel__track {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 8px 16px 44px;
    }
    .carousel--static .carousel__track > * {
        scroll-snap-align: center;
    }

    .service-card {
        border-radius: 20px;
        border: none;
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
        transition: box-shadow .25s ease, opacity .25s ease;
    }
    .service-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
    }

    .tour-card {
        border-radius: 20px;
        border: none;
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
        transition: box-shadow .25s ease, opacity .25s ease;
        height: 400px;
    }
    .tour-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
    }

    .tour-card__image { height: 170px; }
    .tour-card__image-overlay {
        background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.5) 100%);
    }

    .tour-card__body {
        position: relative;
        z-index: 2;
        margin-top: -32px;
        padding: 14px 14px 12px;
        background: rgba(255,255,255,.93);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 18px 18px 0 0;
        border-top: 1px solid rgba(255,255,255,.4);
    }

    .tour-card__name { font-size: .98rem; margin-bottom: 4px; }
    .tour-card__desc { font-size: .78rem; margin-bottom: 8px; -webkit-line-clamp: 3; line-clamp: 3; }

    .tour-card__meta {
        margin-bottom: 6px;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .tour-card__duration { font-size: .78rem; }
    .tour-card__price { font-size: .74rem; padding: 3px 11px; border-width: 1.5px; }
    .tour-card__price.is-consult,
    .service-card__price.is-consult {
        background-size: 240% 100%;
    }

    .tour-card__status { margin-bottom: 8px; font-size: .68rem; padding: 3px 10px; }

    .tour-card__actions { gap: 6px; }
    .tour-card__actions .btn {
        padding: 8px 10px;
        font-size: .74rem;
        border-radius: 12px;
        font-weight: 700;
    }

    .tour-card.featured::before {
        font-size: .6rem;
        padding: 3px 12px 3px 8px;
        top: 10px;
    }

    /* === CTA BANNER MOBILE === */
    .cta-banner { padding: 50px 0; }
    .cta-banner__icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 16px; }
    .cta-banner__title { font-size: 1.3rem; margin-bottom: 8px; }
    .cta-banner__text { font-size: .88rem; margin-bottom: 20px; }
    .cta-banner__actions .btn { font-size: .9rem; padding: 12px 28px; }

    /* === SERVICES MOBILE === */
    .services { padding: 60px 0; }
    .service-card {
        border-radius: 20px;
        border: none;
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
        height: 400px;
    }
    .service-card__image { height: 170px; }
    .service-card__body {
        position: relative;
        z-index: 2;
        margin-top: -32px;
        padding: 14px 14px 12px;
        background: rgba(255,255,255,.93);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 18px 18px 0 0;
        border-top: 1px solid rgba(255,255,255,.4);
    }
    .service-card__name,
    .service-card__title { font-size: .98rem; margin-bottom: 4px; }
    .service-card__desc { font-size: .78rem; margin-bottom: 8px; -webkit-line-clamp: 3; line-clamp: 3; }
    .service-card__meta { margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,.06); }
    .service-card__price { font-size: .74rem; padding: 3px 11px; border-width: 1.5px; }
    .service-card__status { margin-bottom: 8px; font-size: .68rem; padding: 3px 10px; }
    .service-card__actions { gap: 6px; }
    .service-card__actions .btn { padding: 8px 10px; font-size: .74rem; border-radius: 12px; font-weight: 700; }

    /* === ABOUT MOBILE === */
    .about { padding: 60px 0; }
    .about__grid { gap: 28px; margin-bottom: 40px; }
    .about__text { font-size: .92rem; line-height: 1.7; margin-bottom: 14px; }
    .about__features { gap: 14px; margin-top: 20px; }
    .about__feature-icon { width: 40px; height: 40px; font-size: 1rem; }
    .about__feature h4 { font-size: .9rem; }
    .about__feature p { font-size: .82rem; }

    .about__image-main img { height: 260px; }

    .about__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
        gap: 10px;
    }
    .stat { padding: 14px 8px; }
    .stat__icon { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 10px; }
    .stat__number { font-size: 1.8rem; margin-bottom: 4px; }
    .stat__label { font-size: .7rem; }

    /* === FAQ MOBILE === */
    .faq { padding: 60px 0; }
    .faq__list { gap: 8px; }
    .faq__item { border-radius: var(--r-md); }
    .faq__question { padding: 14px 16px; font-size: .88rem; gap: 10px; }
    .faq__question i { font-size: .75rem; }
    .faq__item.open .faq__answer { padding: 0 16px 14px; max-height: 400px; }
    .faq__answer p { font-size: .84rem; line-height: 1.7; }

    /* === CONTACT MOBILE === */
    .contact { padding: 50px 0; }
    .contact__cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    .contact-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        max-width: 100%;
        min-width: 0;
        padding: 14px 16px;
        gap: 14px;
        border-radius: var(--r-md);
    }
    .contact-card:hover {
        transform: none;
    }
    .contact-card__icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; flex-shrink: 0; }
    .contact-card__body { flex: 1; min-width: 0; }
    .contact-card__body h3 { font-size: .88rem; margin-bottom: 2px; }
    .contact-card__body p { font-size: .82rem; margin-bottom: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .contact-card__body .btn { padding: 7px 16px; font-size: .78rem; display: inline-flex; }

    /* === FOOTER MOBILE === */
    .footer { padding: 40px 0 16px; }
    .footer__grid { gap: 24px; margin-bottom: 28px; }
    .footer__logo { font-size: 1.3rem; margin-bottom: 10px; }
    .footer__desc { font-size: .82rem; margin-bottom: 16px; }
    .footer__social a { width: 36px; height: 36px; font-size: .9rem; }
    .footer__links h4 { font-size: .82rem; margin-bottom: 12px; }
    .footer__links ul li { font-size: .8rem; margin-bottom: 8px; }
    .footer__bottom { font-size: .76rem; padding-top: 16px; }
    .footer__developer { font-size: .72rem; }

    #footerEmailText .footer__contact-text {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    /* === MODAL MOBILE === */
    .modal__container { width: 95%; margin: 16px auto; }
    .modal__body { padding: 20px; }
    .modal-title { font-size: 1.3rem; }
    .modal-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .modal-gallery img { height: 120px; }

    /* === WHATSAPP & BACK TO TOP === */
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 16px; }
    .back-to-top { width: 40px; height: 40px; font-size: .85rem; right: 16px; bottom: 80px; }
}

/* Disable hover-only effects on true touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        filter: none;
        box-shadow: none;
    }
}

/* Respect user reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .tour-card,
    .service-card,
    .contact-card,
    .tour-card__image img,
    .service-card__image img,
    .tour-card__price,
    .service-card__price,
    .contact-card__icon {
        transition: none !important;
    }
}


