/* --- ESTILOS GENERALES Y FUENTES --- v2.0 FIX WHY CHOOSE GRID */
:root {
    --primary-color: #4A9A92;
    --secondary-color: #000;
    --text-color: #3E2D23;
    --light-text-color: #ffffff;
    --background-light: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --hero-text-color-beige: #EFEAE4;
    /* === Nuevos colores para las tarjetas === */
    --card-dark-blue: #23374d;
    /* Azul oscuro para Signature */
    --card-light-beige: #f4f1eb;
    /* Beige claro para Bespoke */
    --card-text-light: #ffffff;
    --card-text-dark: #23374d;
    --card-accent-gold: #c9a970;
    /* Dorado para acentos */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global base styles restoring original typography */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    overflow-x: hidden;
}



body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Final override: ensure the itinerary grid shows 2 columns on typical screens - BETTER FILLED LOOK */
#what-we-offer-grid .itinerary-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    padding: 15px !important;
}

#what-we-offer-grid .itinerary-day-row {
    aspect-ratio: 1 / 1 !important;
    min-height: 130px !important;
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Who Is This For Section */
.bespoke-for-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    position: relative;
}

.bespoke-for-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(201, 168, 118, 0.3) 50%, transparent 100%);
}

.bespoke-for-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 55px;
    font-weight: 400;
    font-style: italic;
}

.bespoke-for-intro {
    max-width: 780px;
    margin: 0 auto 45px auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.bespoke-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bespoke-for-item {
    padding: 45px 35px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3ef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 118, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.bespoke-for-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bespoke-for-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201, 168, 118, 0.18);
    color: #b88d58;
    font-size: 0.75rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 700;
}

.bespoke-for-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(74, 154, 146, 0.15);
    color: #4A9A92;
    font-size: 1.4rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.bespoke-for-item:hover i {
    transform: translateY(-2px);
    background: rgba(74, 154, 146, 0.25);
}

.bespoke-for-item h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #23374d;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.bespoke-for-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.bespoke-for-highlights {
    list-style: none;
    margin: 6px 0 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    width: 100%;
}

.bespoke-for-highlights li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3a3a3a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bespoke-for-highlights li::before {
    content: '\\2022';
    color: #4A9A92;
    font-size: 0.9rem;
    display: inline-block;
    width: 8px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0F0F0F;
}

section.animate-on-scroll {
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    max-width: 100vw;
    overflow-x: hidden;
}

section.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mantener padding original para secciones finales */
.inclusions-section,
.testimonials-section,
.contact-us-section {
    padding: 60px 20px !important;
}

/* --- BARRA DE NAVEGACIÓN --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: background 0.3s ease;
}

/* Reserve header height so content doesn't sit underneath it */
.main-header {
    height: 70px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 1001;
}

.nav-logo-container {
    padding-top: 0;
    display: flex;
    align-items: center;
}

.nav-logo {
    display: block;
    max-height: 62px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    /* En escritorio los enlaces deben ser legibles sobre el fondo claro */
    color: var(--text-color);
    background-color: transparent;
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 0;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text-color);
    overflow: hidden;
    flex-direction: column;
    background-color: transparent;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.hero-img {
    position: relative;
    z-index: 0;
    filter: brightness(0.5);
    /* Asegura que la imagen cubra el área del hero y no distorsione */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    position: absolute;
    z-index: 1;
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    gap: 0;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 100%;
    text-align: center;
}

@media (width <=620px) {
    .hero-content {
        margin-top: 100px;
    }
}

.hero-journey-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: nowrap;
}

.hero-journey-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.92), rgba(255, 213, 92, 0.92));
    color: #2f271b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-journey-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(255, 193, 7, 0.35);
}

.hero-journey-link--left,
.hero-journey-link--right {
    align-self: center;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-journey-links {
        gap: 12px;
        margin-top: 20px;
    }

    .hero-journey-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .hero-journey-links {
        flex-direction: column;
        gap: 10x;
        margin-top: 10px;
    }

    .hero-journey-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.logo-background {
    display: none;
}

/* Estilos para "Tocca" */
.hero-main-title {
    font-family: 'Style Script', cursive;
    font-size: clamp(3.5rem, 15vw, 10rem);
    font-weight: 400;
    margin: 0;
    line-height: 0.9;
    color: var(--hero-text-color-beige);
    /* Color beige */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    grid-row: 1;
    transform: translateY(10px);
}

/* Estilos para "AMALFI COAST" */
.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    color: var(--hero-text-color-beige);
    /* Color beige */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    grid-row: 2;
    transform: translateY(-15px) translateX(30px);
    text-align: center;
    justify-self: center;
}

/* Grid positioning handles spacing - manual spacing rules removed */

/* Estilos para "TOUCH THE SOUL OF THE COAST" (asumo que es .hero-description) */
.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    color: var(--hero-text-color-beige);
    /* Color beige */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    grid-row: 3;
    transform: translateY(-5px) translateX(60px);
    text-align: center;
    justify-self: center;
    margin-left: 80px;
    font-style: italic;
    max-width: 90vw;
    overflow-wrap: break-word;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.hero-cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    text-align: center;
}

@media (min-width: 769px) {
    .hero-cta-buttons .cta-button {
        width: auto;
        min-width: 220px;
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--warning-color);
    color: var(--secondary-color);
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.cta-secondary {
    background-color: transparent;
    color: #333;
    border: none;
}

.hero-cta-buttons .cta-button.cta-secondary {
    color: #ffffff;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #000;
}

.hero-cta-buttons .cta-button.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* --- SECCIÓN WHY US --- */
.why-us-carousel-section {
    background-color: #f3f7f6;
    /* slightly different from pure white */
}

.why-us-carousel-section:nth-of-type(even) {
    background-color: #ffffff;
}


.why-us-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.why-us-text-block {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

@media (width < 360px) {
    .text-why-us {
        font-size: 0.9em;
    }
}

.why-us-text-block strong {
    color: #000000;
    font-weight: 700;
}

.what-we-offer-cta {
    margin-top: 25px;
    text-align: left;
}

.what-we-offer-cta .cta-button {
    display: inline-block;
    margin-top: 0;
}

.why-us-text-block h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 0;
    color: var(--secondary-color);
    /* change headline color for Why Choose us */
}

.why-us-image-grid {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.why-us-image-grid img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Strong final override: make Why Choose Us identical to What We Offer - BETTER ALIGNMENT */
#why-tocca-amalfi .why-us-container {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 40px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 20px !important;
}

#why-tocca-amalfi .why-us-text-block {
    flex: 1 1 55% !important;
    min-width: 300px !important;
    text-align: left !important;
    max-width: 100% !important;
}

#why-tocca-amalfi .why-us-image-grid {
    flex: 1 1 40% !important;
    min-width: 300px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}


#why-tocca-amalfi .why-us-image-grid img {
    width: 100% !important;
    height: auto !important;
    max-height: 550px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 920px) {
    #why-tocca-amalfi .why-us-container {
        flex-direction: column !important;
    }

    #why-tocca-amalfi .why-us-image-grid {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 30px 0 !important;
    }

    #why-tocca-amalfi .why-us-image-grid img {
        width: 90% !important;
        max-width: 400px !important;
        height: 350px !important;
        border-radius: 15px !important;
        margin: 0 auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }
}

/* === Subtitle for Why Choose Us === */
.why-us-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    color: var(--text-color);
    margin: -10px auto 40px;
    max-width: 900px;
    font-weight: 400;
    padding: 0 20px;
}

/* === Whats Included Title with letter spacing === */
.whats-included-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

/* === SPECIFIC STYLES FOR "What We Believe" === */
#what-we-believe .why-us-image-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#what-we-believe .why-us-image-grid img {
    width: 100% !important;
    height: 400px !important;
    /* Hacer la imagen más grande */
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 920px) {
    #what-we-believe .why-us-image-grid {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 30px 0 !important;
    }

    #what-we-believe .why-us-image-grid img {
        width: 90% !important;
        max-width: 400px !important;
        height: 350px !important;
        /* Más grande en móvil también */
        border-radius: 15px !important;
        margin: 0 auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }
}

