/* =============================================
   AGENCIA DE VIAJES - ESTILOS PRINCIPALES
   ============================================= */

/* ---------------------------------------------
   VARIABLES CSS
--------------------------------------------- */
:root {
    /* Colores principales - Paleta Azul Peru Sport Travel */
    --primary: #0a1628;          /* Navy muy oscuro */
    --primary-dark: #060d17;     /* Navy profundo */
    --primary-light: #1e3a5f;    /* Navy clásico */
    --secondary: #0077cc;        /* Azul brillante (acento) */
    --secondary-light: #3399dd;  /* Azul claro */
    --secondary-dark: #005fa3;   /* Azul intenso */

    /* Azules adicionales para gradientes y efectos */
    --blue-50: #e6f3ff;
    --blue-100: #cce7ff;
    --blue-200: #99cfff;
    --blue-300: #66b7ff;
    --blue-400: #339fff;
    --blue-500: #0077cc;
    --blue-600: #005fa3;
    --blue-700: #004a80;
    --blue-800: #00365c;
    --blue-900: #002139;
    
    /* Colores neutros */
    --dark: #111827;
    --white: #ffffff;
    --cream: #f5f0e8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    
    /* Colores de estado */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Tipografía */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-medium: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-strong: 0 25px 80px rgba(0,0,0,0.15);
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transiciones */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Espaciado */
    --section-padding: 100px;
    --container-padding: 24px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------------------------------------------
   UTILIDADES
--------------------------------------------- */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------------------------------------------
   TIPOGRAFÍA
--------------------------------------------- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 2px;
}

.section-eyebrow--center {
    justify-content: center;
}

.section-eyebrow--center::before {
    display: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.section-title span {
    color: var(--secondary);
    font-style: italic;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 540px;
}

.section-description--white {
    color: rgba(255, 255, 255, 0.6);
}

.section-description--center {
    margin-left: auto;
    margin-right: auto;
}

/* ---------------------------------------------
   BOTONES
--------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn--primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
}

.btn--secondary {
    background: var(--primary);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--gray-200);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--primary);
    padding: 10px 20px;
}

.btn--ghost:hover {
    color: var(--secondary);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

/* ---------------------------------------------
   FORMULARIOS
--------------------------------------------- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
    appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-error {
    font-size: 0.85rem;
    color: var(--error);
    margin-top: 6px;
}

/* ---------------------------------------------
   HEADER
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.header--dark {
    background: var(--dark);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.4s var(--ease);
}

.header--scrolled .logo__text {
    color: var(--primary);
}

/* Navegación */
.nav {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 992px) {
    .nav {
        display: flex;
    }
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 8px 0;
}

.header--scrolled .nav__link {
    color: var(--gray-600);
}

.header--scrolled .nav__link:hover {
    color: var(--primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.4s var(--ease);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Header actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

@media (min-width: 768px) {
    .header__phone {
        display: flex;
    }
}

.header--scrolled .header__phone {
    color: var(--gray-700);
}

.header__whatsapp {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.header__whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    padding: 0;
}

.header--scrolled .mobile-toggle {
    color: var(--gray-700);
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__link:hover {
    color: var(--secondary);
}

.mobile-menu__footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu__contact a:hover {
    color: var(--secondary);
}

/* ---------------------------------------------
   HERO
--------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero--small {
    min-height: 60vh;
}

/* Hero slider */
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
}

.hero__slide--active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 0.85) 0%,
        rgba(30, 58, 95, 0.7) 50%,
        rgba(17, 24, 39, 0.6) 100%
    );
}

/* Hero content */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero__title span {
    color: var(--secondary-light);
    font-style: italic;
}

.hero__description {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 0.8s both;
}

/* Hero navigation dots */
.hero__nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

@media (min-width: 992px) {
    .hero__nav {
        display: flex;
    }
}

.hero__dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.hero__dot:hover,
.hero__dot--active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2.5s infinite;
}

