﻿:root {
    --accent-yellow: #FFC220;
    --accent-orange: #F9A01B;
    --primary-red: #8B1D2A; 
    --accent-red: #B12028; 
    --whatsapp-green: #25D366;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #F9F9F9;
    --white: #FFFFFF;
    
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    margin-right: 20px;
}

.top-contact a i {
    margin-right: 5px;
}

.top-social a {
    margin-left: 15px;
    font-size: 1rem;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a i {
    font-size: 0.7rem;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.header-icons a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 150px; 
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; left: auto; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 40px;
}

.lang-selector-top {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    position: absolute;
    top: 0;
    left: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.15rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Horizontal Widget */
.horizontal-widget {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 25px;
    width: 100%;
    max-width: 1000px;
}

.widget-tabs-hz {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-hz {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.05rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    font-family: var(--font-main);
}

.tab-hz.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.widget-form-hz {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.input-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-col label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.input-col select,
.input-col input[type="date"],
.pax-display {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    background: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    height: 48px;
    color: var(--dark);
}

.pax-display {
    display: flex;
    align-items: center;
}

.btn-col {
    flex: 0.8;
}

.btn-col .btn {
    width: 100%;
    height: 48px;
    margin-bottom: 0;
}

/* Pax Dropdown */
.pax-col {
    position: relative;
}

.pax-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; left: auto;
    width: 250px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 100;
    margin-top: 5px;
    border: 1px solid #eee;
}

.pax-dropdown.active {
    display: block;
}

.pax-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.pax-item span {
    font-weight: 500;
}

.pax-controls {
    display: flex;
    align-items: center;
}

.pax-controls input {
    width: 40px;
    margin: 0;
    text-align: center;
    border: none;
    font-family: var(--font-main);
    font-weight: 600;
}

.pax-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pax-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.hidden {
    display: none !important;
}

#widget-result-hz {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff8f8;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ffdbdf;
    border-left: 5px solid var(--primary-red);
    text-align: left;
}

.res-text strong {
    color: var(--primary-red);
    font-size: 1.4rem;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-red); border-bottom: 3px solid var(--accent-orange);
    color: var(--white);
}
.btn-primary:hover {
    background: #6a131e;
}

.btn-success {
    background: var(--whatsapp-green);
    color: var(--white);
}

.btn-accent {
    background: #F37021;
    color: var(--white);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

/* Features Overlap */
.features-overlap {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 30px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
}
.feature-box:last-child {
    border-right: none;
}

.feature-box img {
    width: 40px;
    margin: 0 auto 15px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Sections General */
.section {
    padding: 80px 0;
}
.text-center {
    text-align: center;
}
.section-subtitle {
    color: var(--primary-red);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Paquetes Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    max-width: 1050px;
    margin: 0 auto;
}

.tour-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.tour-img {
    height: 220px;
    overflow: hidden;
}
.tour-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.tour-info {
    position: relative;
    padding: 60px 20px 20px;
}
.tour-meta {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: max-content;
    white-space: nowrap;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--dark);
    z-index: 10;
}
.tour-meta i {
    color: var(--primary-red);
    width: 15px;
    text-align: center;
    margin-right: 5px;
}
.tour-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}
.tour-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
}
.tour-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price .desde {
    display: block; font-size: 0.8rem; color: var(--gray);
}
.price .amount {
    font-size: 1.2rem; font-weight: bold; color: var(--dark);
}

.btn-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}
.btn-link:hover {
    color: var(--primary-red);
}
.btn-link i { color: var(--primary-red); margin-left: 5px; }