/* === FIXED WHAT WE OFFER GRID PHOTOS === */
.what-we-offer-grid-photos {
    grid-area: photos;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

.what-we-offer-grid-photos img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.what-we-offer-grid-photos img:hover {
    transform: scale(1.05) !important;
}

@media (max-width: 920px) {
    .what-we-offer-grid-photos {
        order: 2 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-top: 30px !important;
    }

    .what-we-offer-grid-photos img {
        width: 100% !important;
        height: 150px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
}

/* === CAROUSEL STYLES === */
.what-we-offer-carousel,
.experiences-carousel {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.what-we-offer-carousel .slick-slide img,
.experiences-carousel .slick-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.what-we-offer-carousel .slick-dots,
.experiences-carousel .slick-dots {
    bottom: -30px;
}

.what-we-offer-carousel .slick-dots li button:before,
.experiences-carousel .slick-dots li button:before {
    color: var(--primary-color);
}

.what-we-offer-carousel .slick-arrow,
.experiences-carousel .slick-arrow {
    z-index: 10;
}

@media (max-width: 920px) {
    .what-we-offer-carousel,
    .experiences-carousel {
        margin-top: 30px;
    }
}

/* Ensure 'What We Offer' heading is black without changing other sections */
#what-we-offer h2 {
    color: var(--text-color) !important;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.offer-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* CAMBIO: Lista de experiencias más compacta */
.offer-list.offer-list-compact li {
    font-size: 1rem;
    margin-bottom: 8px;
    /* Menos espacio vertical */
    line-height: 1.4;
}

/* ================================================
   CORRECCIÓN DEFINITIVA "What We Offer"
================================================ */

/* --- What We Offer uses same layout as Why Choose Us --- */
#what-we-offer .why-us-container {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 40px !important;
}

/* --- 2. Estilo Base (ESCRITORIO) para el nuevo contenedor --- */
.what-we-offer-layout-container {
    display: grid;
    grid-template-columns: 55% 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px 40px;
    grid-template-areas:
        "intro  photos"
        "timeline timeline"
        "list   carousel";
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Asignación de áreas del grid */
.what-we-offer-intro {
    grid-area: intro;
}

.what-we-offer-list {
    grid-area: list;
}

.what-we-offer-grid-photos {
    grid-area: photos;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

.what-we-offer-grid-photos img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.what-we-offer-grid-photos img:hover {
    transform: scale(1.05) !important;
}

.what-we-offer-carousel {
    grid-area: carousel;
    display: block !important;
    width: 100% !important;
    max-width: 500px !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    justify-self: center !important;
}

/* --- 3. Estilo para Móvil (Responsive) --- */
@media (max-width: 920px) {
    .what-we-offer-layout-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .what-we-offer-intro {
        order: 1;
    }

    .what-we-offer-grid-photos {
        order: 2;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-top: 30px !important;
    }

    .what-we-offer-grid-photos img {
        width: 100% !important;
        height: 150px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .what-we-offer-list {
        order: 3;
        margin-top: 30px !important;
    }

    .what-we-offer-carousel {
        order: 4;
        display: block !important;
        margin-top: 30px !important;
    }
}

/* --- 4. Estilos del Carrusel REMOVED DUPLICATES --- */

.what-we-offer-carousel .slick-next {
    right: 10px !important;
}

/* --- REMOVE ALL DUPLICATE STYLES --- */
/* Remove the duplicate "FIXED WHAT WE OFFER GRID PHOTOS" and "FIXED CAROUSEL STYLES" sections */

/* ========================================
   CHATBOT STYLES  
======================================== */

.chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.chatbot-toggle.pulse {
    animation: pulseChat 2s infinite;
}

@keyframes pulseChat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.chat-icon {
    font-size: 1.5rem;
    color: white;
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #f39c12;
    border-radius: 50%;
    border: 2px solid white;
}

.chatbot-popup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    max-width: calc(100vw - 50px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chatbot-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chatbot-popup.show-welcome {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    animation: welcomeBounce 0.6s ease;
}

@keyframes welcomeBounce {
    0% {
        transform: translateY(20px) scale(0.9);
    }

    50% {
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chatbot-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-body {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 200px;
}

.bot-message,
.user-message {
    margin-bottom: 15px;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message .message-bubble {
    background: #f8f9fa;
    color: #2c3e50;
    border-bottom-left-radius: 6px;
}

.user-message .message-bubble {
    background: #e74c3c;
    color: white;
    border-bottom-right-radius: 6px;
}

.chatbot-input-area {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

#chatbot-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

#chatbot-input:focus {
    border-color: #e74c3c;
}

.send-btn {
    margin-left: 10px;
    width: 36px;
    height: 36px;
    background: #e74c3c;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.send-btn:hover {
    background: #c0392b;
}

.chatbot-quick-questions {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    border-radius: 0 0 20px 20px;
    background: #f8f9fa;
}

/* === TOCCA OFFERINGS CARDS STYLES (SECCIÓN ANTIGUA) === */
.offerings-cards {
    display: grid;
    /* CAMBIO: 2 columnas fijas */
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    /* CAMBIO: Iniciar contador */
    counter-reset: offering-counter;
}

.offerings-cards .promise-card {
    grid-column: 1 / -1;
}

.offering-card {
    /* CAMBIO: Fondo con color sutil */
    background: rgba(74, 154, 146, 0.05);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 154, 146, 0.1), transparent);
    transition: left 0.6s;
}

.offering-card:hover::before {
    left: 100%;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.offering-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.offering-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.offering-card p:last-child {
    margin-bottom: 0;
}

.offering-content {
    margin-top: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(-10px);
}

.offering-card.expanded .offering-content {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}

.offering-card:hover h4 {
    color: #2A5A52;
}

.offering-content-visible {
    margin-top: 20px;
    opacity: 1;
    display: block;
}

.departure-dates {
    margin: 25px 0;
    padding: 20px;
    background: rgba(74, 154, 146, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.departure-dates h5 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-align: center;
}

.dates-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.departure-date-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.departure-date-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.departure-date {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.availability-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.availability-badge.available {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.availability-badge.few-spots {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    animation: pulse-warning 2s infinite;
}

.availability-badge.sold-out {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes pulse-warning {

    0%,
    100% {
        background-color: #fff3cd;
        transform: scale(1);
    }

    50% {
        background-color: #ffeaa7;
        transform: scale(1.02);
    }
}

.story-tagline {
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
    margin-top: 20px !important;
}

@media (max-width: 768px) {
    .dates-grid {
        flex-direction: column;
        gap: 12px;
    }

    .departure-date-card {
        min-width: auto;
        padding: 12px;
    }

    .departure-date {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .availability-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* === PROMISE CARD STYLES === */
.promise-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7A72 100%);
    color: white;
    border: none;
    margin-top: 30px;
    width: 100%;
}

.promise-card:hover {
    background: linear-gradient(135deg, #3A7A72 0%, var(--primary-color) 100%);
    border-color: transparent;
}

.promise-card::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.promise-title {
    color: white !important;
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.promise-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 !important;
    max-width: 800px;
    margin: 0 auto !important;
}

/* ========================================
   NUEVA SECCIÓN JOURNEYS (TOCCA OFFERINGS)
======================================== */

.journey-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
    /* Fondo claro */
    position: relative;
    overflow: hidden;
}

#our-experiences,
#tocca-offerings {
    scroll-margin-top: 110px;
}

.journey-section h2 {
    color: var(--text-color);
    filter: saturate(1.5);
}

.journey-intro {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #666;
    margin: 10px auto 30px;
    max-width: 900px;
    line-height: 1.7;
}

.journey-intro strong {
    color: #000000;
    font-weight: 700;
}

.journey-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Línea vertical divisoria */
.journey-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.journey-card {
    padding: 40px;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 600px;
    display: block;
}

.journey-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.journey-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.journey-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 700;
    color: #c9a970;
}

.signature-card .journey-card-content h3 {
    color: #ffffff;
}

.bespoke-card .journey-card-content h3 {
    color: #ffffff;
}

.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
    transition: background-color 0.4s ease;
}

.journey-card:hover::after {
    background-color: rgba(0, 0, 0, 0.55);
}

.journey-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.journey-card:hover .journey-card-image {
    filter: brightness(1.15) saturate(1.3);
}

/* Tarjeta Signature */
.signature-card {
    color: var(--card-text-light);
}

.signature-card::after {
    background-color: rgba(18, 46, 66, 0.88);
}

.signature-card:hover::after {
    background-color: rgba(18, 46, 66, 0.6);
}

.signature-card h4 {
    color: #ffffff;
}

.signature-card .journey-features li {
    color: rgba(255, 255, 255, 0.92);
}

.signature-card .journey-features i {
    color: rgba(255, 255, 255, 0.9);
}

.signature-card .journey-link {
    color: rgba(255, 255, 255, 0.95);
}

/* Tarjeta Bespoke */
.bespoke-card {
    color: #ffffff;
}

.bespoke-card .journey-card-image {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.92) saturate(0.85);
    transition: filter 0.4s ease;
}

.bespoke-card::after {
    background-color: rgba(212, 175, 55, 0.75);
}

.bespoke-card:hover::after {
    background-color: rgba(212, 175, 55, 0.55);
}

.bespoke-card h4 {
    color: #ffffff;
}

.bespoke-card .journey-features li {
    color: rgba(255, 255, 255, 0.92);
}

.bespoke-card .journey-features i {
    color: rgba(255, 255, 255, 0.9);
}

.bespoke-card .journey-link {
    color: rgba(255, 255, 255, 0.95);
}

.bespoke-card:hover .journey-card-image {
    filter: brightness(1.05) saturate(1.05);
}


/* Contenido de las tarjetas */
.journey-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 0 0 15px 0;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.journey-subtitle-card {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    color: inherit;
}

/* Mejorar visibilidad de las descripciones en cada tarjeta */
.signature-card .journey-subtitle-card {
    color: rgba(255, 255, 255, 0.88);
}

.bespoke-card .journey-subtitle-card {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.journey-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
}

.journey-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.journey-features i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.journey-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    background-color: #4A9A92;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
}

.journey-card:hover .journey-link {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.journey-promise {
    text-align: center;
    margin-top: 50px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #23374d 0%, #4A9A92 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.journey-promise h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin: 0 0 15px 0;
    color: #ffffff;
    font-weight: 700;
}

.journey-promise p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #f4f1eb;
    margin: 0;
    font-weight: 500;
}

/* Responsive para la nueva sección */
@media (max-width: 920px) {
    .journey-container {
        grid-template-columns: 1fr;
        /* Una columna en móvil */
    }

    .journey-container::before {
        display: none;
        /* Ocultar línea divisoria */
    }

    .journey-card h4 {
        font-size: 2.2rem;
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .journey-buttons-container {
        flex-direction: column;
        gap: 20px;
    }

    .journey-btn {
        min-width: auto;
        max-width: none;
        padding: 25px 20px;
    }

    .journey-options-section {
        padding: 60px 20px;
    }

    .journey-options-section h2 {
        font-size: 2.2rem;
    }
}

/* === MODAL STYLES === */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7A72 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 50%;
}

.close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 40px 30px;
}

/* === HIGHLIGHTS MODAL === */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.highlight-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.modal-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7A72 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 154, 146, 0.4);
}

/* === CUSTOMIZE MODAL === */
.customize-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.customize-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 154, 146, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: 400 !important;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7A72 100%);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 154, 146, 0.4);
}

/* === MODAL RESPONSIVE === */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 25px 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* === MISSING CAROUSEL STYLES === */
.what-we-offer-carousel {
    grid-area: carousel;
    width: 100% !important;
    max-width: 500px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 20px auto !important;
    overflow: hidden !important;
    justify-self: center !important;
}

.what-we-offer-carousel.slick-initialized {
    display: block !important;
}

.what-we-offer-carousel .slick-track {
    display: flex !important;
}

.what-we-offer-carousel .slick-slide {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.what-we-offer-carousel .slick-slide img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    margin: 0 auto !important;
}

.what-we-offer-carousel .slick-dots {
    bottom: -25px !important;
    position: relative !important;
    text-align: center !important;
}

.what-we-offer-carousel .slick-dots li {
    display: inline-block !important;
    margin: 0 5px !important;
}

.what-we-offer-carousel .slick-dots li button:before {
    font-size: 10px !important;
    color: var(--primary-color) !important;
    opacity: 0.5 !important;
}

.what-we-offer-carousel .slick-dots li.slick-active button:before {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

/* Ensure carousel arrows are visible */
.what-we-offer-carousel .slick-arrow {
    display: block !important;
    z-index: 10 !important;
}

.what-we-offer-carousel .slick-prev {
    left: 10px !important;
}

.what-we-offer-carousel .slick-next {
    right: 10px !important;
}

/* === CONTACT MENU STYLES === */
.contact-menu {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1001;
}

.contact-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), #3a8a82);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(74, 154, 146, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.contact-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 154, 146, 0.5);
}

.contact-toggle i {
    font-size: 1.2rem;
}

.contact-text {
    font-family: 'Montserrat', sans-serif;
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-menu.active .contact-options {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
}

.contact-option:hover {
    background: #f8f9fa;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-option i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-option:nth-child(1) i {
    color: #e74c3c;
}

/* Email */
.contact-option:nth-child(2) i {
    color: #25d366;
}

/* WhatsApp */
.contact-option:nth-child(3) i {
    color: #3498db;
}

/* Phone */

/* === HOME BUTTON STYLES === */
.home-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4af37, #b8941e);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.home-button i {
    font-size: 1.2rem;
}

.home-text {
    font-family: 'Montserrat', sans-serif;
}

