/* ==========================================================================
   EXCEL TOURS MIRAVALLE - HOJA DE ESTILOS PRINCIPALES
   ========================================================================== */

/* Variables de Diseño */
:root {
    /* Colores Principales */
    --primary: #e62117;        /* Rojo Excel */
    --primary-hover: #b81710;
    --primary-rgb: 230, 33, 23;
    
    --secondary: #d4af37;      /* Dorado Premium */
    --secondary-hover: #b3912b;
    --secondary-rgb: 212, 175, 55;

    --dark-bg: #0b0f19;        /* Fondo base oscuro */
    --dark-card: #141a29;      /* Fondo tarjeta oscura */
    --light-bg: #f8fafc;       /* Fondo base claro */
    --light-card: #ffffff;     /* Fondo tarjeta blanca */
    
    /* Colores de Texto */
    --text-dark: #0f172a;      /* Slate 900 */
    --text-muted-dark: #475569;/* Slate 600 */
    --text-light: #f8fafc;     /* Slate 50 */
    --text-muted-light: #cbd5e1;/* Slate 300 */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #e62117 0%, #ff4d42 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
    --gradient-dark: linear-gradient(135deg, #0b0f19 0%, #172033 100%);
    --gradient-overlay: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.4) 100%);

    /* Bordes y Sombras */
    --border-light: 1px solid rgba(0, 0, 0, 0.08);
    --border-dark: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 10px 25px rgba(230, 33, 23, 0.25);
    
    /* Transiciones */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* Reset y Estilos Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

textarea {
    resize: vertical;
}

/* Contenedores */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Títulos de Sección */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.sub-title {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(230, 33, 23, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-secondary:active {
    transform: translateY(0);
}

/* Utilidades */
.text-red { color: var(--primary); }
.text-gold { color: var(--secondary); }
.bg-dark { background-color: var(--dark-bg); color: var(--text-light); }

/* ==========================================================================
   1. HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header Scrolled State via JS */
.main-header.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .nav-logo {
    max-height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    font-weight: 600;
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

.nav-item.active {
    color: var(--primary);
}

.btn-nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 12rem 0 8rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    background: rgba(230, 33, 23, 0.2);
    border: 1px solid var(--primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

/* Quick Search Widget */
.hero-quick-search {
    background: rgba(25, 33, 52, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.quick-search-box h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.quick-search-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.quick-search-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-search-form label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-light);
}

.quick-search-form input,
.quick-search-form select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.quick-search-form input:focus,
.quick-search-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.quick-search-form select option {
    background-color: var(--dark-bg);
    color: white;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--light-bg);
}

/* ==========================================================================
   3. ABOUT US & AGENT
   ========================================================================== */
.about-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-card:hover .about-img {
    transform: scale(1.03);
}

.badge-experience {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.badge-experience .number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.badge-experience .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: var(--text-muted-dark);
    margin-bottom: 2rem;
}

/* Agent Information Card */
.agent-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary);
}

.agent-info-horizontal {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.agent-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(230, 33, 23, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.agent-details h4 {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
}

.agent-details p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted-dark);
}

.agent-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-pill {
    background: var(--light-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.contact-pill:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   4. TOURS SECTION
   ========================================================================== */
.tours-section {
    padding: 8rem 0;
    background-color: white;
}

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

.tour-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.tour-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.tour-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tour-badge.secondary {
    background: #8b5cf6; /* Morado */
}

.tour-badge.tertiary {
    background: #0ea5e9; /* Azul */
}

.tour-price-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    text-align: right;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-price-badge .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    display: block;
    color: var(--text-muted-light);
}

.tour-price-badge .price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
}

.tour-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-meta i {
    color: var(--primary);
    margin-right: 3px;
}

.tour-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.hotel-mention {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hotel-mention i {
    margin-right: 4px;
}

.tour-description {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.tour-inclusions {
    margin-bottom: 2rem;
    margin-top: auto;
}

.tour-inclusions li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-inclusions li i {
    color: #10b981; /* Verde */
}

/* ==========================================================================
   5. CRUISES SECTION
   ========================================================================== */
.cruises-section {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

.cruises-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.75) 100%);
    z-index: 1;
}

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

.cruises-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cruises-content h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cruises-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.cruises-content p.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.cruise-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin: 0;
}

/* Cruises vertical cards */
.cruises-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cruise-card-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.cruise-card-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(230, 33, 23, 0.3);
}