.hero__scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ---------------------------------------------
   SEARCH BOX
--------------------------------------------- */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-strong);
    padding: 32px;
}

.search-box__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .search-box__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-box__grid {
        grid-template-columns: repeat(4, 1fr) auto;
        align-items: end;
    }
}

.search-box__btn {
    height: 56px;
    padding: 0 32px;
}

@media (min-width: 1024px) {
    .search-box__btn {
        margin-top: 0;
    }
}

/* ---------------------------------------------
   CARDS - DESTINOS
--------------------------------------------- */
.dest-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.dest-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.dest-card:hover .dest-card__image {
    transform: scale(1.08);
}

.dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(17, 24, 39, 0.9) 0%,
        rgba(17, 24, 39, 0.3) 40%,
        transparent 100%
    );
    transition: opacity 0.4s var(--ease);
}

.dest-card:hover::before {
    opacity: 0.85;
}

.dest-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.dest-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: var(--white);
}

.dest-card__country {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 6px;
}

.dest-card__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.dest-card__tours {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.dest-card__arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--ease);
}

.dest-card:hover .dest-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---------------------------------------------
   CARDS - TOURS
--------------------------------------------- */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease);
}

.tour-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.tour-card__image {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.tour-card:hover .tour-card__image img {
    transform: scale(1.05);
}

.tour-card__badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.tour-card__badge {
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.tour-card__badge--featured {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
}

.tour-card__badge--promo {
    background: var(--error);
    color: var(--white);
}

.tour-card__wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tour-card__wishlist:hover,
.tour-card__wishlist--active {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.tour-card__body {
    padding: 28px;
}

.tour-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.tour-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.tour-card__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.tour-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s var(--ease);
}

.tour-card:hover .tour-card__title {
    color: var(--secondary);
}

.tour-card__excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.tour-card__price-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-card__price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.tour-card__price-value small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-400);
}

/* ---------------------------------------------
   SECCIONES
--------------------------------------------- */
.section {
    padding: var(--section-padding) 0;
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    background: var(--primary);
}

.section--gray {
    background: var(--gray-50);
}

.section__header {
    margin-bottom: 56px;
}

.section__header--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}

@media (max-width: 768px) {
    .section__header--split {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Grids */
.grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

@media (max-width: 768px) {
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------
   WHY US
--------------------------------------------- */
.why-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.why-item__icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--secondary-light);
    transition: all 0.4s var(--ease);
}

.why-item:hover .why-item__icon {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.3);
}

.why-item__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.why-item__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------------------------------------------
   TESTIMONIOS
--------------------------------------------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
    color: var(--secondary);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-card__info {
    text-align: left;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.testimonial-card__trip {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ---------------------------------------------
   CTA SECTION
--------------------------------------------- */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

@media (max-width: 768px) {
    .cta__content {
        flex-direction: column;
        text-align: center;
    }
}

.cta__text {
    max-width: 580px;
}

.cta__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.cta__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta__btn {
    background: var(--primary);
    color: var(--white);
    padding: 18px 36px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta__btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */
.footer {
    background: var(--dark);
    padding: 80px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 56px;
    margin-bottom: 56px;
}

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

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
}

.footer__description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer__social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__contact-item a:hover {
    color: var(--secondary-light);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
    display: flex;
    gap: 32px;
}

@media (max-width: 768px) {
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

.footer__legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__legal a:hover {
    color: var(--secondary-light);
}

/* ---------------------------------------------
   WHATSAPP FLOTANTE
--------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ---------------------------------------------
   PAGE HEADER (Para páginas internas)
--------------------------------------------- */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: var(--primary);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header__title span {
    color: var(--secondary-light);
    font-style: italic;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-header__breadcrumb a:hover {
    color: var(--secondary-light);
}

.page-header__breadcrumb span {
    color: var(--secondary);
}

.page-header__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-header__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
}

.page-header__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.page-header__tags .tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

/* Page Header - Continent variant */
.page-header--continent {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header--continent::before {
    display: none;
}

/* ---------------------------------------------
   CONTINENT NAV
--------------------------------------------- */
.continent-nav {
    background: var(--gray-50);
    padding: 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 90;
}

.continent-nav__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.continent-nav__tabs::-webkit-scrollbar {
    display: none;
}

.continent-nav__tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
    border-bottom: 3px solid transparent;
    position: relative;
}

.continent-nav__tab i,
.continent-nav__tab svg {
    width: 20px;
    height: 20px;
}

.continent-nav__tab:hover {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.05);
}

.continent-nav__tab--active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
    background: white;
}

.continent-nav__tab--active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary);
}