/* === BESPOKE JOURNEY BADGE STYLES === */
.bespoke-journey-badge {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #8b6a47, #6d5238);
    border: none;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: -4px 4px 20px rgba(139, 106, 71, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.bespoke-journey-badge:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -6px 6px 25px rgba(139, 106, 71, 0.5);
}

.bespoke-journey-badge i {
    font-size: 1.1rem;
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
}

/* === SIGNATURE JOURNEY BADGE STYLES === */
.signature-journey-badge {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #4A9A92, #3a7a72);
    border: none;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: -4px 4px 20px rgba(74, 154, 146, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.signature-journey-badge:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -6px 6px 25px rgba(74, 154, 146, 0.5);
}

.signature-journey-badge i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .bespoke-journey-badge,
    .signature-journey-badge {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .bespoke-journey-badge i,
    .signature-journey-badge i {
        font-size: 1rem;
    }
    
    .badge-text {
        max-width: 150px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bespoke-journey-badge,
    .signature-journey-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .badge-text {
        max-width: 120px;
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A9A92, #3a7a72);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 154, 146, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 154, 146, 0.4);
    background: linear-gradient(135deg, #5aaa9f, #4A9A92);
}

.back-to-top:active {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* === LANGUAGE TOGGLE BUTTON === */
#language-toggle {
    position: fixed;
    top: 80px;
    right: 25px;
    z-index: 999;
    background: linear-gradient(135deg, #8b6a47, #6d5436);
    border: 2px solid #8b6a47;
    border-radius: 25px;
    padding: 10px 18px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 106, 71, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#language-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 106, 71, 0.4);
    background: linear-gradient(135deg, #9b7a57, #8b6a47);
}

#language-toggle:active {
    transform: translateY(-1px);
}

#language-toggle span {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    #language-toggle {
        top: 80px;
        right: 20px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    #language-toggle span {
        font-size: 0.8rem;
    }
}

/* Mobile Contact Menu */
@media (max-width: 768px) {
    .contact-menu {
        bottom: 20px;
        right: 20px;
    }

    .contact-toggle {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .home-button {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .home-button i {
        font-size: 1.1rem;
    }

    .contact-toggle i {
        font-size: 1rem;
    }

    .contact-text {
        font-size: 0.85rem;
    }

    .contact-option {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* === JOURNEY OPTIONS SECTION === */
.journey-options-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7A72 100%);
    color: var(--light-text-color);
    padding: 80px 30px;
    text-align: center;
}

.journey-options-section h2 {
    color: var(--light-text-color);
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
}

.journey-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.journey-buttons-container {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.journey-btn {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 20px;
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.journey-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.journey-btn:hover::before {
    left: 100%;
}

.journey-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.btn-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-content {
    flex: 1;
}

.btn-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.btn-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.btn-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.journey-btn:hover .btn-arrow {
    transform: translateX(8px);
}

/* === CHATBOT QUICK BUTTONS === */
.quick-btn {
    display: inline-block;
    margin: 5px 5px 5px 0;
    padding: 6px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* === SLOGAN STYLES === */
.slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    margin: 20px 0;
    grid-row: 4;
}

/* === ENSURE NO SCROLL ON MOBILE MENU === */
.no-scroll {
    overflow: hidden;
}

/* ========================================
   INCLUSIONS SECTION STYLES
======================================== */
.inclusions-section {
    background-color: #f8f9fa;
}

.inclusions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.includes-column,
.not-includes-column {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.includes-column h3,
.not-includes-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.includes-column h3 i {
    color: #28a745;
    font-size: 1.5rem;
}

.not-includes-column h3 i {
    color: #dc3545;
    font-size: 1.5rem;
}

.includes-column ul,
.not-includes-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-column ul li,
.not-includes-column ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.includes-column ul li:last-child,
.not-includes-column ul li:last-child {
    border-bottom: none;
}

.includes-column ul li i {
    color: #4A9A92;
    font-size: 1.3rem;
    width: 24px;
}

.not-includes-column ul li i {
    color: #dc3545;
    font-size: 1.3rem;
    width: 24px;
}

@media (max-width: 768px) {
    .inclusions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
======================================== */
.testimonials-section {
    background-color: #ffffff;
    padding: 30px 40px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.testimonials-section h2 {
    grid-column: 1 / -1;
}

.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.testimonial-card {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    margin: 0;
}

/* ========================================
   CONTACT US SECTION STYLES
======================================== */
.contact-us-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7A72 100%);
    color: var(--light-text-color);
    text-align: center;
}

.contact-us-section h2 {
    color: var(--light-text-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-us-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.contact-button {
    display: inline-block;
    background-color: var(--warning-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   EVERYTHING'S TAKEN CARE OF - CIRCULAR DESIGN
======================================== */
.journey-timeline-section {
    background: linear-gradient(135deg, #E8F4F8 0%, #D4EAF1 100%);
    padding: 40px 20px;
    margin: 20px 0;
}

.everything-taken-care-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.etc-left-content {
    padding: 40px;
}

.etc-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #20b2aa 0%, #4A9A92 30%, #c9a876 70%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    font-style: italic;
    position: relative;
    display: inline-block;
    width: 100%;
}

.etc-title::after {
    content: '✦';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #c9a876;
    text-shadow: 0 2px 8px rgba(201, 168, 118, 0.4);
}

.etc-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 40px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Timeline Styles */
@media (max-width: 768px) {
    .journey-timeline {
        padding: 0 10px !important;
        overflow-x: auto;
        justify-content: flex-start !important;
    }

    .journey-timeline .timeline-item {
        margin-right: 30px !important;
        min-width: 60px;
    }

    .journey-timeline .timeline-item>div {
        width: 50px !important;
        height: 50px !important;
    }

    .journey-timeline .timeline-item i {
        font-size: 1.2rem !important;
    }

    .journey-timeline .timeline-item span {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }

    .journey-timeline>div:first-child {
        top: 25px !important;
        left: 35px !important;
    }

    .etc-title {
        font-size: 1.8rem;
    }

    .etc-subtitle {
        font-size: 0.95rem;
    }
}

.etc-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.etc-cta-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 35px;
    border: 2px solid #2C3E50;
    background: transparent;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.etc-cta-button:hover {
    background: #2C3E50;
    color: white;
}

.etc-circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.etc-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    max-width: 200px;
}

.etc-center-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2C3E50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.etc-center-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.etc-circle-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    transform-origin: 50% 50%;
    transform: rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    z-index: 10;
}

.etc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;

    /* OPCIÓN 1 - Verde Azulado Primario (ACTIVA) */
    border: 2px solid #4A9A92;
    background: white;

    /* OPCIÓN 2 - Dorado Elegante */
    /* border: 2px solid #c9a970;
    background: white; */

    /* OPCIÓN 3 - Azul Marino */
    /* border: 2px solid #23374d;
    background: white; */

    /* OPCIÓN 4 - Beige Cálido */
    /* border: 2px solid #8B7355;
    background: #EFEAE4; */

    /* OPCIÓN 5 - Verde Menta */
    /* border: 2px solid #2D9B8F;
    background: white; */

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.etc-icon i {
    font-size: 1.8rem;

    /* OPCIÓN 1 - Verde Azulado Primario (ACTIVA) */
    color: #4A9A92;

    /* OPCIÓN 2 - Dorado Elegante */
    /* color: #c9a970; */

    /* OPCIÓN 3 - Azul Marino */
    /* color: #23374d; */

    /* OPCIÓN 4 - Beige Cálido */
    /* color: #8B7355; */

    /* OPCIÓN 5 - Verde Menta */
    /* color: #2D9B8F; */
}

.etc-circle-item:hover .etc-icon {
    /* OPCIÓN 1 - Verde Azulado Primario (ACTIVA) */
    background: #4A9A92;

    /* OPCIÓN 2 - Dorado Elegante */
    /* background: #c9a970; */

    /* OPCIÓN 3 - Azul Marino */
    /* background: #23374d; */

    /* OPCIÓN 4 - Beige Cálido */
    /* background: #8B7355; */

    /* OPCIÓN 5 - Verde Menta */
    /* background: #2D9B8F; */

    transform: scale(1.1);
}

.etc-circle-item:hover .etc-icon i {
    color: white;
}

.etc-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #2C3E50;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    max-width: 90px;
    position: relative;
    z-index: 3;
    background: white;
    padding: 2px 4px;
    border-radius: 3px;
}

.etc-connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.etc-connecting-lines circle {
    /* OPCIÓN 1 - Verde Azulado Primario (ACTIVA) */
    stroke: #4A9A92;

    /* OPCIÓN 2 - Dorado Elegante */
    /* stroke: #c9a970; */

    /* OPCIÓN 3 - Azul Marino */
    /* stroke: #23374d; */

    /* OPCIÓN 4 - Beige Cálido */
    /* stroke: #D4C5B0; */

    /* OPCIÓN 5 - Verde Menta */
    /* stroke: #2D9B8F; */

    stroke-width: 2;
}

/* ========================================
   JOURNEY TIMELINE SECTION (OLD STYLES - KEEP FOR COMPATIBILITY)
======================================== */
.journey-timeline-section {
    grid-area: timeline;
    margin: 40px 0;
    padding: 50px 20px;
    background: transparent;
    text-align: center !important;
    width: 100%;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #c9a970;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center !important;
    padding-left: 0;
}

.timeline-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-align: center !important;
    padding-left: 0;
}

.timeline-toggle-btn {
    display: none;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 50px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #5B8A93;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 138, 147, 0.3);
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    max-width: 130px;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-line {
    flex: 1;
    height: 3px;
    background: #5B8A93;
    margin: 0 15px 0 15px;
    min-width: 80px;
    align-self: center;
    position: relative;
    top: -20px;
}

.timeline-tooltip {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    width: 220px;
    pointer-events: none;
}

.timeline-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.timeline-tooltip h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.timeline-tooltip p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(91, 138, 147, 0.5);
}

.timeline-item:hover .timeline-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

@media (max-width: 920px) {
    .journey-timeline {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
    }

    .journey-timeline.expanded {
        max-height: 2000px;
        opacity: 1;
        padding: 20px;
    }

    .timeline-toggle-btn {
        display: block;
        margin: 20px auto;
        padding: 15px 30px;
        background-color: #5B8A93;
        color: white;
        border: none;
        border-radius: 8px;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(91, 138, 147, 0.3);
    }

    .timeline-toggle-btn:hover {
        background-color: #4a7380;
        box-shadow: 0 6px 20px rgba(91, 138, 147, 0.5);
    }

    .timeline-toggle-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .timeline-toggle-btn.active i {
        transform: rotate(180deg);
    }

    .timeline-line {
        flex: 0;
        width: 3px;
        height: 60px;
        margin: 0;
        min-width: 0;
    }

    .timeline-tooltip {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        opacity: 0;
        visibility: hidden;
        margin-top: 15px;
        width: 250px;
    }

    .timeline-tooltip::after {
        display: none;
    }

    .timeline-item:hover .timeline-tooltip {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Hero responsive fixes */
    .hero-content {
        padding: 20px;
        gap: 10px;
    }

    .hero-main-title {
        font-size: clamp(4rem, 12vw, 7rem);
        transform: translateY(5px);
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        letter-spacing: 4px;
        transform: translateY(-10px) translateX(15px);
        margin-top: 0;
    }

    .hero-description {
        font-size: clamp(0.85rem, 2vw, 1.1rem);
        letter-spacing: 1.5px;
        transform: translateY(-5px) translateX(30px);
        margin-left: 40px;
        margin-top: 0;
        padding: 0 15px;
        max-width: 85vw;
    }

    .slogan {
        font-size: clamp(0.8rem, 1.8vw, 0.95rem);
        margin-top: 10px;
    }

    .cta-button {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 921px) {
    .timeline-toggle-btn {
        display: none;
    }
}

/* ========================================
   RESPONSIVE NAVBAR
======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        margin: 0;
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Everything's Taken Care Of - Mobile */
    .everything-taken-care-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .etc-left-content {
        display: none;
    }

    .etc-circle-container {
        width: 100%;
        max-width: 380px;
        height: 380px;
    }

    .etc-circle-item {
        width: 80px;
        height: 80px;
        margin-left: -40px;
        margin-top: -40px;
        transform: rotate(var(--angle)) translate(160px) rotate(calc(-1 * var(--angle)));
    }

    .etc-icon {
        width: 55px;
        height: 55px;
    }

    .etc-icon i {
        font-size: 1.4rem;
    }

    .etc-label {
        font-size: 0.7rem;
        max-width: 70px;
    }

    .etc-center-text h3 {
        font-size: 1.3rem;
    }

    .etc-center-text p {
        font-size: 0.8rem;
    }

    .etc-connecting-lines {
        width: 100%;
        height: 100%;
    }
}

/* ================================================
   SIGNATURE & BESPOKE JOURNEY PAGES STYLES
================================================ */

/* Hero Section for Journey Pages */
.day-hero {
    position: relative;
    height: 60vh;
    max-height: 500px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.day-hero .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    z-index: 0;
}

.day-hero-copy {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--hero-text-color-beige);
    padding: 0 20px;
    max-width: 800px;
}

.day-hero-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.journey-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Journey Detail Section */
.journey-detail-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.journey-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.journey-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.journey-tagline {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 300;
}

.journey-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Highlights Box */
.journey-highlights-box {
    background: linear-gradient(135deg, #4A9A92 0%, #3d8179 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(74, 154, 146, 0.3);
}

.journey-highlights-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.journey-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 1.8rem;
    color: #ffd700;
    min-width: 30px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
}

.feature-text strong {
    font-weight: 600;
}

.feature-text em {
    font-style: italic;
}

/* Itinerary Preview */
.journey-itinerary-preview {
    margin: 60px 0;
}

.journey-itinerary-preview h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

.itinerary-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.itinerary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.itinerary-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 3px solid var(--primary-color);
}

.itinerary-content h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.itinerary-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Journey CTA Section */
.journey-cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(to right, #f3f7f6 0%, #ffffff 100%);
    border-radius: 15px;
}

.journey-closing-text {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.journey-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #3d8179;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 154, 146, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Journey Pages */
@media (max-width: 768px) {
    .day-hero-copy h1 {
        font-size: 2.5rem;
    }

    .journey-hero-subtitle {
        font-size: 1.1rem;
    }

    .journey-intro-text h2 {
        font-size: 2rem;
    }

    .journey-tagline {
        font-size: 1.1rem;
    }

    .journey-highlights-box {
        padding: 35px 25px;
    }

    .journey-highlights-box h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .journey-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-item i {
        font-size: 1.5rem;
        min-width: 25px;
    }

    .feature-text {
        font-size: 1rem;
    }

    .itinerary-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .itinerary-day {
        border-right: none;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 15px;
        font-size: 1.3rem;
    }

    .journey-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}




/* ================================================
   NEW SIGNATURE JOURNEY PAGE STYLES
================================================ */

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(35, 55, 77, 0.86);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.4px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    align-self: flex-start;
    box-shadow: 0 12px 22px rgba(23, 41, 58, 0.18);
    margin-bottom: 24px;
}

.back-home-link:hover {
    transform: translateY(-2px);
    background: rgba(35, 55, 77, 0.95);
    box-shadow: 0 16px 28px rgba(23, 41, 58, 0.25);
}

.back-home-link i {
    font-size: 0.85rem;
}


/* Signature Hero - Two Column Layout */
.signature-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    background: #e8f4f8;
    position: relative;
    overflow: hidden;
}

.signature-hero-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.signature-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

.signature-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 60px 90px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3f7 100%);
    color: #2d2d2d;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.signature-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #2d2d2d;
}

.signature-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #20b2aa;
}

.signature-description {
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #5a5a5a;
}

.signature-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.signature-tagline {
    font-size: 1.1rem;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Container */
.signature-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Why Signature Journey Section */
.signature-why-section {
    padding: 40px 20px;
    background: #ffffff;
    overflow-x: visible;
    position: relative;
}

#signature-why {
    scroll-margin-top: 110px;
}

.signature-why-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

/* Large screen improvements */
@media (min-width: 1200px) {
    .signature-why-wrapper {
        grid-template-columns: 1fr 550px;
        gap: 80px;
        max-width: 1600px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .signature-why-wrapper {
        grid-template-columns: 1fr 450px;
        gap: 50px;
    }
}

.signature-why-content {
    padding-right: 0;
}

.signature-why-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: left;
    color: #3a3a3a;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 768px) {
    .signature-why-section h2 {
        font-size: 1.8rem;
    }
}

.signature-opening {
    font-size: 1.2rem;
    text-align: left;
    color: #5a5a5a;
    margin-bottom: 25px;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
}

.signature-why-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
    text-align: left;
}

/* Carousel Styles */
.signature-why-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #3a3a3a;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 4px;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

.signature-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px auto;
    max-width: 850px;
}

.signature-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.signature-feature i {
    font-size: 1.8rem;
    color: #c9a876;
    min-width: 30px;
}

.signature-feature p {
    margin: 0;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

/* Stamp Overlay - Full Width Banner */
.signature-stamp-overlay {
    position: relative;
    width: 100%;
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.signature-why-section .signature-cta-buttons {
    position: static;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.stamp-content {
    background: linear-gradient(90deg, #2c5f6f 0%, #4A9A92 50%, #5fb4a8 100%);
    color: white;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stamp-content::before,
.stamp-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: #c9a876;
}

.stamp-content::before {
    left: 50px;
    transform: translateY(-50%);
}

.stamp-content::after {
    right: 50px;
    transform: translateY(-50%);
}

.stamp-content p {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.4;
    color: white;
}

.signature-cta-buttons--stamp {
    width: 100%;
    justify-content: center;
}

@media (max-width: 968px) {
    .signature-stamp-overlay {
        position: static;
        bottom: auto;
        width: 100%;
        padding: 0 20px;
        margin: 60px auto 0;
    }

    .stamp-content {
        padding: 35px 20px;
        max-width: 640px;
        margin: 0 auto;
        border-radius: 14px;
    }

    .stamp-content::before,
    .stamp-content::after {
        width: 40px;
    }

    .stamp-content::before {
        left: 20px;
    }

    .stamp-content::after {
        right: 20px;
    }

    .stamp-content p {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    /* Better carousel positioning on tablets */
    .signature-why-carousel {
        margin-top: 30px;
        height: 420px;
    }
}

@media (max-width: 600px) {
    .signature-stamp-overlay {
        padding: 0 15px;
        margin: 30px auto 0;
    }

    .stamp-content {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .stamp-content::before,
    .stamp-content::after {
        width: 30px;
    }

    .stamp-content::before {
        left: 10px;
    }

    .stamp-content::after {
        right: 10px;
    }

    .stamp-content p {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
}

/* CTA Buttons */
.signature-cta-buttons,
.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary-large,
.btn-primary-xl,
.btn-secondary-large,
.btn-secondary-xl {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary-large,
.btn-primary-xl {
    background: linear-gradient(135deg, #20b2aa 0%, #48d1cc 100%);
    color: white;
}

.btn-primary-large:hover,
.btn-primary-xl:hover {
    background: linear-gradient(135deg, #1a9d96 0%, #3cbec2 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(32, 178, 170, 0.4);
}

.btn-secondary-large,
.btn-secondary-xl {
    background: white;
    color: #20b2aa;
    border: 2px solid #20b2aa;
}

.btn-secondary-large:hover,
.btn-secondary-xl:hover {
    background: #20b2aa;
    color: white;
    transform: translateY(-2px);
}

.btn-primary-xl {
    padding: 18px 55px;
    font-size: 1.2rem;
}

.btn-secondary-xl {
    padding: 16px 50px;
    font-size: 1.15rem;
}

/* About Section */
.signature-about-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5fbff 0%, #e8f4f8 100%);
}

.signature-about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.signature-about-content {
    padding-left: 40px;
}

.signature-about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #3a3a3a;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .signature-about-section h2 {
        font-size: 1.3rem;
        white-space: normal;
    }

    .signature-about-section h2 i {
        font-size: 1.2rem;
    }
}

.signature-about-section h2 i {
    color: #20b2aa;
    margin-right: 10px;
    font-size: 2rem;
}

.signature-about-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #4a4a4a;
    text-align: left;
}

.signature-about-section h3 {
    font-size: 1.4rem;
    margin: 35px 0 20px;
    color: #3a3a3a;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.signature-about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.journey-perfect-for {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    max-width: 600px;
}

.journey-perfect-for li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.journey-perfect-for i {
    color: #20b2aa;
    font-size: 1.4rem;
}

/* Signature Visual Column - Contains both images on the right */
.signature-why-visual-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

/* Signature Placeholder Image */
.signature-placeholder-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-top: 80px; /* Align with the "This journey is perfect for travelers" section */
}

.signature-placeholder-image img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
}

/* Hide placeholder image on tablets and mobile to reduce clutter */
@media (max-width: 920px) {
    .signature-placeholder-image {
        display: none;
    }
}

/* New Signature What's Included Section - Full Width */
.signature-whats-included-full {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    position: relative;
}

.signature-included-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.signature-whats-included-full h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.included-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.signature-inclusions-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 60px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x proximity;
}

.signature-inclusion-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 220px;
    max-width: 220px;
    min-height: 180px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.signature-inclusion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(201, 168, 118, 0.3);
}

.signature-inclusion-card i {
    font-size: 2.5rem;
    color: #20b2aa;
    margin-bottom: 15px;
}

.signature-inclusion-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2d2d2d;
    margin-bottom: 12px;
    font-weight: 600;
}

.signature-inclusion-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin: 0;
}

.signature-not-included {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #e0dcd5;
}

.signature-not-included h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.signature-not-included-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.signature-not-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 10px;
    min-width: 180px;
}

.signature-not-item i {
    font-size: 2.5rem;
    color: #999;
}

.signature-not-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Old Included Section - Keep for backward compatibility */
.signature-included-section {
    padding: 90px 20px;
    background: #faf8f5;
}

.signature-included-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #3a3a3a;
    text-align: center;
    margin-bottom: 55px;
    font-weight: 400;
    font-style: italic;
}