.cruise-card-item .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(230, 33, 23, 0.15);
    border: 1px solid rgba(230, 33, 23, 0.25);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cruise-card-item h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.cruise-card-item .line {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.cruise-card-item .route {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin-bottom: 0.75rem;
}

.price-pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   6. CUSTOM TRIP (COTIZADOR INTERACTIVO)
   ========================================================================== */
.custom-trip-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.planner-box {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: var(--border-light);
}

.planner-step-group {
    margin-bottom: 3.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 0.75rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.step-header h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* Options cards style */
.planner-options-grid {
    display: grid;
    gap: 1.25rem;
}

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

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

.planner-option-card {
    cursor: pointer;
    position: relative;
    display: block;
}

.planner-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.planner-option-card .card-inner {
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.planner-option-card .card-inner i {
    font-size: 2.2rem;
    color: var(--text-muted-dark);
    transition: var(--transition-smooth);
}

.planner-option-card .card-inner span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Checked option state */
.planner-option-card input[type="radio"]:checked + .card-inner {
    background: rgba(230, 33, 23, 0.04);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.planner-option-card input[type="radio"]:checked + .card-inner i {
    color: var(--primary);
    transform: scale(1.1);
}

/* Step 4 Details Textarea */
.planner-input-field textarea {
    width: 100%;
    padding: 1.25rem;
    border-radius: 14px;
    border: 2px solid rgba(0,0,0,0.08);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--light-bg);
    transition: var(--transition-smooth);
}

.planner-input-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.planner-submit-area {
    text-align: center;
    margin-top: 1rem;
}

.btn-submit-planner {
    max-width: 400px;
    margin: 0 auto;
}

.submit-note {
    font-size: 0.8rem;
    color: var(--text-muted-dark);
    margin-top: 0.75rem;
    font-weight: 600;
}

.submit-note i {
    color: #10b981;
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 8rem 0;
    background-color: white;
}

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

.service-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: var(--border-light);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: rgba(230, 33, 23, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(230, 33, 23, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars-rating {
    color: #ffb703;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 3px;
}

.comment {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.comment::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(230, 33, 23, 0.08);
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    font-family: serif;
}

.author {
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1.25rem;
}

.author h5 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
}

.author span {
    font-size: 0.8rem;
    color: var(--text-muted-dark);
    font-weight: 600;
}

/* ==========================================================================
   9. CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 8rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info-column h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-column p {
    color: var(--text-muted-dark);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.method-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: var(--border-light);
    transition: var(--transition-smooth);
}

.method-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.method-card .details {
    display: flex;
    flex-direction: column;
}

.method-card .details span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    letter-spacing: 0.5px;
}

.method-card .details strong {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    word-break: break-all;
}

/* Hover effects for link cards */
.link-card {
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
}

.link-card:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.link-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.arrow-icon {
    position: absolute;
    right: 1.5rem;
    color: var(--text-muted-dark);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.link-card:hover .arrow-icon {
    color: var(--primary);
    transform: translateX(3px);
}

/* Contact Form UI */
.contact-form-column .form-box {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: var(--border-light);
}

.contact-form-column h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-direct-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-direct-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-direct-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-direct-form input,
.contact-direct-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-direct-form input:focus,
.contact-direct-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(230, 33, 23, 0.08);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 6rem 0 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3.5rem;
}

.footer-logo {
    max-height: 52px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a,
.footer-services a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-info p i {
    width: 16px;
    flex-shrink: 0;
}

.footer-contact-info a {
    transition: var(--transition-fast);
}

.footer-contact-info a:hover {
    color: white;
}

.footer-bottom {
    padding: 2rem 0;
    font-size: 0.85rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: white;
}

/* ==========================================================================
   11. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.whatsapp-floating-btn .tooltip {
    position: absolute;
    right: 75px;
    background-color: #1e293b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.whatsapp-floating-btn .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1e293b;
}

.whatsapp-floating-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   SUBPÁGINAS Y DETALLE DE TOURS (TIMELINE & ACCORDIONS)
   ========================================================================== */

/* Page Headers */
.page-header {
    padding: 10rem 0 5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(11, 15, 25, 0.8), rgba(11, 15, 25, 0.9));
    z-index: 1;
}

.page-header .section-container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-muted-light);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: white;
}

/* Tour Detail Layout */
.tour-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

/* Itinerary Timeline Accordion */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

details.timeline-day {
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

details.timeline-day[open] {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow-md);
}

.day-summary {
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    list-style: none; /* Ocultar flecha estándar */
}

.day-summary::-webkit-details-marker {
    display: none; /* Ocultar flecha estándar en Safari */
}

.day-summary h4 {
    margin: 0;
    font-size: 1.15rem;
    flex-grow: 1;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.day-badge {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-muted-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-smooth);
}

details.timeline-day[open] .day-badge {
    background: var(--primary);
    color: white;
}

.summary-arrow {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

details.timeline-day[open] .summary-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.day-details-content {
    padding: 0 1.75rem 1.75rem 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
    font-size: 1rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
}

.day-tag {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.day-tag i {
    color: var(--primary);
}

/* Tours page filter bar styles */
.tours-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

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

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-red);
}

/* Hidden class for JavaScript filtering */
.tour-card.hidden-tour {
    display: none !important;
}

/* --- CRUISE TABS INDEX --- */
.cruise-tabs-container {
    margin-bottom: 3.5rem;
}

.cruise-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.cruise-tab-btn {
    padding: 0.75rem 1.75rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.cruise-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cruise-tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-red);
}

/* Hidden class for cruise filtering */
.cruise-category-section {
    display: none;
}

.cruise-category-section.active {
    display: block;
    animation: fadeInCruises 0.4s ease-in-out;
}

@keyframes fadeInCruises {
    from { opacity: 0; transform: translateY(10deg); }
    to { opacity: 1; transform: translateY(0); }
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.brand-card {
    background: white;
    border-radius: 16px;
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 320px;
}

.brand-card .btn {
    width: 100%;
    margin-top: 1.5rem;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.brand-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.brand-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Spec Table for Cruise Details */
.cruise-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.cruise-spec-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cruise-spec-table tr:last-child {
    border-bottom: none;
}

.cruise-spec-table td {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

.cruise-spec-table td.spec-label {
    font-weight: 700;
    color: var(--text-dark);
    width: 35%;
    background: rgba(0, 0, 0, 0.02);
}

.cruise-spec-table td.spec-value {
    color: var(--text-muted-dark);
}

/* Category Badges */
.category-badge-pill {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.category-badge-pill.comerciales {
    background: rgba(230, 33, 23, 0.1);
    color: var(--primary);
}

.category-badge-pill.tradicionales {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.category-badge-pill.lujo {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.category-badge-pill.superlujo {
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
}

.category-badge-pill.fluviales {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.highlights-card {
    background: white;
    border: var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
}

.highlights-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlights-list li i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

/* Dual Range Slider Container */
.dual-range-container {
    position: relative;
    width: 100%;
    height: 30px;
}

/* Base Track */
.dual-range-container .slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    transform: translateY(-50%);
    z-index: 1;
}

/* Overlapping Inputs */
.dual-range-container .budget-range-input {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    transform: translateY(-50%);
    margin: 0;
    z-index: 2;
    height: 30px;
    outline: none;
}

/* Enable pointer events only on the thumb */
.dual-range-container .budget-range-input::-webkit-slider-thumb {
    pointer-events: auto;
    z-index: 99;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -2px; /* Center thumb vertically relative to track */
    box-shadow: 0 2px 6px rgba(230, 33, 23, 0.4);
    transition: var(--transition-fast);
    border: 2px solid white;
}

.dual-range-container .budget-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(230, 33, 23, 0.5);
}

.dual-range-container .budget-range-input::-moz-range-thumb {
    pointer-events: auto;
    z-index: 99;
    height: 20px;
    width: 20px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(230, 33, 23, 0.4);
    transition: var(--transition-fast);
}

.dual-range-container .budget-range-input::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Hide track for webkit range inputs to use our custom track */
.dual-range-container .budget-range-input::-webkit-slider-runnable-track {
    background: none;
    border: none;
}
.dual-range-container .budget-range-input::-moz-range-track {
    background: none;
    border: none;
}

/* Brand Logo Wrapper and Image hover styling */
.brand-logo-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.brand-logo-img {
    max-height: 55px;
    max-width: 190px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.brand-card:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

/* ==========================================================================
   12. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Mobile Header */
@media (max-width: 1024px) {
    .tour-detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tour-sidebar {
        position: static !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-quick-search {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-image-wrapper {
        order: 2;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cruises-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .cruises-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cruise-benefits {
        align-items: center;
    }
    
    .benefit-item {
        text-align: left;
        max-width: 450px;
    }
    
    .planner-options-grid.options-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .planner-options-grid.options-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info-column {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods {
        width: 100%;
        max-width: 550px;
    }
    
    .contact-form-column .form-box {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Devices Header Menu Overlay */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition-smooth);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-item {
        font-size: 1.2rem;
    }
    
    .btn-nav-cta {
        display: none; /* Hide top CTA on small screens */
    }
    
    /* Open Mobile Navigation state for toggle button */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .planner-options-grid.options-5,
    .planner-options-grid.options-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-grid h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .planner-options-grid.options-5,
    .planner-options-grid.options-4 {
        grid-template-columns: 1fr;
    }
    
    .planner-box {
        padding: 1.5rem;
    }
    
    .contact-form-column .form-box {
        padding: 1.5rem;
    }
    
    .badge-experience {
        padding: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .badge-experience .number {
        font-size: 1.75rem;
    }
    
    .whatsapp-floating-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}