@media (max-width: 768px) {
    .continent-nav {
        top: 70px;
    }

    .continent-nav__tabs {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .continent-nav__tab {
        padding: 16px 20px;
        font-size: 0.875rem;
    }

    .continent-nav__tab span {
        display: none;
    }

    .continent-nav__tab i,
    .continent-nav__tab svg {
        width: 24px;
        height: 24px;
    }
}

/* ---------------------------------------------
   CONTACTO PAGE
--------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-info__text {
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-info__text a:hover {
    color: var(--secondary);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form__subtitle {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------
   NOSOTROS PAGE
--------------------------------------------- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
}

.about-intro__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 20px 28px;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
}

.about-intro__badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.about-intro__badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-intro__content .section-title {
    margin-bottom: 24px;
}

.about-intro__text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-stats__item-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stats__item-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    text-align: center;
}

.team-card__image {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.team-card:hover .team-card__image img {
    transform: scale(1.05);
}

.team-card__social {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.team-card:hover .team-card__social {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-card__social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.team-card__social a:hover {
    background: var(--secondary);
    color: var(--white);
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ---------------------------------------------
   ANIMACIONES
--------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

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

/* Animate on scroll classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s var(--ease) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ---------------------------------------------
   RESPONSIVE UTILITIES
--------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
}

/* ---------------------------------------------
   HERO VIDEO BACKGROUND
--------------------------------------------- */
.hero__video-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video-container .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 0.85) 0%,
        rgba(30, 58, 95, 0.7) 50%,
        rgba(17, 24, 39, 0.6) 100%
    );
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s var(--ease) 1s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-light);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .hero__stats {
        gap: 24px;
    }

    .hero__stat-number {
        font-size: 1.8rem;
    }
}

/* ---------------------------------------------
   NAV DROPDOWN
--------------------------------------------- */
.nav__dropdown {
    position: relative;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: all 0.2s var(--ease);
}

.nav__dropdown-item:hover {
    background: var(--cream);
    color: var(--secondary);
}

.nav__dropdown-item svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

/* ---------------------------------------------
   CONTINENT TABS
--------------------------------------------- */
.continent-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.continent-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    min-width: 140px;
}

.continent-tab:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.continent-tab--active {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
}

.continent-tab__icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s var(--ease);
}

.continent-tab:hover .continent-tab__icon {
    background: rgba(184, 134, 11, 0.1);
    color: var(--secondary);
}

.continent-tab--active .continent-tab__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.continent-tab__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    transition: color 0.3s var(--ease);
}

.continent-tab--active .continent-tab__name {
    color: var(--white);
}

.continent-tab__count {
    font-size: 0.75rem;
    color: var(--gray-400);
    transition: color 0.3s var(--ease);
}

.continent-tab--active .continent-tab__count {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .continent-tabs {
        gap: 10px;
    }

    .continent-tab {
        padding: 14px 18px;
        min-width: auto;
        flex: 1 1 calc(33.333% - 10px);
    }

    .continent-tab__icon {
        width: 44px;
        height: 44px;
    }

    .continent-tab__name {
        font-size: 0.9rem;
    }

    .continent-tab__count {
        display: none;
    }
}