.signature-included-section h2 i {
    color: #c9a876;
    margin-right: 10px;
}

.included-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 45px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.included-category {
    background: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.included-category h3 {
    font-size: 1.35rem;
    color: #3a3a3a;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.included-category h3 i {
    font-size: 1.4rem;
    color: #c9a876;
}

.included-category ul {
    list-style: none;
    padding: 0;
}

.included-category li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    color: #5a5a5a;
    font-size: 0.98rem;
}

.included-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c9a876;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Departures Section */
.signature-departures-section {
    padding: 40px 20px;
    background: #4A9A92;
    background-size: cover;
    background-position: center;
}

.signature-departures-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.signature-departures-section h2 i {
    color: #ffffff;
    margin-right: 10px;
}

.departures-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
}

.departures-carousel-wrapper {
    margin-top: 40px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #4A9A92 #e0e0e0;
    width: 100%;
    max-width: 100%;
}

.departures-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.departures-carousel-wrapper::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.departures-carousel-wrapper::-webkit-scrollbar-thumb {
    background: #4A9A92;
    border-radius: 10px;
}

.departures-carousel {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    min-width: min-content;
    justify-content: center;
}

.departures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1150px;
    margin: 0 auto;
}

.departure-card {
    background: #ffffff;
    border: 2px solid rgba(201, 168, 118, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 220px;
    height: auto;
    min-height: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.departure-cta {
    display: inline-block;
    background: #4A9A92;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-align: center;
    width: 100%;
}

.departure-cta:hover {
    background: #2c5f6f;
    transform: scale(1.05);
}

.departure-cta.disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.departure-cta.disabled:hover {
    background: #999;
    transform: none;
}

.departure-card.featured {
    border-color: #c9a876;
    box-shadow: 0 4px 20px rgba(201, 168, 118, 0.15);
    background: #ffffff;
}

.departure-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.departure-header {
    width: 100%;
    text-align: center;
}

.departure-header h3 {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.departure-header h3 .dates-range {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .signature-departures-section {
        padding: 15px 10px;
    }

    .signature-departures-section h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .departures-intro {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .departures-carousel-wrapper {
        overflow-x: visible;
        padding: 0;
    }

    .departures-carousel {
        gap: 8px;
        padding: 0;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .departure-card {
        padding: 12px 8px;
        min-width: 0;
        max-width: none;
        width: calc(33.333% - 6px);
        flex: 1 1 calc(33.333% - 6px);
        height: auto;
        min-height: 140px;
        gap: 6px;
        justify-content: space-between;
        aspect-ratio: 0.85;
    }

    .departure-header h3 {
        font-size: 0.75rem;
        margin-bottom: 3px;
        line-height: 1.1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .departure-header h3 .dates-range {
        font-size: 0.65rem;
        margin-top: 1px;
    }

    .availability {
        padding: 3px 6px;
        font-size: 0.55rem;
        border-radius: 8px;
        white-space: nowrap;
        line-height: 1.2;
        text-align: center;
    }

    .departure-cta {
        padding: 6px 8px;
        font-size: 0.65rem;
        margin-top: 4px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .departure-card {
        padding: 8px;
        min-height: 120px;
    }

    .departure-header h3 {
        font-size: 0.7rem;
    }

    .departure-header h3 .dates-range {
        font-size: 0.6rem;
    }

    .availability {
        font-size: 0.5rem;
        padding: 2px 5px;
    }

    .departure-cta {
        font-size: 0.6rem;
        padding: 5px 6px;
    }
}

.availability {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 0.3px;
}

.availability.filling-fast {
    background: #ff9800;
    color: #000000;
    font-weight: 500;
}

.availability.high-availability {
    background: #00c853;
    color: #000000;
    font-weight: 500;
}

.availability.almost-full {
    background: #f44336;
    color: #ffffff;
    font-weight: 500;
}

.departure-ideal {
    margin: 22px 0;
    line-height: 1.7;
    color: #5a5a5a;
    font-size: 0.98rem;
}

.btn-departure {
    display: inline-block;
    width: fit-content;
    padding: 10px 20px;
    background: #c9a876;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-departure:hover {
    background: #b89560;
    transform: translateY(-2px);
}

/* Why Choose Section */
/* Full Width Stamp Section */
.signature-stamp-section {
    padding: 0;
    background: linear-gradient(135deg, #4A9A92 0%, #2c5f6f 50%, #4A9A92 100%);
    position: relative;
    overflow: hidden;
}

.signature-stamp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
    animation: stampMove 20s linear infinite;
}

@keyframes stampMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.stamp-container {
    max-width: 100%;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.stamp-text {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    line-height: 1.4;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.signature-why-choose-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9fc 50%, #e8f4f8 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.signature-why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(32, 178, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(201, 168, 118, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.signature-why-choose-section .signature-container {
    max-width: 1500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.signature-why-choose-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #20b2aa 0%, #4A9A92 50%, #2c5f6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 55px;
    font-weight: 600;
    font-style: italic;
    position: relative;
}

.signature-why-choose-section h2::before,
.signature-why-choose-section h2::after {
    content: '❖';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #c9a876;
}

.signature-why-choose-section h2::before {
    left: -40px;
}

.signature-why-choose-section h2::after {
    right: -40px;
}

.why-choose-grid {
    display: flex !important;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    width: 100%;
    flex-wrap: nowrap !important;
}

/* Large screen improvements for why-choose */
@media (min-width: 1200px) {
    .why-choose-grid {
        gap: 35px;
        max-width: 1600px;
    }
    
    .why-choose-item {
        padding: 45px 38px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .why-choose-grid {
        gap: 20px;
    }
}

.why-choose-item {
    background: linear-gradient(135deg, #e8f9f8 0%, #f0fcfb 50%, #fefcf8 100%);
    padding: 38px 32px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(32, 178, 170, 0.18);
    border: 3px solid #20b2aa;
    border-top: 5px solid #d4af37;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    box-sizing: border-box;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.15), transparent);
    transition: left 0.6s ease;
}

.why-choose-item:hover::before {
    left: 100%;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(32, 178, 170, 0.3);
    border-color: #20b2aa;
    border-top-color: #d4af37;
}

.why-choose-item.full-width {
    grid-column: 1 / -1;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    color: #2c5f6f;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.why-choose-item h3 i {
    color: #c9a876;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.why-choose-item:hover h3 i {
    transform: scale(1.2) rotate(10deg);
}

.why-choose-item p {
    line-height: 1.8;
    margin: 0;
    color: #5a5a5a;
    font-size: 1rem;
}

.places-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
    justify-content: center;
}

.places-list span {
    background: #c9a876;
    color: white;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.places-note {
    font-size: 0.93rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 18px;
    text-align: center;
}

/* Pricing Section */
.signature-pricing-section {
    padding: 90px 20px;
    background: #ffffff;
}

.signature-pricing-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 55px;
    font-weight: 400;
    font-style: italic;
}

.signature-pricing-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-left {
    background: linear-gradient(135deg, #d4b896 0%, #c9a876 100%);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.pricing-left h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pricing-note {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.pricing-right {
    background: #faf8f5;
    padding: 50px 40px;
    border-radius: 8px;
}

.pricing-right h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-includes li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.pricing-includes i {
    color: #c9a876;
    font-size: 1.2rem;
}

.pricing-flights-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 25px;
}

.pricing-cta-wrapper {
    margin-top: 30px;
}

.btn-pricing-cta {
    display: inline-block;
    padding: 14px 30px;
    background: #c9a876;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-pricing-cta:hover {
    background: #b89560;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
}

/* Discovery Section */
.signature-discovery-section {
    padding: 80px 20px;
    background: #fafafa;
    text-align: center;
}

.signature-discovery-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.signature-discovery-section p {
    font-size: 1.08rem;
    margin-bottom: 35px;
    color: #5a5a5a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Final CTA Section */
.signature-final-cta {
    padding: 80px 20px;
    background: linear-gradient(90deg, #2c5f6f 0%, #4A9A92 50%, #5fb4a8 100%);
    color: white;
    text-align: center;
}

.signature-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 400;
    font-style: italic;
}

.signature-final-cta .final-cta-buttons {
    margin-bottom: 60px;
}

.signature-final-cta .signature-banner-text,
h2.signature-banner-text {
    font-family: 'Cinzel', serif !important;
    font-size: 2.5rem !important;
    line-height: 1.4 !important;
    margin: 0 auto !important;
    color: white !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    max-width: 100% !important;
    padding: 40px 20px !important;
    text-align: center !important;
}

@media (max-width: 768px) {

    .signature-final-cta .signature-banner-text,
    h2.signature-banner-text {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }
}

.signature-final-cta p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    font-weight: 300;
}

.final-cta-poetic {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    font-style: italic;
}

.final-cta-tagline {
    font-size: 1.15rem !important;
    margin-bottom: 40px !important;
    font-family: 'Playfair Display', serif !important;
}

.final-cta-tagline strong {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.final-cta-tagline em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

/* Signature Experiences Section with Images */
.signature-experiences-section {
    padding: 90px 20px;
    background: #f5f1eb;
}

.signature-experiences-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.experiences-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signature-experiences-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.experience-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.experience-card-content {
    padding: 12px;
}

.experience-card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    text-align: center;
}

.experience-card-content h3 i {
    color: #c9a876;
    margin-right: 8px;
    font-size: 1.2rem;
}

.experience-card-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
    text-align: center;
}

/* What to Expect Section - Full Width */
.includes-column-full {
    max-width: 1000px;
    margin: 0 auto;
}

.includes-column-full h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 30px;
}

.whats-included-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.whats-included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    padding: 10px 0;
}

.whats-included-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    min-width: 20px;
}

.inclusions-footer {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 40px;
    font-style: italic;
    color: #666;
}

/* Responsive Design */
/* Medium screens (laptops) */
@media (max-width: 1366px) and (min-width: 969px) {
    .signature-hero {
        min-height: 560px;
    }

    .signature-hero-content {
        padding: 80px 45px 80px;
    }

    .signature-hero-content h1 {
        font-size: 3.2rem;
    }

    .signature-subtitle {
        font-size: 1.4rem;
    }

    .signature-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }
}

@media (max-width: 968px) {
    .signature-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
    }

    .signature-hero-image {
        height: 45vh;
        min-height: 350px;
        max-height: 450px;
        order: -1;
    }

    .signature-hero-content {
        padding: 90px 30px 50px;
    }

    .signature-hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .signature-subtitle {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .signature-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .signature-hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .signature-hero-cta a {
        flex: 1;
        max-width: 200px;
        text-align: center;
    }

    .signature-why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .signature-why-content {
        padding-right: 0;
        max-width: 900px;
        margin: 0 auto;
    }

    .signature-why-carousel {
        max-width: 600px;
        height: 480px;
        margin: 0 auto;
    }
    
    .signature-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
    }

    .signature-features-grid {
        grid-template-columns: 1fr;
    }

    .signature-experiences-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .signature-pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .signature-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signature-about-content {
        padding-left: 20px;
    }

    .signature-about-image img {
        height: 400px;
    }

    .signature-about-section .signature-container {
        margin-left: 20px;
    }

    .signature-inclusions-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
    }

    .signature-inclusion-card {
        min-width: 200px;
        max-width: 200px;
        min-height: 170px;
        padding: 25px 18px;
    }

    .journey-perfect-for {
        grid-template-columns: 1fr;
    }

    .included-categories {
        grid-template-columns: 1fr;
    }

    .departures-grid {
        grid-template-columns: 1fr;
    }

    .whats-included-list {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .why-choose-item {
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .signature-why-choose-section h2::before,
    .signature-why-choose-section h2::after {
        display: none;
    }

    .signature-why-choose-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .why-choose-item {
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .signature-why-choose-section h2::before,
    .signature-why-choose-section h2::after {
        display: none;
    }

    .signature-why-choose-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .signature-hero-image {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }

    .signature-hero-content {
        padding: 35px 25px;
    }

    .signature-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .signature-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .signature-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .signature-hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .signature-hero-cta a {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .signature-hero-image {
        height: 35vh;
        min-height: 280px;
        max-height: 350px;
    }

    .signature-hero-content {
        padding: 30px 20px;
    }

    .signature-hero-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .signature-subtitle {
        font-size: 1.1rem;
    }

    .signature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .signature-experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .signature-inclusions-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
    }

    .signature-inclusion-card {
        min-width: 180px;
        max-width: 180px;
        min-height: 150px;
        padding: 20px 12px;
    }

    .signature-inclusion-card i {
        font-size: 2rem;
    }

    .signature-inclusion-card h3 {
        font-size: 1.05rem;
    }

    .signature-inclusion-card p {
        font-size: 0.85rem;
    }

    .signature-whats-included-full h2 {
        font-size: 2.2rem;
    }

    .signature-not-included-items {
        flex-direction: column;
        gap: 20px;
    }
}



/* What's Included List Inline for What We Offer */
.whats-included-list-inline {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.whats-included-list-inline li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.whats-included-list-inline i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 3px;
}

.inclusions-footer-inline {
    font-style: italic;
    color: #666;
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}


/* Two-column layout for What's Included section */
.inclusions-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.included-column,
.not-included-column {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    align-self: start;
}

.whats-not-included-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 10px 0;
    text-align: left;
}

.whats-not-included-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.whats-not-included-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-color);
    margin-left: 40px;
    /* Ajusta este valor a tu gusto */
}

.whats-not-included-list i {
    color: #e74c3c;
    font-size: 1.2rem;
    min-width: 20px;
}

@media (max-width: 768px) {
    .inclusions-two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 2x2 Grid for What's Included */
.whats-included-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.whats-included-grid-2x2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

.whats-included-grid-2x2 i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 18px;
    margin-top: 3px;
}

@media (max-width: 968px) {
    .whats-included-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* What's Included Full Section - 2x5 Grid Desktop */
.inclusions-full-section {
    width: 100%;
    background: #f9f9f9;
    position: relative;
}

.inclusions-full-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    bottom: 0;
    background: #f9f9f9;
    z-index: -1;
}

@media (300px <=width < 768px) {
    .inclusions-full-section {
        padding: 15px 0;
    }
}

@media (769px <=width) {
    .inclusions-full-section {
        padding: 15px 0;
    }
}

.whats-included-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.whats-not-included-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #666;
    text-align: center;
    margin-top: -60px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.whats-not-included-main-title {
    margin-top: 60px;
    /* separa el bloque de NOT INCLUDED de las tarjetas */
    margin-bottom: 30px;
}

/* 2x5 Grid for Desktop */
.inclusions-grid-2x5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 88px;
    margin-bottom: 40px;
    max-width: 1438px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.inclusions-grid-4x3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 35px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.inclusion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    height: auto;
    min-height: 140px;
    flex-shrink: 0;
}

.inclusion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.inclusion-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.inclusion-item p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
}

