/* ============================================================
   FRONT PAGE — Inka Trails Peru
   Secciones: Hero, Features, Destinos, Testimonial.
   ============================================================ */

/* ============================================================
   HERO — Split Layout
   ============================================================ */

.hero {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    overflow: hidden;
    background-color: var(--color-bg);
}

/* ── Left panel: text content ── */
.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: var(--space-12) var(--space-12) var(--space-10) var(--space-16);
    position: relative;
    z-index: 1;
}

.hero__left-inner {
    max-width: 540px;
    animation: heroFadeUp 0.8s ease-out both;
}

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

/* Label / Kicker above the title */
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-label);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-widest);
    color: var(--color-secondary-dark);
    margin-bottom: var(--space-5);
}

.hero__label-accent {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: linear-gradient(to right, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 1px;
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 3.2vw, 2.875rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-900);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-6);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    line-height: var(--line-height-loose);
    margin-bottom: var(--space-10);
    max-width: 460px;
}

/* Actions row: View Itinerary + Play button */
.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.hero__btn-itinerary {
    font-size: var(--font-size-xs);
    padding: var(--space-3) var(--space-6);
    border-color: var(--color-neutral-800);
    color: var(--color-neutral-800);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.hero__btn-itinerary:hover {
    background-color: var(--color-neutral-800);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* Play button — circular */
.hero__play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-neutral-300);
    background: transparent;
    color: var(--color-neutral-600);
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.hero__play-btn svg {
    margin-left: 3px; /* visual centering of play triangle */
}

.hero__play-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-50);
    box-shadow: 0 0 0 4px rgba(122, 27, 27, 0.08);
    transform: scale(1.06);
}

/* ── Divider between content and CTA bar ── */
.hero__divider {
    width: 100%;
    max-width: 540px;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--color-border),
        var(--color-border-dark) 50%,
        transparent
    );
    margin: var(--space-6) 0 var(--space-5);
}

/* ── Bottom CTA bar ── */
.hero__cta-bar {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-xl);
    flex-wrap: nowrap;
    animation: heroFadeUp 0.8s 0.3s ease-out both;
}

.hero__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-neutral-800);
    text-decoration: none;
    border: 1.5px solid var(--color-neutral-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.hero__cta-link:hover {
    background-color: var(--color-neutral-800);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

/* ── Right panel: image slideshow ── */
.hero__right {
    position: relative;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
}

/* Individual slides — stacked, crossfade */
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero__slide--active {
    opacity: 1;
}

/* Subtle Ken Burns zoom on active slide */
.hero__slide--active .hero__img {
    animation: heroKenBurns 7s ease-in-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Navigation dots — inside right panel */
.hero__dots {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: var(--space-2);
}

.hero__dot {
    width: 32px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero__dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px;
}

.hero__dot--active {
    background: rgba(255, 255, 255, 0.40);
}

.hero__dot--active::after {
    animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* ============================================================
   FEATURES / BRAND VALUES
   ============================================================ */

.features {
    padding: var(--space-20) 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background-color: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.features__icon-wrap {
    width: 115px;
    height: 115px;
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features__icon-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.features__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-tight);
}

.features__text {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.features__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    color: var(--color-neutral-800);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--color-secondary);
    transition: all var(--transition-base);
    margin-top: auto;
}

.features__link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.features__link svg {
    transition: transform var(--transition-base);
}

.features__link:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   SECTION HEADER (reutilizable)
   ============================================================ */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-10);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-neutral-800);
    letter-spacing: var(--letter-spacing-normal);
    margin-bottom: var(--space-3);
}

.section-header__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

/* ============================================================
   DESTINOS EXCLUSIVOS
   ============================================================ */

/* ============================================================
   VIAJES A MEDIDA — CAROUSEL (Abercrombie & Kent Style)
   ============================================================ */

.tailor-made {
    padding: 40px 0;
    width: 100%;
    background-color: var(--color-bg);
    overflow: hidden;
}

.tailor-made__header {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-8);
    align-items: start;
    margin-bottom: var(--space-8);
}

.tailor-made__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: var(--font-weight-regular);
    font-style: italic;
    color: var(--color-neutral-900);
    line-height: var(--line-height-tight);
}

.tailor-made__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.tailor-made__cta {
    font-size: var(--font-size-xs);
    padding: var(--space-3) var(--space-6);
    border-color: var(--color-neutral-800);
    color: var(--color-neutral-800);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
}