/* ---------------------------------------------
   CONTINENT PANELS
--------------------------------------------- */
.continent-content {
    position: relative;
}

.continent-panel {
    display: none;
    animation: fadeIn 0.5s var(--ease);
}

.continent-panel--active {
    display: block;
}

.continent-hero {
    position: relative;
    height: 280px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 32px;
}

.continent-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.continent-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 24, 39, 0.85) 0%,
        rgba(17, 24, 39, 0.4) 100%
    );
}

.continent-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
}

.continent-hero__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.continent-hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.continent-hero__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.continent-more {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .continent-hero {
        height: 240px;
    }

    .continent-hero__content {
        padding: 24px;
    }

    .continent-hero__title {
        font-size: 1.8rem;
    }

    .continent-hero__description {
        font-size: 0.9rem;
    }
}

/* ---------------------------------------------
   DESTINATION CARD BADGES
--------------------------------------------- */
.dest-card__badge--hot {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.dest-card__badge--new {
    background: linear-gradient(135deg, var(--info) 0%, #06b6d4 100%);
}

/* ---------------------------------------------
   OFFERS SECTION
--------------------------------------------- */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

.offer-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.offer-card--featured {
    grid-row: span 2;
}

.offer-card--small {
    min-height: 280px;
}

.offer-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.offer-card:hover .offer-card__image {
    transform: scale(1.05);
}

.offer-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 24, 39, 0.95) 0%,
        rgba(17, 24, 39, 0.5) 50%,
        rgba(17, 24, 39, 0.2) 100%
    );
}

.offer-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--error);
    border-radius: var(--radius-full);
    color: var(--white);
    z-index: 2;
}

.offer-card__discount {
    font-size: 1.1rem;
    font-weight: 700;
}

.offer-card__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--white);
    z-index: 2;
}

.offer-card--small .offer-card__content {
    padding: 24px;
}

.offer-card__destination {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 8px;
}

.offer-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.offer-card--featured .offer-card__title {
    font-size: 2rem;
}

.offer-card__includes {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.offer-card__pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.offer-card__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.offer-card__old-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.offer-card__new-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
}

.offer-card--small .offer-card__new-price {
    font-size: 1.5rem;
}

.offer-card__per {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.offer-card__timer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.offer-card__timer strong {
    color: var(--secondary-light);
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .offer-card--featured {
        grid-row: span 1;
        min-height: 400px;
    }
}

/* ---------------------------------------------
   OFFERS SECTION V2 - Premium Redesign
--------------------------------------------- */
.offers-v2 {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

.offers-v2__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    z-index: 0;
}

.offers-v2__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 119, 204, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(51, 153, 221, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.offers-v2__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.offers-v2 .container {
    position: relative;
    z-index: 1;
}

/* Header */
.offers-v2__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px;
}

.offers-v2__badge-hot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 119, 204, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 119, 204, 0.6); }
}

.offers-v2__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
}

.offers-v2__title span {
    color: var(--secondary-light);
    font-style: italic;
}

.offers-v2__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

/* Button glow effect */
.btn--glow {
    position: relative;
    overflow: hidden;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light), var(--secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--glow:hover::before {
    opacity: 1;
    animation: glow-rotate 2s linear infinite;
}

@keyframes glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Grid Layout - Bento style */
.offers-v2__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(260px, auto));
    gap: 24px;
}

/* Card Base */
.offer-v2 {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s var(--ease);
}

.offer-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Hero card - spans 2 rows */
.offer-v2--hero {
    grid-row: span 2;
}

/* Media */
.offer-v2__media {
    position: absolute;
    inset: 0;
}

.offer-v2__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.offer-v2:hover .offer-v2__img {
    transform: scale(1.08);
}

.offer-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.6) 40%,
        rgba(15, 23, 42, 0.3) 100%
    );
}

/* Discount Badge */
.offer-v2__discount {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    color: white;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 119, 204, 0.5);
}