/* Not Included List - Horizontal */
.not-inclusions-list {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 0;
    margin-top: -160px;
    max-width: 1438px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0;
    position: relative;
}

.not-inclusion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 40px 12px 20px 12px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.not-inclusion-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 8px;
}

.not-inclusion-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.inclusions-footer {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 30px;
}

/* Glimpse Title Styling */
.glimpse-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin: 60px 0 40px 0;
    line-height: 1.4;
}

/* Responsive - Mobile 3x3 Grid + Vertical Not Included */
@media (max-width: 968px) {

    .inclusions-grid-2x5,
    .inclusions-grid-4x3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .inclusion-item i {
        font-size: 2.5rem;
    }

    .inclusion-item p {
        font-size: 0.85rem;
    }

    .whats-included-main-title,
    .whats-not-included-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .not-inclusions-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }



    .glimpse-title {
        font-size: 1.5rem;
        margin: 40px 20px 30px 20px;
    }
}

@media (max-width: 768px) {

    .inclusions-grid-2x5,
    .inclusions-grid-4x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
        max-width: 100%;
    }

    .inclusion-item {
        padding: 15px 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-height: 110px;
        height: auto;
    }

    .inclusion-item i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .inclusion-item p {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .whats-included-main-title,
    .whats-not-included-main-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }


    .not-inclusion-item {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* Center the entire What's Included section */
.why-us-text-block .inclusions-full-section {
    margin-left: auto;
    margin-right: auto;
}

/* Fix A Glimpse Section Styling */
.what-we-offer-list {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 60px auto;
    padding: 0 40px;
    text-align: center;
}

.glimpse-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.4;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    text-align: left;
}