@media (max-width: 992px) {
    .widget-form-hz {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-col {
        margin-top: 10px;
    }
    #widget-result-hz {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-box {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Footer */
.main-footer { background-color: #5b1522; border-top: 5px solid var(--accent-yellow); /* Darker burgundy than top bar */
    color: var(--white);
    padding-top: 60px;
    font-size: 0.9rem;
}

.footer-top {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-box {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-box img {
    height: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0; left: auto;
    width: 30px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.8rem;
    flex-wrap: wrap;
    color: var(--white);
}

.mt-20 {
    margin-top: 30px;
}

.office-hours {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.office-hours i {
    margin-top: 4px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    margin-top: 4px;
    color: var(--white);
}

.footer-bottom {
    background-color: #4a111b; /* Even darker shade */
    padding: 20px 0;
}

.footer-bottom-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-inner p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-red); border-bottom: 3px solid var(--accent-orange);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Nuevas Secciones */
.ciudad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}
.ciudad-card:nth-child(2),
.ciudad-card:nth-child(3) {
    transform: translateY(-40px);
}

.ciudad-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ciudad-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.ciudad-content {
    background: var(--primary-red); border-bottom: 3px solid var(--accent-orange);
    padding: 30px 20px 20px;
    position: relative;
}

.ciudad-title {
    background: var(--white);
    color: var(--dark);
    padding: 10px 20px;
    font-weight: 600;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ciudad-content p {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
    padding: 8px 15px;
    font-size: 0.85rem;
}
.btn-white:hover { background: var(--accent-yellow); color: var(--dark); }

/* Experiencias Premium */
.exp-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
}
.exp-grid::-webkit-scrollbar {
    display: none;
}
.exp-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
.exp-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    height: 250px;
}
.exp-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.exp-card:hover .exp-img-wrap img {
    transform: scale(1.1);
}
.exp-content {
    background: var(--white);
    border-radius: 24px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    margin: -60px 15px 20px;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}
.exp-content h4 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.exp-content p {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.4;
}
.exp-content .btn {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 12px 10px;
    font-weight: 600;
    border-bottom: 4px solid var(--accent-orange);
}
@media (max-width: 992px) {
    .exp-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
    .exp-card { flex: 0 0 calc(85%); }
}/* Hover scale effect for all card images */
.ciudad-card img,
.tour-img img,
.exp-card img {
    transition: transform 0.5s ease;
}

.ciudad-card:hover img,
.tour-card:hover .tour-img img,
.exp-card:hover img {
    transform: scale(1.1);
}

/* Button hover lift effect */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}






/* CTA Banner with Curved Logo Aesthetic */
.cta-banner {
    position: relative;
    background-color: var(--accent-yellow);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    color: var(--dark);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 10%;
    width: 80%;
    height: 200%;
    background-color: var(--accent-orange);
    border-radius: 50%;
    z-index: 0;
}
.cta-banner::after {
    display: none;
}
.cta-banner .container {
    position: relative;
    z-index: 2;
}
.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(139, 29, 42, 0.3);
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #5b1522;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.carousel-arrow.left { left: -15px; }
.carousel-arrow.right { right: -15px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.carousel-dot.active { background: #333; }

/* Responsive Mobile Fixes */
@media (max-width: 992px) {
    /* Header & Navigation */
    .hamburger {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-red);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px; left: auto;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        flex-direction: column;
        padding-top: 60px;
    }
    
    .main-nav.active {
        right: 0; left: auto;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px 20px;
        color: var(--dark);
    }
    
    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        right: 0; left: auto;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Widget Cotizador */
    .widget-form-hz {
        flex-direction: column;
        gap: 15px;
    }
    .widget-form-hz .input-col {
        width: 100%;
        flex: none;
    }
    .widget-form-hz .btn-col {
        width: 100%;
        margin-top: 10px;
    }

    /* Ciudades Grid */
    .ciudad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Paquetes Grid */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Further Mobile Fixes */
    .ciudad-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
}

/* Hide Hamburger on Desktop */
@media (min-width: 993px) {
    .hamburger {
        display: none;
    }
    .menu-overlay {
        display: none !important;
    }
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

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

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

/* ==========================================================================
   INTERNAL TOUR PAGE STYLES (tour.html)
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb-container {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}
.breadcrumb-container a {
    color: #666;
    text-decoration: none;
}
.breadcrumb-container a:hover {
    color: var(--primary-red);
}

/* Tour Overview Section */
.tour-overview-section {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    margin-bottom: 40px;
}

/* Gallery */
.tour-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.tour-gallery .thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.tour-gallery .thumbnail-list img {
    width: calc(100% / 6 - 10px);
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}
.tour-gallery .thumbnail-list img:hover,
.tour-gallery .thumbnail-list img.active {
    opacity: 1;
    border: 2px solid var(--primary-red);
}

/* Header Info */
.tour-header-info h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.tour-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666;
}
.tour-meta-row .stars {
    color: var(--accent-yellow);
}
.tour-meta-row .stars span {
    color: #666;
    margin-left: 5px;
}
.tour-features-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    text-align: center;
}
.tour-features-row .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.tour-features-row .feature-item i {
    font-size: 1.5rem;
    color: var(--dark);
}
.tour-features-row .feature-item strong {
    font-size: 0.95rem;
    color: var(--dark);
}
.tour-features-row .feature-item span {
    font-size: 0.8rem;
    color: #666;
}
.tour-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}
.tour-actions {
    display: flex;
    gap: 15px;
}
.tour-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Nav Tabs */
.tour-nav-tabs {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.tour-nav-tabs .container {
    display: flex;
    gap: 30px;
}
.tour-tab {
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}
.tour-tab i {
    margin-right: 8px;
}
.tour-tab:hover {
    color: var(--primary-red);
}
.tour-tab.active {
    color: var(--primary-red);
}
.tour-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
}

