/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e1e;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Paleta de colores de la selva */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c59;
    --accent-green: #6db33f;
    --light-green: #8bc34a;
    --jungle-brown: #8b4513;
    --river-blue: #1e90ff;
    --sunset-orange: #ff6b35;
    --golden-yellow: #ffd700;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--golden-yellow);
}

.company-info h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.slogan {
    color: var(--golden-yellow);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 300;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}

.phone i {
    color: var(--golden-yellow);
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--sunset-orange);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--golden-yellow);
    transform: translateY(-2px);
}

.language-selector select {
    background: var(--white);
    border: 2px solid var(--accent-green);
    padding: 8px 12px;
    border-radius: 25px;
    font-weight: 500;
    color: var(--primary-green);
}

.search-box {
    display: flex;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-box input {
    padding: 10px 15px;
    border: none;
    outline: none;
    width: 200px;
}

.search-box button {
    background: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: var(--secondary-green);
}

.cart {
    position: relative;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart:hover {
    color: var(--golden-yellow);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--sunset-orange);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Navegación */
.navbar {
    background: var(--accent-green);
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-green);
    color: var(--golden-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sección Hero */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
}

.slide {
    position: relative;
    height: 70vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.7), rgba(74, 124, 89, 0.5));
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 20px;
    padding-bottom: 40px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-primary {
    background: linear-gradient(45deg, var(--sunset-orange), var(--golden-yellow));
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Slick Carousel personalización */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: var(--golden-yellow);
    opacity: 1;
}

.slick-prev,
.slick-next {
    z-index: 4;
    width: 50px;
    height: 50px;
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Tours Populares */
.popular-tours {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-info {
    padding: 25px;
}

.tour-info h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.tour-info p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-green);
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sunset-orange);
}

.btn-secondary {
    background: var(--accent-green);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
}

.btn-secondary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Asegurar visibilidad constante del botón en tour-cards */
.tour-card .btn-secondary {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
    margin-top: 15px;
}

.tour-card:hover .btn-secondary {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-2px);
}

/* Por qué elegirnos */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.why-choose-us .section-header h2 {
    color: var(--white);
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--golden-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-green);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--golden-yellow);
}

.feature p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Experiencias Amazónicas */
.amazon-experiences {
    padding: 80px 0;
    background: var(--light-gray);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    height: 600px;
}

.experience-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-card.large {
    grid-column: span 6;
    grid-row: span 2;
}