.offer-list li {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .what-we-offer-list {
        padding: 0 20px;
        margin: 60px auto 40px auto;
    }

    .glimpse-title {
        font-size: 1.6rem;
    }

    .offer-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .offer-list li {
        font-size: 1rem;
    }
}

/* Glimpse Section 2-Column Layout */
.glimpse-section-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
}

.glimpse-section-wrapper .what-we-offer-list {
    flex: 1;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.glimpse-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin: 80px auto 40px auto;
    max-width: 1400px;
    padding: 0 40px;
}

.glimpse-section-wrapper .offer-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    text-align: left;
}

.glimpse-section-wrapper .what-we-offer-carousel {
    flex: 0 0 500px;
    width: 500px;
    max-width: 500px;
    margin: 0;
}

.glimpse-section-wrapper .what-we-offer-carousel img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 968px) {
    .glimpse-section-wrapper {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .glimpse-section-wrapper .glimpse-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .glimpse-section-wrapper .what-we-offer-list {
        text-align: center;
    }

    .glimpse-section-wrapper .offer-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .glimpse-section-wrapper .what-we-offer-carousel {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel.slick-initialized {
        display: block !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-list {
        width: 100% !important;
        overflow: hidden !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-track {
        display: flex !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-slide {
        display: block !important;
        width: 100% !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-slide img,
    .glimpse-section-wrapper .what-we-offer-carousel img {
        display: block !important;
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Fix for carousel only showing 20% on mobile */
    .glimpse-section-wrapper .what-we-offer-carousel .slick-list,
    .what-we-offer-carousel .slick-list {
        width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-track,
    .what-we-offer-carousel .slick-track {
        width: 100% !important;
        display: flex !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-slide,
    .what-we-offer-carousel .slick-slide {
        width: 100% !important;
        float: none !important;
    }

    .glimpse-section-wrapper .what-we-offer-carousel .slick-slide>div,
    .what-we-offer-carousel .slick-slide>div {
        width: 100% !important;
        display: block !important;
    }
}


/* ========================================
   BESPOKE JOURNEY STYLES
   ======================================== */

/* Bespoke Hero - dark overlay to mirror journey-card aesthetic */
.bespoke-hero {
    position: relative;
    min-height: 620px;
    padding: 110px 6vw 110px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    color: var(--card-text-light);
    background-color: #23374d;
}

.bespoke-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(12, 26, 39, 0.75) 0%, rgba(35, 55, 77, 0.65) 50%, rgba(35, 55, 77, 0.55) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.bespoke-hero:hover::after {
    background: linear-gradient(108deg, rgba(12, 26, 39, 0.65) 0%, rgba(35, 55, 77, 0.55) 50%, rgba(35, 55, 77, 0.45) 100%);
}

.bespoke-hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bespoke-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: brightness(1.0) saturate(1.1);
    transition: filter 0.4s ease;
}

.bespoke-hero:hover .bespoke-hero-image img {
    filter: brightness(1.1) saturate(1.15);
}

.bespoke-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--card-text-light);
    text-shadow: 0 10px 32px rgba(18, 32, 44, 0.32);
}

.bespoke-hero-content::before {
    content: '';
    position: absolute;
    inset: -60px -80px -40px;
    background: radial-gradient(circle at 15% 20%, rgba(201, 168, 112, 0.18), transparent 70%);
    z-index: -1;
}

.bespoke-hero-content>* {
    position: relative;
    z-index: 1;
}

.bespoke-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 2px;
    line-height: 1.05;
    color: var(--card-text-light);
}

.bespoke-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: rgba(201, 168, 112, 0.88);
    margin: 0 0 12px 0;
}

.bespoke-description {
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.96);
    max-width: 560px;
}

.bespoke-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bespoke-hero .back-home-link {
    background: rgba(255, 255, 255, 0.26);
    color: var(--card-text-light);
    box-shadow: 0 14px 26px rgba(10, 22, 34, 0.24);
}

.bespoke-hero .back-home-link:hover {
    background: rgba(255, 255, 255, 0.36);
}

/* Bespoke Intro Section */
.bespoke-intro-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ede8df 100%);
    position: relative;
}

#bespoke-inspired {
    scroll-margin-top: 110px;
}

.bespoke-intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(201, 168, 118, 0.3) 50%, transparent 100%);
}

.bespoke-intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 35px;
    font-weight: 400;
    font-style: italic;
    position: relative;
}

.bespoke-intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4b896, #c9a876, #b89560);
}

.bespoke-opening {
    font-size: 1.3rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 35px;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
}

.bespoke-intro-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #4a4a4a;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.bespoke-intro-section p:first-of-type {
    font-size: 1.2rem;
    color: #3a3a3a;
}

.bespoke-intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.bespoke-intro-text {
    flex: 1 1 55%;
    text-align: left;
}

.bespoke-intro-text h2,
.bespoke-intro-text p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.bespoke-intro-image {
    flex: 1 1 45%;
    max-width: 520px;
    position: relative;
}

.bespoke-intro-image::before {
    content: '';
    position: absolute;
    inset: -20px -25px -30px -25px;
    background: radial-gradient(circle at 30% 20%, rgba(201, 168, 118, 0.2), transparent 65%);
    z-index: 0;
    border-radius: 22px;
}

.bespoke-intro-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
    object-fit: cover;
    min-height: 320px;
}

@media (max-width: 968px) {
    .bespoke-intro-wrapper {
        flex-direction: column-reverse;
        gap: 35px;
        text-align: center;
    }

    .bespoke-intro-text {
        text-align: center;
    }

    .bespoke-intro-text h2,
    .bespoke-intro-text p {
        text-align: center;
    }

    .bespoke-intro-image {
        max-width: 100%;
    }
}

/* How It Works Section */
.bespoke-how-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    position: relative;
}

.bespoke-how-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(201, 168, 118, 0.3) 50%, transparent 100%);
}

.bespoke-how-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 60px;
    font-weight: 400;
    font-style: italic;
}

.bespoke-how-section h2 i {
    color: #c9a876;
    margin-right: 10px;
    font-size: 2.5rem;
    vertical-align: middle;
}

.bespoke-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 45px 40px;
    background: linear-gradient(135deg, rgba(255, 247, 234, 0.95) 0%, rgba(244, 232, 212, 0.95) 100%);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(201, 168, 118, 0.18);
    border: 1px solid rgba(201, 168, 118, 0.18);
    box-sizing: border-box;
}

.bespoke-steps::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px dashed rgba(201, 168, 118, 0.25);
    pointer-events: none;
}


.bespoke-step {
    text-align: center;
    padding: 38px 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 235, 216, 0.96) 100%);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 118, 0.18);
    overflow: hidden;
}

.bespoke-step::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 168, 118, 0.38) 0%, rgba(201, 168, 118, 0) 70%);
    z-index: 0;
}

.bespoke-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4b896 0%, #c9a876 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.bespoke-step h3 {
    position: relative;
    z-index: 1;
    color: #3a2d1f;
}

.bespoke-step p {
    position: relative;
    z-index: 1;
    color: #574a3d;
}

.bespoke-step .step-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c9a876 0%, #dcbc8d 100%);
    color: #2f271b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bespoke-step .step-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 168, 118, 0.35);
}

@media (max-width: 968px) {
    .bespoke-steps {
        grid-template-columns: repeat(2, 1fr);
        padding: 35px 30px;
        gap: 24px;
    }

    .bespoke-step {
        padding: 32px 24px;
    }

    .bespoke-steps::before {
        inset: 16px;
    }
}

@media (max-width: 640px) {
    .bespoke-steps {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .bespoke-step::before {
        width: 90px;
        height: 90px;
    }

    .bespoke-steps::before {
        inset: 12px;
    }
}

.bespoke-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.bespoke-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

/* What's Possible Section */
.bespoke-possible-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f5f1eb 0%, #ede8df 100%);
    position: relative;
}

.bespoke-possible-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #c9a876 50%, transparent 100%);
}

.bespoke-possible-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.bespoke-possible-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.bespoke-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.bespoke-possible-section .bespoke-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 118, 0.1);
    position: relative;
}

.bespoke-possible-section .bespoke-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #d4b896, #c9a876, #b89560);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bespoke-possible-section .bespoke-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(201, 168, 118, 0.25);
}

.bespoke-possible-section .bespoke-card:hover::before {
    opacity: 1;
}

.bespoke-possible-section .bespoke-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.bespoke-possible-section .bespoke-card-content {
    padding: 25px;
}

.bespoke-possible-section .bespoke-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.bespoke-possible-section .bespoke-card-content h3 i {
    color: #c9a876;
    margin-right: 8px;
    font-size: 1.2rem;
}

.bespoke-possible-section .bespoke-card-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

/* Who Is This For Section */
.bespoke-for-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    position: relative;
}

.bespoke-for-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(201, 168, 118, 0.3) 50%, transparent 100%);
}

.bespoke-for-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 55px;
    font-weight: 400;
    font-style: italic;
}

.bespoke-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.bespoke-for-item {
    text-align: center;
    padding: 45px 35px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3ef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 118, 0.1);
}

.bespoke-for-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bespoke-for-item i {
    font-size: 3rem;
    color: #c9a876;
    transition: transform 0.3s ease;
}

.bespoke-for-item:hover i {
    transform: scale(1.1);
}

.bespoke-for-item h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #23374d;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.bespoke-for-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.bespoke-for-intro {
    max-width: 780px;
    margin: 0 auto 45px auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.bespoke-for-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201, 168, 118, 0.18);
    color: #b88d58;
    font-size: 0.75rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 700;
}

.bespoke-for-highlights {
    list-style: none;
    margin: 6px 0 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    width: 100%;
}

.bespoke-for-highlights li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3a3a3a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bespoke-for-highlights li::before {
    content: '\2022';
    color: #4A9A92;
    font-size: 0.9rem;
    display: inline-block;
    width: 8px;
}

/* Sample Itinerary Section */
.bespoke-sample-section {
    padding: 90px 20px;
    background: #f5f1eb;
}

.bespoke-sample-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.bespoke-sample-section h2 i {
    color: #c9a876;
    margin-right: 10px;
}