.tailor-made__cta:hover {
    background-color: var(--color-neutral-800);
    color: var(--color-text-inverse);
}

.tailor-made__controls {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.tailor-made__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-neutral-300);
    background: #fff;
    color: var(--color-neutral-800);
    cursor: pointer;
    transition: all var(--transition-base);
}

.tailor-made__arrow:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-50);
    transform: scale(1.05);
}

/* Horizontal Track */
.tailor-made__track {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-top: var(--space-2);
    padding-bottom: var(--space-6);
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tailor-made__track::-webkit-scrollbar {
    display: none;
}

/* Card item */
.tm-card {
    position: relative;
    flex: 0 0 320px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.tm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.tm-card__img-wrap {
    position: absolute;
    inset: 0;
}

.tm-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tm-card:hover .tm-card__img {
    transform: scale(1.08);
}

.tm-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    background: linear-gradient(
        to top,
        rgba(20, 10, 15, 0.85) 0%,
        rgba(20, 10, 15, 0.40) 45%,
        rgba(20, 10, 15, 0.00) 75%
    );
    z-index: 1;
}

.tm-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-semibold);
    color: #fff;
    margin-bottom: 0;
    line-height: var(--line-height-snug);
}

/* ============================================================
   TOURS DESTACADOS (GRID CON DÍAS Y RUTA)
   ============================================================ */

.tours-section {
    padding: 40px 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border);
}

.tours-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-12);
}

.tours-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.tours-section__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.tour-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.tour-card__img-wrap {
    position: absolute;
    inset: 0;
}

.tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card__img {
    transform: scale(1.08);
}

.tour-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    background: linear-gradient(
        to top,
        rgba(15, 8, 12, 0.90) 0%,
        rgba(15, 8, 12, 0.45) 45%,
        rgba(15, 8, 12, 0.00) 75%
    );
    z-index: 1;
}

.tour-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 1.8vw, 1.35rem);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: #fff;
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-3);
}

.tour-card__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    margin-bottom: var(--space-3);
}

.tour-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.tour-card__days {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: var(--space-3);
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    min-width: 42px;
}

.tour-card__days-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    color: #fff;
}

.tour-card__days-label {
    font-family: var(--font-label);
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.80);
    margin-top: 2px;
}

.tour-card__route {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
}

/* ============================================================
   TRIPADVISOR REVIEWS SECTION
   ============================================================ */

.reviews-section {
    padding: 40px 0;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid var(--color-border);
}

.reviews-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-12);
}

.reviews-section__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: rgba(0, 170, 108, 0.1);
    color: #00875A;
    border-radius: var(--radius-full);
    font-family: var(--font-label);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    margin-bottom: var(--space-4);
}

.reviews-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.reviews-section__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.reviews-section__top {
    display: flex;
    justify-content: center;
    margin-top: var(--space-4);
}

.reviews-section__controls {
    display: flex;
    gap: var(--space-3);
}

.reviews-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-neutral-300);
    background: #fff;
    color: var(--color-neutral-800);
    cursor: pointer;
    transition: all var(--transition-base);
}

.reviews-arrow:hover {
    border-color: #00AA6C;
    color: #00AA6C;
    background: rgba(0, 170, 108, 0.08);
    transform: scale(1.05);
}

/* Horizontal Slider Track */
.reviews-track {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-top: var(--space-2);
    padding-bottom: var(--space-6);
    padding-left: 0;
    padding-right: 0;
    margin: var(--space-6) 0 var(--space-8);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    position: relative;
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.review-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.review-card__user {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: #930001;
    color: #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.review-card__author {
    display: block;
    font-family: var(--font-body);
    font-size: 0.925rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-900);
    line-height: 1.2;
}

.review-card__location {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.dot-rating {
    color: #00AA6C;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.review-card__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-900);
    line-height: 1.3;
    margin-bottom: var(--space-2);
}

.review-card__date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    display: block;
}

.review-card__text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-neutral-700);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
    flex-grow: 1;
}

.reviews-section__action {
    text-align: center;
    margin: 15px 0 20px;
}

.btn--tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background-color: #00AA6C;
    color: #ffffff !important;
    font-family: var(--font-label);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 170, 108, 0.25);
    transition: all var(--transition-fast);
}

