:root {
    --primary-color: #2A4B7C;
    --accent-color: #FF7F50;
    --text-dark: #2D3748;
    --star-color: #FFD700;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section {
    background: linear-gradient(rgba(42,75,124,0.8), rgba(42,75,124,0.8)), 
                url('https://images.unsplash.com/photo-1518544866330-95a2ab6f527f') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.tour-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.tour-card img {
    height: 220px;
    object-fit: cover;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 15px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.navbar {
    padding: 20px 0;
    background: rgba(255,255,255,0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* New Reviews Style */
.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 1rem;
    position: relative;
    overflow: hidden;
}

.client-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.star-rating {
    padding: 0.5rem 1rem;
    background: rgba(255,215,0,0.1);
    border-radius: 2rem;
    margin: 1rem 0;
}

.star-rating .bi {
    font-size: 1.5rem;
    color: var(--star-color);
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.testimonial-text::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -1.5rem;
    color: var(--accent-color);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .client-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .section-title {
        font-size: 2rem;
    }
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin: 1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ECC94B" opacity="0.1"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-avatar:hover {
    transform: rotate(5deg) scale(1.05);
}

.star-rating {
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(255,215,0,0.1);
    border-radius: 2rem;
    margin: 1rem 0;
}

.star-rating .bi {
    font-size: 2rem;
    color: var(--star-color);
    margin: 0 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.star-rating .bi:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-color);
    position: relative;
    padding-left: 2rem;
    z-index: 1;
}

.testimonial-text::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -1.5rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0,0,0,0.1);
    border-radius: 50px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}

.section-header {
    position: relative;
    padding-bottom: 2rem;
}

.section-header::after {
    content: "★★★★★";
    color: var(--star-color);
    opacity: 0.2;
    font-size: 3rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .client-avatar {
        width: 120px;
        height: 120px;
    }

    .star-rating .bi {
        font-size: 1.5rem;
    }
}

.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.card-header {
    position: relative;
}

.card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.details p {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-book {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book:hover {
    background: var(--accent-color);
}

.nav-pills .nav-link {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 0 0.5rem;
    border-radius: 30px;
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: white !important;
}

.fa-hotel {
    color: var(--primary-color);
}
/* Añade esto al final de tu CSS */
#multi-day .experience-card {
    margin-bottom: 0 !important; /* Elimina el margen extra */
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
}

#multi-day .row.g-4 {
    margin-bottom: 3rem;
}

#multi-day .card-img {
    height: 250px; /* Altura consistente con otros tours */
}

#multi-day .btn-book {
    padding: 0.5rem 1.2rem; /* Ajuste para texto más largo */
}
/* Agrega al final de tu CSS */
#things-to-do .tab-content > .tab-pane {
    padding: 1rem 0;
}

#multi-day .experience-card {
    margin-bottom: 1.5rem; /* Igual que otras cards */
}

/* Elimina estas reglas específicas que tenías antes */
#multi-day .experience-card {
    margin-bottom: 0 !important;
}
#multi-day .row.g-4 {
    margin-bottom: 3rem;
}

.badge.coming-soon {
    background: #6c757d;
}
/* Añade esto al final de tu CSS */
#things-to-do .tab-content {
    padding-bottom: 0;
}

#things-to-do .container {
    padding-bottom: 1rem;
}