.bespoke-sample-intro {
    text-align: center;
    font-size: 1.08rem;
    color: #5a5a5a;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bespoke-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.bespoke-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #c9a876;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -100px;
    width: 80px;
    height: 80px;
    background: #c9a876;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 4px solid #f5f1eb;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.bespoke-note {
    text-align: center;
    font-size: 1.05rem;
    font-style: italic;
    color: #6a6a6a;
    margin-top: 50px;
}

/* Pricing Section */
.bespoke-pricing-section {
    padding: 90px 20px;
    background: #ffffff;
}

.bespoke-pricing-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #3a3a3a;
    margin-bottom: 55px;
    font-weight: 400;
    font-style: italic;
}

.bespoke-pricing-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-left {
    background: linear-gradient(135deg, #d4b896 0%, #c9a876 100%);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.pricing-left h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pricing-note {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.pricing-right {
    background: #faf8f5;
    padding: 50px 40px;
    border-radius: 8px;
}

.pricing-right h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #3a3a3a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-includes li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.pricing-includes i {
    color: #c9a876;
    font-size: 1.2rem;
}

.pricing-flights-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 25px;
}

.pricing-cta-wrapper {
    margin-top: 30px;
}

.btn-pricing-cta {
    display: inline-block;
    padding: 14px 30px;
    background: #c9a876;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-pricing-cta:hover {
    background: #b89560;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
}

.final-cta-poetic {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    font-style: italic;
}

.final-cta-tagline {
    font-size: 1.15rem !important;
    margin-bottom: 40px !important;
    font-family: 'Playfair Display', serif !important;
}

.final-cta-tagline strong {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.final-cta-tagline em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

/* Bespoke CTA Section */
.bespoke-cta-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ede8df 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bespoke-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 118, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bespoke-cta-section .signature-container {
    position: relative;
    z-index: 1;
}

.bespoke-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3a3a3a;
    font-weight: 400;
    font-style: italic;
}