.btn--tripadvisor:hover {
    background-color: #00875A;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 170, 108, 0.4);
    transform: translateY(-2px);
}
    object-fit: cover;
}

.testimonial__author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.testimonial__name {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    font-style: normal;
    color: var(--color-neutral-800);
}

.testimonial__role {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* ============================================================
   PREGUNTAS FRECUENTES (FAQ - 10 PREGUNTAS EN 2 COLUMNAS)
   ============================================================ */

.faq-section {
    padding: 40px 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border);
}

.faq-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-12);
}

.faq-section__label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.faq-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.faq-section__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: #FAFAFB;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item[open] {
    border-color: var(--color-secondary);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item__question {
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-neutral-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    user-select: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question svg {
    color: var(--color-secondary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item[open] .faq-item__question svg {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 var(--space-6) var(--space-5);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-neutral-700);
    line-height: var(--line-height-relaxed);
}

.faq-item__answer p {
    margin-bottom: 0;
}

/* ============================================================
   BLOG DE VIAJES SECTION
   ============================================================ */

.home-blog-section {
    padding: 40px 0;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid var(--color-border);
}

.home-blog-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.home-blog-section__label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.home-blog-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-neutral-900);
    margin-bottom: 0;
}

.home-blog-section__cta {
    font-size: var(--font-size-xs);
    padding: var(--space-3) var(--space-6);
    border-color: var(--color-neutral-800);
    color: var(--color-neutral-800);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
}

.home-blog-section__cta:hover {
    background-color: var(--color-neutral-800);
    color: #ffffff;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.home-blog-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.home-blog-card__img-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.home-blog-card:hover .home-blog-card__img {
    transform: scale(1.06);
}

.home-blog-card__content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-label);
    font-size: 0.75rem;
    margin-bottom: var(--space-3);
}

.home-blog-card__cat {
    color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.5px;
}

.home-blog-card__date {
    color: var(--color-text-muted);
}

.home-blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.35;
    margin-bottom: var(--space-3);
}

.home-blog-card__title a {
    color: var(--color-neutral-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.home-blog-card__title a:hover {
    color: var(--color-primary);
}

.home-blog-card__excerpt {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-neutral-700);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.home-blog-card__link {
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.home-blog-card__link:hover {
    color: var(--color-primary-dark);
}

/* ============================================================
   RESPONSIVE — Front Page
   ============================================================ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__right {
        min-height: 50vh;
        order: -1; /* Image on top */
    }

    .hero__left {
        align-items: flex-start;
        padding: var(--space-10) var(--space-8) var(--space-8);
    }

    .hero__divider {
        margin: var(--space-6) 0;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .tailor-made__header {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

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

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-section__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__right {
        min-height: 36vh;
    }

    .hero__left {
        padding: var(--space-8) var(--space-4) var(--space-5);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero__left-inner {
        width: 100%;
        max-width: 100%;
    }

    .hero__label {
        font-size: 0.625rem;
        margin-bottom: var(--space-3);
    }

    .hero__title {
        font-size: clamp(1.35rem, 5.5vw, 1.65rem);
        margin-bottom: var(--space-4);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hero__subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-6);
        line-height: var(--line-height-relaxed);
    }

    .hero__actions {
        gap: var(--space-3);
    }

    .hero__play-btn {
        width: 42px;
        height: 42px;
    }

    .hero__divider {
        margin: var(--space-5) 0;
    }

    .hero__cta-bar {
        gap: var(--space-2);
        padding: var(--space-3) var(--space-3);
        border-radius: var(--radius-lg);
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .hero__cta-link {
        font-size: 0.625rem;
        padding: var(--space-2) var(--space-3);
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .features__item {
        padding: var(--space-6) var(--space-4);
    }

    .tm-card {
        flex: 0 0 260px;
    }



    .testimonial__text {
        font-size: var(--font-size-lg);
    }
}

/* ============================================================
   VIDEO MODAL POPUP STYLES
   ============================================================ */

.itp-video-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.itp-video-modal--active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
}

.itp-video-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.itp-video-modal__container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 960px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.itp-video-modal--active .itp-video-modal__container {
    transform: scale(1);
}

.itp-video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.itp-video-modal__close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.itp-video-modal__body {
    width: 100%;
    position: relative;
}

.itp-video-modal__iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.itp-video-modal__iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