.offer-v2__discount-value {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.offer-v2__discount-off {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.offer-v2__discount--light {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 20px rgba(51, 153, 221, 0.5);
}

.offer-v2__discount--dark {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.5);
}

/* Stock urgency */
.offer-v2__stock {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 119, 204, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Labels */
.offer-v2__label {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.offer-v2__label--popular {
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.95), rgba(0, 95, 163, 0.95));
}

.offer-v2__label--romantic {
    background: linear-gradient(135deg, rgba(51, 153, 221, 0.95), rgba(0, 119, 204, 0.95));
}

.offer-v2__label--new {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(10, 22, 40, 0.95));
}

/* Body */
.offer-v2__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
    z-index: 2;
}

.offer-v2--hero .offer-v2__body {
    padding: 32px;
}

.offer-v2__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 8px;
}

.offer-v2__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}

.offer-v2--hero .offer-v2__name {
    font-size: 1.75rem;
}

/* Tags */
.offer-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.offer-v2__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Countdown */
.offer-v2__countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-v2__countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.offer-v2__countdown-units {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
    padding: 8px 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
}

.countdown-box__num {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-light);
    line-height: 1;
}

.countdown-box__label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.countdown-box__sep {
    color: var(--secondary-light);
    font-weight: 700;
    font-size: 1.25rem;
    opacity: 0.5;
}

/* Footer */
.offer-v2__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.offer-v2__pricing {
    display: flex;
    flex-direction: column;
}

.offer-v2__price-old {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.offer-v2__price-now {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.offer-v2__price-amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
}

.offer-v2--hero .offer-v2__price-amount {
    font-size: 2.25rem;
}

.offer-v2__price-per {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust badges */
.offers-v2__trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offers-v2__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.offers-v2__trust-item i,
.offers-v2__trust-item svg {
    color: var(--secondary-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-v2__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .offer-v2--hero {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 450px;
    }

    .offer-v2:not(.offer-v2--hero) {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .offers-v2 {
        padding: 80px 0;
    }

    .offers-v2__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .offers-v2__grid {
        grid-template-columns: 1fr;
    }

    .offer-v2--hero {
        grid-column: span 1;
        min-height: 500px;
    }

    .offer-v2:not(.offer-v2--hero) {
        min-height: 380px;
    }

    .offers-v2__trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .offer-v2__countdown {
        flex-direction: column;
        gap: 8px;
    }
}

/* ---------------------------------------------
   TRAVEL TYPES
--------------------------------------------- */
.travel-types {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.travel-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease);
}

.travel-type:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.travel-type__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 16px;
    transition: all 0.4s var(--ease);
}

.travel-type:hover .travel-type__icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.travel-type__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 4px;
}

.travel-type__count {
    font-size: 0.85rem;
    color: var(--gray-400);
}

@media (max-width: 1200px) {
    .travel-types {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .travel-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .travel-type {
        padding: 24px 16px;
    }

    .travel-type__icon {
        width: 56px;
        height: 56px;
    }
}

/* ---------------------------------------------
   TESTIMONIALS SLIDER
--------------------------------------------- */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.testimonials-slider .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonials-nav__btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.testimonials-nav__btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* ---------------------------------------------
   NEWSLETTER
--------------------------------------------- */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(184, 134, 11, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter__content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter__input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter__btn {
    flex-shrink: 0;
}

.newsletter__note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 576px) {
    .newsletter__form {
        flex-direction: column;
    }

    .newsletter__title {
        font-size: 1.8rem;
    }
}

/* ---------------------------------------------
   TOUR CARD CONTINENT META
--------------------------------------------- */
.tour-card__meta-item--continent {
    background: rgba(184, 134, 11, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    color: var(--secondary);
}

/* ---------------------------------------------
   ANIMATIONS
--------------------------------------------- */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spin animation for loading */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}