.experience-card:not(.large) {
    grid-column: span 3;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.8), rgba(74, 124, 89, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-overlay {
    opacity: 1;
}

.experience-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.experience-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.experience-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* Comentarios TripAdvisor */
.tripadvisor-reviews {
    padding: 80px 0;
    background: var(--white);
}

.tripadvisor-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tripadvisor-logo {
    height: 60px;
    width: auto;
}

.rating-info {
    text-align: left;
}

.stars {
    color: #00aa6c;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating-text {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #00aa6c;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 600;
}

.reviewer-location {
    color: var(--dark-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

.review-stars {
    color: #00aa6c;
    margin-top: 5px;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.review-date {
    color: var(--secondary-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.tripadvisor-cta {
    text-align: center;
}

.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #00aa6c;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 170, 108, 0.3);
}

.btn-tripadvisor:hover {
    background: #008855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 170, 108, 0.4);
}

.btn-tripadvisor img {
    height: 25px;
    width: auto;
}

/* Ubicación y Mapa */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.location-section .section-header h2 {
    color: var(--white);
}

.location-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--golden-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.location-details h3 {
    color: var(--golden-yellow);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.location-details p {
    line-height: 1.6;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-contact:hover {
    background: var(--golden-yellow);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-contact.whatsapp {
    background: #25d366;
}

.btn-contact.whatsapp:hover {
    background: #128c7e;
    color: var(--white);
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.map-button:hover {
    background: var(--golden-yellow);
    transform: translateY(-2px);
}

/* Información Turística */
.tourism-info {
    padding: 80px 0;
    background: var(--light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alertas personalizadas */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 300px;
}

.custom-alert.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-alert.alert-success {
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
}

.custom-alert.alert-error {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.custom-alert.alert-warning {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.custom-alert.alert-info {
    background: linear-gradient(45deg, var(--river-blue), #3498db);
}

.alert-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animaciones de entrada para elementos */
.tour-card,
.feature {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.tour-card.animate-in,
.feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animación del carrito */
.cart-bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Contador del carrito */
.cart-count {
    transition: all 0.3s ease;
}

.cart-count.has-items {
    background: var(--sunset-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Header con scroll */
.header.scrolled {
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Efectos de hover mejorados */
.tour-card {
    position: relative;
    overflow: hidden;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.tour-card:hover::before {
    left: 100%;
}

/* Imagen de carga lazy */
img[data-src] {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

img.loaded {
    filter: blur(0);
}

/* Mejoras en la navegación activa */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--golden-yellow);
    border-radius: 2px;
}

/* Tema oscuro */
.dark-theme {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.dark-theme .header {
    background: linear-gradient(135deg, #1a2311, #2a3a1a);
}

.dark-theme .navbar {
    background: #2a3a1a;
}

.dark-theme .popular-tours {
    background: #2a2a2a;
}

.dark-theme .tour-card {
    background: #333333;
    color: #e0e0e0;
}

.dark-theme .footer {
    background: #1a1a1a;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Tooltip personalizado */
.custom-tooltip {
    position: absolute;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    z-index: 10000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    max-width: 200px;
    text-align: center;
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--dark-gray);
}

/* Contador animado */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sunset-orange);
    display: block;
}

/* Mejoras en efectos hover */
.info-card:hover .info-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Efecto de carga para el mapa */
.map-container::before {
    content: 'Cargando mapa...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    z-index: 5;
    font-weight: 600;
    color: var(--primary-green);
}

.map-container iframe {
    opacity: 0;
    transition: opacity 1s ease;
}

.map-container iframe[src] {
    opacity: 1;
}

/* Animación de entrada escalonada */
.review-card {
    animation-delay: calc(var(--index) * 0.1s);
}

.info-card {
    animation-delay: calc(var(--index) * 0.15s);
}

/* Efectos de hover mejorados para experiencias */
.experience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--sunset-orange), var(--golden-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.experience-card:hover::after {
    opacity: 0.1;
}

/* Utilidades de display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Utilidades de posición */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

/* Utilidades de texto */
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.font-weight-normal { font-weight: 400; }
.font-weight-bold { font-weight: 700; }

/* ========================================
   SECCIÓN DE TODOS LOS TOURS
======================================== */

.all-tours-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Filtros de Tours */
.tour-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--accent-green);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 179, 63, 0.3);
}

/* Grid de Tours 3x5 */
.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Tour Item */
.tour-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.tour-item:nth-child(1) { animation-delay: 0.1s; }
.tour-item:nth-child(2) { animation-delay: 0.2s; }
.tour-item:nth-child(3) { animation-delay: 0.3s; }
.tour-item:nth-child(4) { animation-delay: 0.4s; }
.tour-item:nth-child(5) { animation-delay: 0.5s; }
.tour-item:nth-child(6) { animation-delay: 0.6s; }
.tour-item:nth-child(7) { animation-delay: 0.7s; }
.tour-item:nth-child(8) { animation-delay: 0.8s; }
.tour-item:nth-child(9) { animation-delay: 0.9s; }
.tour-item:nth-child(10) { animation-delay: 1.0s; }
.tour-item:nth-child(11) { animation-delay: 1.1s; }
.tour-item:nth-child(12) { animation-delay: 1.2s; }
.tour-item:nth-child(13) { animation-delay: 1.3s; }
.tour-item:nth-child(14) { animation-delay: 1.4s; }
.tour-item:nth-child(15) { animation-delay: 1.5s; }

.tour-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Imagen del Tour */
.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-item:hover .tour-image img {
    transform: scale(1.1);
}

/* Badges de Tour */
.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.tour-badge span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.badge-popular {
    background: linear-gradient(45deg, var(--sunset-orange), #ff8c42);
    color: var(--white);
}

.badge-new {
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    color: var(--white);
}

.badge-extreme {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: var(--white);
}

.badge-premium {
    background: linear-gradient(45deg, var(--golden-yellow), #f39c12);
    color: var(--primary-green);
}

/* Overlay de Acciones */
.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.8), rgba(74, 124, 89, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.tour-item:hover .tour-overlay {
    opacity: 1;
}

.tour-actions {
    display: flex;
    gap: 15px;
}

.tour-actions button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tour-actions button:hover {
    background: var(--golden-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Contenido del Tour */
.tour-content {
    padding: 25px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-green);
    font-weight: 500;
    font-size: 0.9rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.tour-rating span {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 5px;
}

.tour-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.tour-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Características del Tour */
.tour-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--secondary-green);
    background: rgba(109, 179, 63, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.tour-features i {
    font-size: 0.8rem;
}

/* Precios del Tour */
.tour-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-original {
    color: var(--dark-gray);
    text-decoration: line-through;
    font-size: 1rem;
    opacity: 0.7;
}

.price-current {
    color: var(--sunset-orange);
    font-size: 1.8rem;
    font-weight: 700;
}

.price-savings {
    background: var(--accent-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Botón de Reserva */
.btn-book-tour {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book-tour:hover {
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 179, 63, 0.3);
}

/* Botones de Tours */
.tour-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-details {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2c5f41, #4a7c59);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-details:hover {
    background: linear-gradient(135deg, #1a3d2b, #2c5f41);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 65, 0.3);
}

.tour-buttons .btn-book-tour {
    flex: 1.2;
    margin-top: 0;
}

/* Modales */
.tour-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px 20px 0 0;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #d32f2f;
}

.modal-header {
    padding: 20px 30px 15px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffd700;
}

.modal-rating span {
    color: #666;
    margin-left: 10px;
    font-weight: 500;
}

.modal-body {
    padding: 0 30px 20px;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-section h3 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.info-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.itinerary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.day {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.day h4 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 8px;
}

.day ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.day li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.day li:last-child {
    border-bottom: none;
}

.includes-list,
.bring-list,
.avoid-list,
.recommendations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.includes-list li,
.bring-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.includes-list li:before,
.bring-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.avoid-list li,
.recommendations li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.avoid-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.recommendations li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
}

.modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 15px 15px;
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-price .price-original {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.modal-price .price-current {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.btn-book-modal {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-color), #e65100);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-modal:hover {
    background: linear-gradient(135deg, #e65100, #d84315);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

/* Footer mejorado */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.terms-link,
.privacy-link {
    color: green;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-link:hover,
.privacy-link:hover {
    color: red;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.terms-link i,
.privacy-link i {
    font-size: 0.8rem;
}

/* Sección Ver Más */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    background: var(--white);
    color: var(--primary-green);
    border: 3px solid var(--accent-green);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109, 179, 63, 0.3);
}

.tours-info {
    margin-top: 15px;
    color: var(--secondary-green);
    font-weight: 500;
    font-style: italic;
}

/* Efectos de filtrado */
.tour-item.hidden {
    display: none;
}

.tour-item.fade-out {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.tour-item.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* ========================================
   PÁGINA DE TOURS - ESTILOS ESPECÍFICOS
======================================== */

/* Hero Section para Tours */
.tours-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.tours-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tours-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(74, 124, 89, 0.6));
    z-index: 2;
}

.tours-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

/* Estadísticas del Hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sección de información adicional */
.tours-info-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid rgba(109, 179, 63, 0.2);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card-tour {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card-tour:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--accent-green);
}

.info-card-tour .info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(109, 179, 63, 0.3);
}

.info-card-tour h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card-tour p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1rem;
}


/* =============================================
   ESTILOS PARA PÁGINAS ESPECÍFICAS
   ============================================= */

/* ===== HERO SECTION PARA PÁGINAS INTERNAS ===== */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ===== ESTILOS PARA CONTACTO ===== */
.contact-main {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-cards {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-contact.primary {
    background: var(--primary-green);
    color: white;
}

.btn-contact.whatsapp {
    background: #25d366;
    color: white;
}

.btn-contact.email {
    background: var(--river-blue);
    color: white;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Formulario de contacto */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-green);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109, 179, 63, 0.4);
}

/* Mapa de contacto */
.contact-map {
    padding: 80px 0;
    background: white;
}

.contact-map h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-button {
    background: var(--primary-green);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Métodos de contacto alternativos */
.alternative-contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.alternative-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.method-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.method-link {
    background: var(--primary-green);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-link:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* ===== ESTILOS PARA PREGUNTAS FRECUENTES ===== */
.faq-search {
    padding: 60px 0;
    background: white;
}

.search-faq {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-faq input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid var(--accent-green);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
}

.search-faq button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-green);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-faq button:hover {
    background: var(--light-green);
}

.faq-categories {
    padding: 40px 0;
    background: var(--light-gray);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--accent-green);
    color: white;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e8f5e8;
}

.faq-question h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    flex: 1;
    margin: 0;
}

.faq-question i {
    color: var(--accent-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 1000px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.faq-contact {
    margin-top: 60px;
    text-align: center;
}

.faq-contact .contact-card {
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    display: block;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results i {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* ===== ESTILOS PARA GALERÍA ===== */
.gallery-filters {
    padding: 60px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-green);
    color: white;
}

.main-gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.view-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
}

/* Modal de imagen */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1001;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: white;
    transform: scale(1.1);
}

.modal-image-container {
    position: relative;
}

.modal-image-container img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.nav-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.prev-btn {
    margin-right: auto;
}

.next-btn {
    margin-left: auto;
}

.modal-info {
    padding: 30px;
}

.modal-info h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-info p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.btn-download,
.btn-share {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download {
    background: var(--accent-green);
    color: white;
}

.btn-share {
    background: var(--river-blue);
    color: white;
}

.btn-download:hover,
.btn-share:hover {
    transform: translateY(-2px);
}

/* Estadísticas de galería */
.gallery-stats {
    padding: 80px 0;
    background: var(--primary-green);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CTA de galería */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== ESTILOS PARA NOSOTROS ===== */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.story-text .section-header p {
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-bottom: 30px;
}

.story-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-caption {
    margin-top: 15px;
    text-align: center;
}

.image-caption p {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Misión y Visión */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mv-card ul {
    text-align: left;
    padding-left: 20px;
}

.mv-card li {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

/* Nuestro Equipo */
.our-team {
    padding: 80px 0;
    background: white;
}

.our-team .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-team .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.our-team .section-header p {
    font-size: 1.2rem;
    color: var(--accent-green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay .social-links {
    display: flex;
    gap: 15px;
}

.member-overlay .social-links a {
    background: white;
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-overlay .social-links a:hover {
    background: var(--accent-green);
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.member-role {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.member-info p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: var(--light-green);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Logros */
.achievements {
    padding: 80px 0;
    background: var(--light-gray);
}

.achievements .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.achievements .section-header p {
    font-size: 1.2rem;
    color: var(--accent-green);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--golden-yellow), var(--sunset-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.achievement-icon i {
    font-size: 2rem;
    color: white;
}

.achievement-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.achievement-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.achievement-year {
    background: var(--accent-green);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Compromiso Social */
.social-commitment {
    padding: 80px 0;
    background: white;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.commitment-text > p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.commitment-programs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.program:hover {
    transform: translateX(10px);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i {
    font-size: 1.5rem;
    color: white;
}

.program-content h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.commitment-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Testimonios del equipo */
.team-testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-testimonials .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.team-testimonials .section-header p {
    font-size: 1.2rem;
    color: var(--accent-green);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--accent-green);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA de Nosotros */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* =============================================
   RESPONSIVE PARA PÁGINAS ESPECÍFICAS
   ============================================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        text-align: center;
    }
}

/* ========================================
   ESTADO DE RESERVA STYLES
   ======================================== */

.estado-reserva-container {
    max-width: 800px;
    margin: 120px auto 40px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.icono-estado {
    font-size: 80px;
    margin-bottom: 20px;
}

.estado-pendiente { color: #ff9800; }
.estado-confirmado { color: #4caf50; }
.estado-cancelado { color: #f44336; }

.codigo-reserva {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 30px;
    padding: 15px;
    background: #fff8e1;
    border-radius: 8px;
    border: 2px dashed #ffc107;
}

.detalles-reserva {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.detalle-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.detalle-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.acciones-reserva {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-accion {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-pagar {
    background: var(--primary-green);
    color: white;
}

.btn-pagar:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-cancelar {
    background: #dc3545;
    color: white;
}

.btn-cancelar:hover {
    background: #c82333;
}

.btn-volver {
    background: #6c757d;
    color: white;
}

.btn-volver:hover {
    background: #5a6268;
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
}

.tiempo-limite {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    color: #856404;
}

.contador-tiempo {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
    margin: 10px 0;
}

.loading {
    text-align: center;
    padding: 60px 20px;
}

.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   FORMULARIO DE BÚSQUEDA DE RESERVA
   ======================================== */

.estado-reserva-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 28px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.reservation-search-form {
    text-align: left;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.1);
}

.form-help {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.help-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    text-align: center;
    margin-top: 30px;
}

.help-section p {
    margin-bottom: 10px;
    color: #555;
}

.help-section strong {
    color: var(--primary-green);
}

.btn-accion {
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.btn-accion:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* === ESTILOS ESPECÍFICOS PARA ESTADO DE RESERVA === */

/* Contenedor principal del estado de reserva */
.estado-reserva-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.estado-reserva-form {
    text-align: center;
    padding: 40px;
}

.form-header h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin-bottom: 30px;
}

.reservation-search-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-green);
    outline: none;
}

.form-help {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.help-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Estilos para mostrar reserva */
.reserva-detalle {
    padding: 20px;
}

.reserva-header {
    text-align: center;
    margin-bottom: 30px;
}

.reserva-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary-green);
}

.info-section h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-content {
    line-height: 1.6;
}

.info-content p {
    margin-bottom: 8px;
}

.estado-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.estado-confirmada { background: #e7f5e7; color: #2e7d32; }
.estado-pagada { background: #e3f2fd; color: #1976d2; }
.estado-pendiente { background: #fff3e0; color: #f57c00; }
.estado-cancelada { background: #ffebee; color: #d32f2f; }
.estado-reembolso-solicitado { background: #f3e5f5; color: #7b1fa2; }

/* Estilos para acciones disponibles */
.accion-disponible {
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accion-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accion-info i {
    font-size: 24px;
    color: var(--primary-green);
}

.accion-info h4 {
    margin: 0 0 5px 0;
    color: var(--primary-green);
}

.accion-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Botones de acción específicos */
.btn-pagar {
    background: var(--primary-green);
    color: white;
}

.btn-pagar:hover {
    background: #388e3c;
}

.btn-reembolso {
    background: #ff9800;
    color: white;
}

.btn-reembolso:hover {
    background: #f57c00;
}

.btn-secundario {
    background: #6c757d;
    color: white;
}

.btn-secundario:hover {
    background: #5a6268;
}

.btn-volver {
    background: var(--primary-green);
    color: white;
}

.btn-volver:hover {
    background: #388e3c;
}

.acciones-generales {
    text-align: center;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Modal estilos */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal form {
    padding: 20px;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.modal textarea:focus {
    border-color: var(--primary-green);
    outline: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-confirmar {
    background: var(--primary-green);
    color: white;
}

.btn-confirmar:hover {
    background: #388e3c;
}

.btn-cancelar {
    background: #6c757d;
    color: white;
}

.btn-cancelar:hover {
    background: #5a6268;
}

/* Loading y error estilos */
.loading {
    text-align: center;
    padding: 60px 20px;
}

.loading p {
    margin-top: 20px;
    font-size: 18px;
    color: #666;
}

.error {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
}

/* ===============================================
   BOTÓN FLOTANTE DE WHATSAPP
   =============================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.whatsapp-text {
    display: block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Estilos para las secciones de experiencias detalladas */
.experience-section {
    padding: 80px 0;
    background: #fff;
}

.experience-section:nth-child(even) {
    background: #f8f9fa;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-content.reverse {
    direction: rtl;
}

.experience-content.reverse > * {
    direction: ltr;
}

.experience-text {
    padding: 20px;
}

.experience-text .section-header {
    margin-bottom: 30px;
}

.experience-text .section-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.experience-text .section-header p {
    color: var(--secondary-green);
    font-size: 1.2rem;
    font-weight: 500;
}

.experience-description {
    margin-bottom: 30px;
}

.experience-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.experience-description h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    border-left: 4px solid var(--accent-green);
    padding-left: 15px;
}

.experience-description h4 {
    color: var(--secondary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.experience-list {
    list-style: none;
    margin: 20px 0;
}

.experience-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.experience-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.experience-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.experience-highlights {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
    margin-top: 30px;
}

.experience-highlights h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    min-width: 20px;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
}

.experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.experience-image:hover {
    transform: scale(1.05);
}

.experience-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.experience-image:hover .image-caption {
    transform: translateY(0);
}

.image-caption p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: var(--sunset-orange);
    color: white;
    border: 2px solid var(--sunset-orange);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--sunset-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design para secciones de experiencias */
@media (max-width: 768px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-content.reverse {
        direction: ltr;
    }
    
    .experience-text .section-header h2 {
        font-size: 2rem;
    }
    
    .experience-description p {
        font-size: 1rem;
    }
    
    .experience-image img {
        height: 300px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 40px 0;
    }
    
    .experience-text {
        padding: 10px;
    }
    
    .experience-text .section-header h2 {
        font-size: 1.8rem;
    }
    
    .experience-highlights {
        padding: 20px;
    }
    
    .highlight-item {
        padding: 12px;
    }
}

/* Efectos adicionales para botones de experiencias */
.btn-hover-effect {
    background: var(--sunset-orange) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
}

.experience-card .btn-outline {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animación de entrada para secciones */
.experience-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.experience-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Efectos de parallax para imágenes */
.experience-image {
    overflow: hidden;
}

.experience-image img {
    transition: transform 0.1s ease-out;
}

/* Efecto de destacado para secciones */
.highlight-section {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd) !important;
    box-shadow: 0 0 30px rgba(109, 179, 63, 0.3);
    border-radius: 20px;
    transform: scale(1.02);
    transition: all 0.8s ease;
}

.highlight-section .experience-text .section-header h2 {
    color: var(--accent-green);
    animation: titleGlow 2s ease-in-out;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 20px rgba(109, 179, 63, 0.6); }
}

/* Estilos para las secciones de información detallada */
.experience-detail-section {
    padding: 80px 0;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.experience-detail-text {
    padding: 20px;
    text-align: center;
}

.experience-detail-text .section-header {
    margin-bottom: 30px;
}

.experience-detail-text .section-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.experience-detail-text .section-header p {
    color: var(--secondary-green);
    font-size: 1.2rem;
    font-weight: 500;
}

.experience-description {
    margin-bottom: 30px;
}

.experience-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.experience-description h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    border-left: 4px solid var(--accent-green);
    padding-left: 15px;
}

.experience-list {
    list-style: none;
    margin: 20px 0;
}

.experience-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.experience-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.experience-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.experience-highlights {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
    margin-top: 30px;
}

.experience-highlights h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    min-width: 20px;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
}

.experience-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.experience-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Botón de regresar */
.btn-back {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
    justify-content: center;
}

.btn-back:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.btn-back i {
    font-size: 1rem;
}

/* Responsive para secciones de información detallada */
@media (max-width: 768px) {
    .experience-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-detail-text {
        padding: 10px;
    }
    
    .experience-detail-text .section-header h2 {
        font-size: 2rem;
    }
    
    .experience-description p {
        font-size: 1rem;
    }
    
    .experience-detail-image img {
        height: 300px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .experience-detail-section {
        padding: 40px 0;
    }
    
    .experience-detail-text .section-header h2 {
        font-size: 1.8rem;
    }
    
    .experience-highlights {
        padding: 20px;
    }
    
    .highlight-item {
        padding: 12px;
    }
}

/* Navegación rápida */
.quick-nav {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-nav-title {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.quick-nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--secondary-green);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-nav-link:hover {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 179, 63, 0.3);
}

.quick-nav-link i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .quick-nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .quick-nav-links {
        justify-content: center;
        gap: 10px;
    }
    
    .quick-nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