/* Bespoke Stamp Overlay */
.bespoke-stamp-overlay {
    position: relative;
    margin-top: 60px;
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bespoke-stamp-content {
    background: linear-gradient(135deg, #d4b896 0%, #c9a876 100%);
    color: white;
    padding: 30px 50px;
    border-radius: 8px;
    border: 3px solid #b89560;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    position: relative;
}

.bespoke-stamp-content::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    pointer-events: none;
}

.bespoke-stamp-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.bespoke-cta-section p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Bespoke */
/* Medium screens (laptops) */
@media (max-width: 1366px) and (min-width: 969px) {
    .bespoke-hero {
        min-height: 600px;
        padding: 110px 6vw 95px;
    }

    .bespoke-hero-content h1 {
        font-size: 3.4rem;
    }

    .bespoke-subtitle {
        font-size: 1.35rem;
    }

    .bespoke-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 968px) {
    .bespoke-hero {
        min-height: 560px;
        padding: 110px 32px 90px;
        justify-content: center;
        text-align: center;
    }

    .bespoke-hero::after {
        background: linear-gradient(118deg, rgba(12, 26, 39, 0.72) 0%, rgba(35, 55, 77, 0.62) 55%, rgba(35, 55, 77, 0.52) 100%);
    }

    .bespoke-hero-content {
        align-items: center;
        max-width: 100%;
    }

    .bespoke-hero-content::before {
        inset: -40px -40px -20px;
    }

    .bespoke-hero-content h1 {
        font-size: 3rem;
    }

    .bespoke-subtitle {
        font-size: 1.35rem;
    }

    .bespoke-description {
        font-size: 1rem;
        margin-bottom: 26px;
    }

    .bespoke-hero-cta {
        justify-content: center;
    }

    .bespoke-hero-cta a {
        width: 100%;
        text-align: center;
    }

    .bespoke-hero .back-home-link {
        align-self: center;
    }

    .bespoke-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bespoke-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bespoke-for-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bespoke-intro-section {
        padding: 60px 20px;
    }

    .bespoke-intro-section h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .bespoke-intro-section p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .bespoke-timeline {
        padding-left: 80px;
    }

    .timeline-marker {
        left: -80px;
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    .bespoke-pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .bespoke-hero {
        min-height: 520px;
        padding: 100px 18px 70px;
    }

    .bespoke-hero::after {
        background: linear-gradient(122deg, rgba(12, 26, 39, 0.70) 0%, rgba(35, 55, 77, 0.60) 60%, rgba(35, 55, 77, 0.50) 100%);
    }

    .bespoke-hero-content h1 {
        font-size: 2.45rem;
    }

    .bespoke-subtitle {
        font-size: 1.2rem;
    }

    .bespoke-description {
        font-size: 0.98rem;
    }

    .bespoke-hero-content::before {
        inset: -28px -24px -12px;
    }

    .bespoke-intro-section {
        padding: 50px 15px;
    }

    .bespoke-intro-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .bespoke-intro-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .bespoke-steps {
        grid-template-columns: 1fr;
    }

    .bespoke-grid {
        grid-template-columns: 1fr;
    }

    .bespoke-timeline {
        padding-left: 0;
        padding-top: 20px;
    }

    .bespoke-timeline::before {
        display: none;
    }

    .timeline-marker {
        position: relative;
        left: auto;
        margin: 0 auto 15px;
    }
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.inclusion-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inclusion-item img {
    margin-bottom: 10px;
    /* Espacio entre el emoji y el texto */
}

/* Fija los elementos NOT INCLUDED en la tercera columna */
.not-included-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.not-included-item {
    grid-column: 3;
    /* Columna 3 */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-included-item img {
    margin-bottom: 10px;
}

/* === PARCHE FINAL PARA POSICIONAMIENTO HEXAGONAL === */

/* 1. Ocultamos el título "Not Included" para unir visualmente los bloques */
.whats-not-included-main-title {
    display: none !important;
}

/* 2. Reseteamos el contenedor de los "No Incluidos" y lo centramos */
.not-inclusions-list {
    display: flex !important;
    justify-content: center !important;
    /* Esto coloca los items donde están las X */
    flex-wrap: wrap !important;
    gap: 30px !important;
    /* Mismo hueco que la grilla superior */
    margin-top: 30px !important;
    /* Separación correcta de la fila de arriba */
    margin-bottom: 40px !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    position: static !important;
    /* Elimina posiciones extrañas previas */
}

/* 3. Forzamos que las tarjetas de "No Incluidos" sean GEMELAS a las de arriba */
.not-inclusion-item {
    width: 200px !important;
    /* Ancho idéntico a .inclusion-item */
    height: 200px !important;
    /* Alto idéntico */
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    /* Alineación interna igual a los otros */
    padding: 30px 12px 20px 12px !important;
    /* Mismo padding interno */
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* 4. Ajustes visuales finos para el contenido (Iconos rojos, texto gris) */
.not-inclusion-item i {
    font-size: 2.5rem !important;
    color: #dc3545 !important;
    /* Mantenemos el rojo de advertencia */
    margin-bottom: 15px !important;
    width: auto !important;
}

.not-inclusion-item p {
    font-size: 0.85rem !important;
    color: #3E2D23 !important;
    /* Mismo color de texto que el resto */
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* 5. Quitamos márgenes inferiores de la grilla de arriba para pegarlos */
.inclusions-grid-2x5 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* OPCIONAL: Ajuste para móvil para que no se descuadre */
@media (max-width: 768px) {
    .not-inclusion-item {
        width: 100% !important;
        /* En móvil ocupan todo el ancho */
        height: auto !important;
        min-height: 150px !important;
    }
}

/* === PARCHE DE EMERGENCIA - DESKTOP ONLY === */

@media (min-width: 769px) {

    /* 1. Convertimos el contenedor en Flexbox y forzamos el centrado */
    .inclusions-grid-2x5,
    .not-inclusions-list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: stretch !important;
        gap: 30px !important;
        max-width: 1250px !important;
        margin: 0 auto 40px auto !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* 2. Aseguramos que TODAS las tarjetas sean gemelas idénticas - SOLO DESKTOP */
    .inclusion-item,
    .not-inclusion-item,
    .inclusion-item.not-included {
        width: 200px !important;
        min-width: 200px !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        border-radius: 15px !important;
        background: white !important;
        padding: 30px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
}

/* 3. Arreglamos iconos y textos - TODOS LOS TAMAÑOS */
.inclusion-item i,
.not-inclusion-item i,
.inclusion-item.not-included i {
    margin-bottom: 15px !important;
    width: auto !important;
}

/* Pone rojo SOLO a los vuelos y compras */
.not-inclusion-item i,
.inclusion-item.not-included i {
    color: #dc3545 !important;
}

.inclusion-item p,
.not-inclusion-item p {
    line-height: 1.3 !important;
    color: #3E2D23 !important;
    text-align: center !important;
}

/* REQUEST SPOT MODAL */
.request-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.request-modal-content {
    background-color: #ffffff;
    margin: 3% auto;
    padding: 40px 50px;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.request-modal-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.request-modal-close:hover,
.request-modal-close:focus {
    color: #000;
}

.request-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #23374d;
    margin-bottom: 15px;
    text-align: center;
}

.request-modal-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 20px;
}

.request-contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.request-option {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.request-option:hover {
    border-color: #4A9A92;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 154, 146, 0.15);
}

.request-option i {
    font-size: 3rem;
    color: #4A9A92;
    margin-bottom: 15px;
}

.request-option h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #23374d;
    margin-bottom: 12px;
}

.request-option p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.contact-detail {
    font-weight: 600;
    color: #23374d !important;
    margin-top: 12px;
    margin-bottom: 15px;
}

.request-btn {
    display: inline-block;
    background: #4A9A92;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.request-btn:hover {
    background: #3a7a72;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(74, 154, 146, 0.3);
}

.request-modal-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .request-modal-content {
        padding: 30px 20px;
        margin: 10% auto;
        width: 95%;
    }

    .request-contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .request-modal-content h2 {
        font-size: 1.8rem;
    }

    .request-option {
        padding: 25px 15px;
    }
}

/* 4. Si tu HTML todavía tiene dos listas separadas, esto las une visualmente */
.whats-not-included-main-title {
    display: none !important;
    /* Oculta el título del medio */
}

.not-inclusions-list {
    margin-top: -20px !important;
    /* Sube la lista de abajo para pegarla */
}

@media (max-width: 820px) {
    .signature-departures-section {
        background-attachment: scroll;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-hero-section {
    background: linear-gradient(135deg, rgba(74, 154, 146, 0.95) 0%, rgba(18, 46, 66, 0.95) 100%),
        url('imagenes/newbackgrounglemon.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.faq-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(74, 154, 146, 0.1) 0%, rgba(18, 46, 66, 0.1) 100%);
}

.faq-number {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4A9A92;
    min-width: 35px;
}

.faq-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c2c2c;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1rem;
    color: #4A9A92;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-answer p {
    padding: 0 30px 25px 80px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #2c2c2c;
    font-weight: 600;
}

.faq-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(74, 154, 146, 0.05) 0%, rgba(18, 46, 66, 0.05) 100%);
    text-align: center;
}

.faq-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* FAQ RESPONSIVE */
@media (max-width: 768px) {
    .faq-hero-section {
        min-height: 40vh;
        padding: 100px 20px 60px;
    }

    .faq-hero-content h1 {
        font-size: 2.2rem;
    }

    .faq-hero-content p {
        font-size: 1.1rem;
    }

    .faq-content-section {
        padding: 60px 15px;
    }

    .faq-question {
        padding: 20px;
        gap: 10px;
    }

    .faq-number {
        font-size: 1.1rem;
        min-width: 30px;
    }

    .faq-text {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 50px;
        font-size: 0.95rem;
    }

    .faq-cta-section {
        padding: 60px 20px;
    }

    .faq-cta-content h2 {
        font-size: 2rem;
    }

    .faq-cta-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .faq-hero-content h1 {
        font-size: 1.8rem;
    }

    .faq-hero-content p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-number {
        font-size: 1rem;
        min-width: 25px;
    }

    .faq-text {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 15px 18px 40px;
        font-size: 0.9rem;
    }

    .faq-cta-content h2 {
        font-size: 1.7rem;
    }
}

/* ============================================
   RESPONSIVE FIXES - CRITICAL OVERRIDES
   ============================================ */

/* Mobile First - Very Small Screens (320px - 480px) */
@media (max-width: 480px) {

    /* Journey Cards Mobile Fix */
    .journey-card {
        height: auto !important;
        min-height: 600px !important;
        padding: 25px 15px !important;
    }

    .journey-card-content h3 {
        font-size: 2.2rem !important;
    }

    .journey-features li {
        font-size: 0.9rem !important;
    }

    .journey-link {
        padding: 16px 20px !important;
        font-size: 0.95rem !important;
    }

    .hero-section {
        min-height: 100vh !important;
        height: auto !important;
    }

    .hero-content {
        padding: 100px 20px 120px !important;
        height: auto !important;
        min-height: 100vh !important;
        gap: 15px !important;
    }

    .hero-main-title {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.3rem !important;
        transform: translateY(0) translateX(0) !important;
    }

    .hero-description {
        margin-left: 0 !important;
        transform: translateY(0) translateX(0) !important;
        font-size: 0.85rem !important;
        margin-top: 5px !important;
    }

    .slogan {
        margin-left: 0 !important;
        transform: translateX(0) !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-top: 15px !important;
    }

    .hero-journey-links {
        flex-direction: column !important;
        width: 100% !important;
        margin-top: 20px !important;
        gap: 12px !important;
    }

    .hero-journey-link {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .hero-cta-buttons {
        width: 100% !important;
        margin-top: 15px !important;
    }

    .hero-cta-buttons .cta-button {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
    }
}

/* Small Mobile (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .hero-section {
        min-height: 100vh !important;
        height: auto !important;
    }

    .hero-content {
        padding: 100px 25px 100px !important;
        height: auto !important;
        min-height: 100vh !important;
        gap: 15px !important;
    }

    .hero-main-title {
        font-size: 3.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.5rem !important;
        transform: translateY(0) translateX(0) !important;
    }

    .hero-description {
        margin-left: 0 !important;
        transform: translateY(0) translateX(0) !important;
        font-size: 0.95rem !important;
    }

    .slogan {
        margin-left: 0 !important;
        transform: translateX(0) !important;
        font-size: 1rem !important;
    }

    .hero-journey-links {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-journey-link {
        width: 100% !important;
        padding: 14px 24px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .hero-cta-buttons .cta-button {
        width: 100% !important;
        padding: 14px 24px !important;
    }

    /* Fix journey cards on mobile */
    .journey-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .journey-container::before {
        display: none !important;
    }

    /* Fix testimonials */
    .testimonial-cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fix inclusions grid */
    .inclusions-grid-2x5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .inclusions-grid-4x3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Large Mobile / Small Tablet (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {

    /* Journey Cards for this range */
    .journey-card {
        height: auto !important;
        min-height: 550px !important;
    }

    .journey-card-content h3 {
        font-size: 2.8rem !important;
    }

    .journey-link {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }

    .hero-content {
        padding: 120px 30px 100px !important;
        gap: 18px !important;
    }

    .hero-journey-links {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .hero-journey-link {
        flex: 1 1 calc(50% - 6px) !important;
        min-width: 200px !important;
        padding: 14px 20px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .hero-cta-buttons {
        width: 100% !important;
    }

    .hero-cta-buttons .cta-button {
        width: 100% !important;
        padding: 14px 30px !important;
    }

    .testimonial-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .journey-container {
        grid-template-columns: 1fr !important;
    }

    .inclusions-grid-2x5 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Tablet (769px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .testimonial-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .journey-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    .journey-container::before {
        display: none !important;
    }

    .inclusions-grid-2x5 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .inclusions-grid-4x3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Fix signature carousel width */
    .signature-carousel-wrapper {
        max-width: 100% !important;
    }
}

/* Touch Optimizations for All Mobile Devices */
@media (max-width: 968px) {

    /* Improve touch targets */
    .cta-button,
    .request-btn,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
    }

    /* Add touch scrolling */
    .signature-inclusions-grid,
    .signature-departures-grid {
        -webkit-overflow-scrolling: touch;
    }

    /* Remove hover effects on touch devices */
    .testimonial-card:hover,
    .experience-card:hover,
    .journey-card:hover {
        transform: none;
    }

    /* Fix modal width on mobile */
    .request-modal-content,
    .modal-content {
        width: 95% !important;
        margin: 5% auto !important;
    }

    /* Ensure home button doesn't overlap */
    .home-button {
        bottom: 20px !important;
        left: 20px !important;
    }

    /* Fix contact menu positioning */
    .contact-menu {
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* Landscape Mobile Fixes */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh !important;
    }

    .faq-hero-section {
        min-height: 70vh !important;
    }

    .signature-hero,
    .bespoke-hero {
        min-height: 80vh !important;
    }
}

/* Prevent horizontal scroll on all screen sizes */
@media (max-width: 968px) {
    * {
        max-width: 100vw;
    }

    .hero-content,
    .signature-container,
    .faq-container {
        overflow-x: hidden;
    }
}

/* Fix for very wide tablets / small laptops */
@media (min-width: 969px) and (max-width: 1366px) {
    .inclusions-grid-2x5 {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    .testimonial-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ============================================
   ADDITIONAL CRITICAL RESPONSIVE FIXES
   ============================================ */

/* Ensure What We Believe image is visible on all devices */
@media (max-width: 768px) {
    #what-we-believe .why-us-image-grid {
        display: flex !important;
        justify-content: center !important;
        margin: 30px 0 !important;
    }

    #what-we-believe .why-us-image-grid img {
        width: 100% !important;
        max-width: 500px !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }
}

/* Fix carousel wrapper on mobile */
@media (max-width: 768px) {

    .what-we-offer-carousel,
    .experiences-carousel {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 auto !important;
    }

    .what-we-offer-carousel.slick-initialized,
    .experiences-carousel.slick-initialized {
        display: block !important;
        width: 100% !important;
    }

    .what-we-offer-carousel .slick-list,
    .experiences-carousel .slick-list {
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .what-we-offer-carousel .slick-track,
    .experiences-carousel .slick-track {
        width: 100% !important;
        display: flex !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .what-we-offer-carousel .slick-slide,
    .experiences-carousel .slick-slide {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        float: none !important;
    }

    .what-we-offer-carousel .slick-slide>div,
    .experiences-carousel .slick-slide>div {
        width: 100% !important;
        display: block !important;
    }

    .what-we-offer-carousel .slick-slide img,
    .experiences-carousel .slick-slide img,
    .what-we-offer-carousel img,
    .experiences-carousel img {
        display: block !important;
        height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 12px !important;
    }

    .glimpse-section-wrapper {
        overflow-x: visible !important;
        padding: 0 20px !important;
        width: 100% !important;
    }
}

/* Ensure all CTA buttons are consistent */
@media (max-width: 768px) {

    .cta-button,
    .hero-journey-link,
    .contact-button {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

    .hero-journey-link {
        background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%) !important;
        color: #0F0F0F !important;
    }

    .cta-button {
        background: linear-gradient(135deg, rgba(74, 154, 146, 0.95) 0%, rgba(58, 122, 114, 0.95) 100%) !important;
        color: white !important;
    }
}

/* Fix hero img visibility on all devices */
@media (max-width: 968px) {
    .hero-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        filter: brightness(0.5) !important;
        z-index: 0 !important;
    }

    .hero-section {
        position: relative !important;
        overflow: hidden !important;
    }
}

/* Fix journey cards on mobile - ensure buttons are visible */
@media (max-width: 768px) {
    .journey-card {
        min-height: 550px !important;
        height: auto !important;
        padding: 30px 20px !important;
    }

    .journey-card-content {
        padding: 20px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .journey-card-content h3 {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }

    .journey-subtitle-card {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .journey-features {
        margin-bottom: 25px !important;
    }

    .journey-features li {
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }

    .journey-link {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        margin-top: 20px !important;
        position: relative !important;
        z-index: 10 !important;
        background-color: #4A9A92 !important;
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(74, 154, 146, 0.4) !important;
    }
}

/* Tablet specific fixes (769px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .hero-content {
        padding: 120px 40px 100px !important;
    }

    .hero-journey-links {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
    }

    .hero-journey-link {
        flex: 0 1 auto !important;
        min-width: 240px !important;
    }

    .cta-button {
        padding: 14px 35px !important;
    }
}

/* Ensure glimpse carousel doesn't get cut off - MOBILE ONLY */
@media (max-width: 768px) {

    .experiences-carousel,
    .what-we-offer-carousel {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .experiences-carousel .slick-slide,
    .what-we-offer-carousel .slick-slide {
        padding: 0 10px !important;
        display: block !important;
    }

    .experiences-carousel .slick-slide>div,
    .what-we-offer-carousel .slick-slide>div {
        display: block !important;
        width: 100% !important;
    }

    .experiences-carousel img,
    .what-we-offer-carousel img,
    .experiences-carousel .slick-slide img,
    .what-we-offer-carousel .slick-slide img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 250px !important;
        max-height: 350px !important;
        object-fit: cover !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 12px !important;
    }
}

/* ============================================
   GOLDEN BUTTONS CONSISTENCY FIX
   ============================================ */

/* Ensure all golden/yellow journey buttons have consistent styling */
.hero-journey-link,
a.hero-journey-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 24px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%) !important;
    color: #2f271b !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.hero-journey-link:hover,
a.hero-journey-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4) !important;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%) !important;
}

/* Mobile adjustments for golden buttons */
@media (max-width: 640px) {

    .hero-journey-link,
    a.hero-journey-link {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 0.9rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
}

@media (min-width: 641px) and (max-width: 768px) {

    .hero-journey-link,
    a.hero-journey-link {
        padding: 14px 20px !important;
        font-size: 0.88rem !important;
    }
}

/* ========================================
    FIX CRÍTICO: Overflow Horizontal Mobile
   ======================================== */

/* Prevenir desbordamiento horizontal en todos los dispositivos */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative;
}

/* Fix específico para secciones hero en móviles */
@media (max-width: 968px) {
    
    /* Neutralizar transforms y margins problemáticos en hero */
    .hero-subtitle {
        transform: translateY(0) translateX(0) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    .hero-description {
        transform: translateY(0) translateX(0) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .slogan {
        margin-left: 0 !important;
        transform: translateX(0) !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Asegurar que elementos decorativos no causen overflow */
    .bespoke-cta-section::before {
        right: -20% !important;
        width: 400px !important;
        height: 400px !important;
    }

    /* Prevenir overflow en contenedores principales */
    .hero-container,
    .signature-container,
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: max(15px, env(safe-area-inset-left)) !important;
        padding-right: max(15px, env(safe-area-inset-right)) !important;
    }
}

/* Fix adicional para dispositivos muy pequeños (< 400px) */
@media (max-width: 400px) {
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem) !important;
        letter-spacing: 3px !important;
    }

    .hero-description {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem) !important;
        letter-spacing: 1px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Reducir decorativos que puedan salirse */
    .bespoke-cta-section::before {
        display: none !important;
    }
}

/* Asegurar que imágenes y media respeten el contenedor */
video, iframe, canvas, svg {
    max-width: 100% !important;
    height: auto !important;
}

/* Fix para tablas que puedan causar overflow */
table {
    width: 100% !important;
    table-layout: fixed !important;
}

/* Prevenir que textos largos sin espacios causen overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}