/* Main Layout */
.tour-main-layout {
    display: grid;
    grid-template-columns: 65% 30%;
    gap: 5%;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Left Column */
.tour-section-content {
    display: none;
}
.tour-section-content.active {
    display: block;
}
.tour-section-content h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.tour-section-content > p {
    color: #666;
    margin-bottom: 30px;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    margin-bottom: 30px;
}
.itinerary-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}
.itinerary-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 15px;
    bottom: 0;
    width: 2px;
    background: #eee;
}
.itinerary-item .item-img img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}
.itinerary-item .item-content {
    flex: 1;
}
.day-badge {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 5px;
}
.itinerary-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.itinerary-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}
.day-icons {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
}
.day-icons i {
    margin-right: 5px;
}

/* Sidebar */
.tour-sidebar {
    position: sticky;
    top: 80px;
}
.sidebar-box {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}
.sidebar-box h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.info-box ul {
    list-style: none;
    padding: 0;
}
.info-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}
.info-box ul li:last-child {
    border-bottom: none;
}
.info-box ul li span {
    color: #666;
}

/* Includes / Excludes Lists */
.check-list, .cross-list {
    list-style: none;
    padding: 0;
}
.check-list li, .cross-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.text-green { color: #00aa6c; }
.text-red { color: #e63946; }

/* Booking Box */
.booking-box {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.desde-text {
    font-size: 0.85rem;
    color: #666;
}
.price-big {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin: 5px 0;
}
.per-person {
    font-size: 0.85rem;
    color: #888;
}
.mt-15 { margin-top: 15px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.w-100 { width: 100%; text-align: center; justify-content: center; }
.btn-outline-red {
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.whatsapp-contact i {
    font-size: 2rem;
    color: #25d366;
}
.whatsapp-contact div {
    font-size: 0.85rem;
    line-height: 1.4;
}
.whatsapp-contact strong {
    display: block;
    font-size: 1.1rem;
}

/* Responsive Tour Page */
@media (max-width: 992px) {
    .tour-overview-section, .tour-main-layout {
        grid-template-columns: 1fr;
    }
    .tour-sidebar {
        position: static;
        margin-top: 40px;
    }
    .tour-nav-tabs .container {
        overflow-x: auto;
        white-space: nowrap;
    }
    .itinerary-item .item-img img {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 768px) {
    .tour-features-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    .tour-features-row .feature-item {
        width: 45%;
    }
    .tour-actions {
        flex-direction: column;
    }
    .itinerary-item {
        flex-direction: column;
    }
    .itinerary-item .item-img img {
        width: 100%;
        height: 200px;
    }
}

