/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variables CSS - Colores inspirados en Costa Rica */
:root {
    --primary-color: #1a4b3a; /* Verde profundo de los bosques */
    --secondary-color: #2196F3; /* Azul del océano */
    --accent-color: #FF6B35; /* Naranja del atardecer tropical */
    --nature-green: #27AE60; /* Verde vibrante de la naturaleza */
    --costa-blue: #0277BD; /* Azul Costa Rica */
    --text-color: #2c3e50;
    --light-bg: #f8fffe;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #27AE60 0%, #2196F3 50%, #1a4b3a 100%);
    --costa-gradient: linear-gradient(135deg, #1a4b3a 0%, #27AE60 50%, #2196F3 100%);
    --shadow: 0 10px 30px rgba(26, 75, 58, 0.15);
}

/* Navegación - Nueva y Simple */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    color: var(--nature-green);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--nature-green);
    transition: all 0.3s ease;
}

.nav-logo a:hover .nav-logo-img {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--nature-green);
    background: rgba(39, 174, 96, 0.1);
}

.nav-link.active {
    color: var(--nature-green);
    background: rgba(39, 174, 96, 0.1);
}

.nav-cta .nav-link {
    background: var(--nature-green);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta .nav-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-logo a {
        font-size: 1.3rem;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
}

/* Logo Modal - Simple y Funcional */
.logo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.logo-modal-content {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.logo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo-modal-close:hover {
    color: var(--primary-color);
}

.logo-modal-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto;
    border: 4px solid var(--nature-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.logo-modal-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 15px 0 8px 0;
    font-weight: 700;
}

.logo-modal-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .logo-modal-content {
        margin: 20% auto;
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .logo-modal-img {
        width: 120px;
        height: 120px;
    }
    
    .logo-modal-text h3 {
        font-size: 1.3rem;
    }
    
    .logo-modal-text p {
        font-size: 0.8rem;
    }
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
    background: var(--primary-color);
}

/* Menú móvil */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 0 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 4px 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    animation: titleSlideUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 2px 2px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: subtitleFadeIn 1s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: featuresFadeIn 1s ease-out 0.9s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.hero-feature i {
    font-size: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover i {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: ctaSlideUp 1s ease-out 1.2s both;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e55a2b 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-primary::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;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite, fadeInDelay 1s ease-out 2s both;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

/* Experience Section */
.experience-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(39,174,96,0.05)"/><stop offset="100%" style="stop-color:rgba(33,150,243,0.03)"/></linearGradient></defs><polygon fill="url(%23grad)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    text-transform: lowercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--costa-gradient);
    border-radius: 2px;
}

.experience-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: gridSlideIn 0.8s ease-out forwards;
}

.top-row {
    animation-delay: 0.2s;
}

.bottom-row {
    animation-delay: 0.6s;
}

.experience-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(26, 75, 58, 0.2);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 550px;
    height: 350px;
}

.experience-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(26, 75, 58, 0.3);
}

.left-image {
    justify-self: start;
}

.right-image {
    justify-self: end;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.experience-image:hover img {
    transform: scale(1.05);
}

.experience-text {
    display: flex;
    align-items: center;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    text-align: justify;
    margin: 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.experience-text p:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.right-text {
    justify-self: end;
}

.left-text {
    justify-self: start;
}

.right-text p::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50px;
    background: var(--nature-green);
    border-radius: 2px;
}

.left-text p::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50px;
    background: var(--costa-blue);
    border-radius: 2px;
}

/* Experience CTA Button */
.experience-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: ctaFadeIn 0.8s ease-out 1s forwards;
}

.know-more-button {
    background: var(--costa-gradient);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(26, 75, 58, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.know-more-button::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;
}

.know-more-button:hover::before {
    left: 100%;
}

.know-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 75, 58, 0.4);
    background: linear-gradient(135deg, var(--nature-green) 0%, var(--costa-blue) 100%);
}

.know-more-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.know-more-button:hover i {
    transform: scale(1.1);
}

/* Contenido Principal */
.main-content {
    min-height: 20vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Animaciones para Experience */
@keyframes gridSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animaciones */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes featuresFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDelay {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== ABOUT ME PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    height: 60vh;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.about-hero-content h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.about-hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* About Content Section */
.about-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.about-main-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 75, 58, 0.2);
}

.image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--costa-gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(26, 75, 58, 0.3);
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nature-green);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Credentials Section */
.credentials-section {
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.credentials-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.credential-icon {
    font-size: 2.5rem;
    color: var(--nature-green);
    margin-bottom: 1rem;
}

.credential-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.credential-info p {
    color: var(--text-color);
    line-height: 1.5;
}

/* Timeline Section */
.experience-timeline {
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.experience-timeline h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--costa-gradient);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    background: var(--nature-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Passion Section */
.passion-section {
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.passion-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.passion-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.passion-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.specialties {
    background: rgba(39, 174, 96, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--nature-green);
    margin-top: 2rem;
}

.specialties h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.specialties ul {
    list-style: none;
    padding: 0;
}

.specialties li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
}

.specialties i {
    color: var(--nature-green);
    font-size: 0.9rem;
}

.passion-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 75, 58, 0.2);
}

/* Commitment Section */
.commitment-section {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.commitment-box {
    background: var(--costa-gradient);
    padding: 4rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.commitment-box h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.commitment-item {
    text-align: center;
}

.commitment-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.commitment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Back to Home */
.back-to-home {
    text-align: center;
    margin-top: 4rem;
}

.back-button {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

/* Active nav link */
.nav-link.active {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    text-shadow: none;
}

/* Responsive About Me */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        margin-top: 60px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .intro-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .intro-image img {
        height: 300px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: -90px;
        flex: 0 0 60px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0;
    }

    .passion-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .commitment-box {
        padding: 2.5rem 1.5rem;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Estilos para contenido futuro - mantener para cuando agregues secciones */

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        color: var(--primary-color);
        text-shadow: none;
        font-weight: 600;
    }

    .nav-menu .nav-link:hover {
        color: #ffffff;
        background: var(--primary-color);
        text-shadow: none;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Media query adicional para dispositivos móviles */
@media (max-width: 480px) {
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo a {
        font-size: 1.4rem;
        gap: 0.5rem;
    }
    
    .nav-logo-img {
        height: 28px;
        width: 28px;
        max-height: 28px;
        max-width: 28px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .nav-container {
        padding: 1rem;
    }

    /* Hero responsive */
    .hero-section {
        background-attachment: scroll; /* Fix para móviles */
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-features {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-feature {
        font-size: 0.8rem;
        min-width: 80px;
    }

    .hero-feature i {
        font-size: 1.2rem;
        padding: 0.6rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none; /* Ocultar en móvil */
    }

    /* Experience responsive */
    .experience-section {
        padding: 4rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .experience-grid {
        gap: 3rem;
        padding: 0 1rem;
    }

    .grid-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .experience-image {
        justify-self: center !important;
        width: 100%;
        max-width: 500px;
        height: 280px;
    }

    .experience-text {
        justify-self: center !important;
        width: 100%;
    }

    .experience-text p {
        font-size: 1rem;
        padding: 1.8rem;
        text-align: left;
    }

    .right-text p::before,
    .left-text p::before {
        display: none;
    }

    /* Experience CTA responsive */
    .experience-cta {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .know-more-button {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .tours-section h2,
    .about-text h2,
    .gallery-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Experience mobile */
    .experience-grid {
        gap: 2rem;
    }

    .grid-row {
        gap: 1.5rem;
    }

    .experience-text p {
        font-size: 0.95rem;
        padding: 1.5rem;
    }

    .experience-image {
        max-width: 100%;
        height: 250px;
    }

    /* Experience CTA mobile */
    .experience-cta {
        margin-top: 2rem;
    }

    .know-more-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }
}

/* Responsive para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .experience-grid {
        gap: 3rem;
    }

    .grid-row {
        gap: 2.5rem;
    }

    .experience-image {
        width: 100%;
        max-width: 480px;
        height: 300px;
    }

    .experience-text p {
        font-size: 1rem;
        padding: 2rem;
    }
}

/* ===== TOURS SECTION STYLES ===== */

/* Tours Section */
.tours-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.tours-section .container {
    max-width: 1400px;
    padding: 0 1rem;
}

.tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(33,150,243,0.03)"/><stop offset="100%" style="stop-color:rgba(39,174,96,0.05)"/></linearGradient></defs><polygon fill="url(%23grad2)" points="1000,0 0,200 0,1000 1000,800"/></svg>');
    pointer-events: none;
}

.tours-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.tours-title-area {
    flex: 1;
}

.tours-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.view-all-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(26, 75, 58, 0.2);
}

.view-all-button:hover {
    background: var(--nature-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 75, 58, 0.3);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.tour-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    padding: 0.5rem;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tour-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 75, 58, 0.3);
}

/* ===== TOURS PAGE STYLES ===== */

/* Tours Hero Section */
.tours-hero {
    height: 60vh;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.tours-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tours-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.tours-hero-content h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.tours-hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Tours Content Section */
.tours-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.tours-content-section .container {
    max-width: 1400px;
    padding: 0 1rem;
}

.tours-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.tours-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tours-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.tours-detailed-grid {
    display: grid;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tour-detailed-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    max-width: 100%;
}

.tour-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tour-detailed-card:nth-child(even) {
    grid-template-columns: 1fr 450px;
}

.tour-detailed-card:nth-child(even) .tour-detailed-image {
    order: 2;
}

.tour-detailed-card:nth-child(even) .tour-detailed-content {
    order: 1;
}

.tour-detailed-image {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    padding: 0.5rem;
}

.tour-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tour-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--costa-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-detailed-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tour-detailed-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.tour-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(39, 174, 96, 0.1);
    color: var(--nature-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 0.8rem;
}

.tour-includes {
    background: rgba(33, 150, 243, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--costa-blue);
    margin-bottom: 2rem;
}

.tour-includes h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tour-includes p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

/* Transportation Info Section */
.transportation-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--nature-green) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 15px 40px rgba(26, 75, 58, 0.2);
}

.transportation-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.transportation-info > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.transport-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.transport-locations h3,
.transport-pricing h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.transport-locations ul {
    list-style: none;
    padding: 0;
}

.transport-locations li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
}

.transport-locations i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.price-structure {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.transport-note {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

/* Transport Pricing Details */
.transport-pricing-details {
    background: rgba(26, 75, 58, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.transport-pricing-details h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.base-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 75, 58, 0.2);
}

.transport-prices {
    font-size: 0.9rem;
}

.transport-prices p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.transport-prices ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
}

.transport-prices li {
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.transport-prices-special {
    font-size: 0.9rem;
    color: var(--text-color);
}

.transport-prices-special p {
    margin-bottom: 0.5rem;
}

.total-price {
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

.transport-note-single {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
}

.tour-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.price-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.book-now-btn {
    background: var(--costa-gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 75, 58, 0.3);
}

/* Responsive Tours */
@media (max-width: 768px) {
    .tours-section {
        padding: 4rem 0;
    }

    .tours-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-card {
        max-width: 100%;
    }

    .tours-hero {
        height: 50vh;
        margin-top: 60px;
    }

    .tour-detailed-card {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .tour-detailed-card:nth-child(even) .tour-detailed-image,
    .tour-detailed-card:nth-child(even) .tour-detailed-content {
        order: initial;
    }

    .tour-detailed-image {
        height: 250px;
    }

    .tour-features {
        justify-content: center;
    }

    .tour-price {
        flex-direction: column;
        gap: 1rem;
    }

    .transportation-info {
        padding: 2.5rem 1.5rem;
        margin: 3rem 0;
    }
    
    .tour-detailed-content h2 {
        font-size: 1.8rem;
    }
    
    .tour-pricing-details {
        padding: 1.5rem;
    }
    
    .tour-pricing-details h4 {
        font-size: 1.2rem;
    }
}

/* Responsive Tours - Pantallas muy pequeñas */
@media (max-width: 480px) {
    .tour-detailed-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .tour-detailed-image {
        height: 200px;
    }
    
    .tour-detailed-content h2 {
        font-size: 1.5rem;
    }
    
    .tour-pricing-details {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .tours-container {
        padding: 0 1rem;
    }

    .transport-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transportation-info h2 {
        font-size: 1.6rem;
    }

    .transport-locations h3,
    .transport-pricing h3 {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== GALLERY SECTION STYLES ===== */

.gallery-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad4" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(33,150,243,0.02)"/><stop offset="100%" style="stop-color:rgba(39,174,96,0.04)"/></linearGradient></defs><polygon fill="url(%23grad4)" points="1000,0 0,150 0,1000 1000,850"/></svg>');
    pointer-events: none;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 4rem;
    opacity: 0.8;
}

.gallery-collage {
    columns: 3;
    column-gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    break-inside: avoid;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery overlay removed - simplified hover effect */

/* Large screens */
@media (min-width: 1200px) {
    .gallery-collage {
        columns: 4;
        column-gap: 1.2rem;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-collage {
        columns: 2;
        column-gap: 0.8rem;
    }
    
    /* Gallery overlay removed */
}

@media (max-width: 480px) {
    .gallery-collage {
        columns: 1;
        column-gap: 0.8rem;
    }
}

/* ===== TESTIMONIALS SECTION STYLES ===== */

.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(39,174,96,0.03)"/><stop offset="100%" style="stop-color:rgba(33,150,243,0.05)"/></linearGradient></defs><polygon fill="url(%23grad3)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--nature-green);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: Georgia, serif;
}

.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--nature-green);
    opacity: 0.3;
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--nature-green);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-content p::before,
    .testimonial-content p::after {
        font-size: 2rem;
    }

    .testimonial-content p::before {
        top: -5px;
        left: -10px;
    }

    .testimonial-content p::after {
        bottom: -20px;
        right: -5px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }
}

/* ===== CONTACT SECTION STYLES ===== */

.contact-section {
    padding: 8rem 0;
    background: var(--costa-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad5" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.05)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0.02)"/></linearGradient></defs><polygon fill="url(%23grad5)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
    pointer-events: none;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    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;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item.whatsapp-link,
.contact-item.phone-link,
.contact-item.email-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-item.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
}

.contact-item.phone-link:hover {
    background: rgba(33, 150, 243, 0.2);
}

.contact-item.email-link:hover {
    background: rgba(255, 107, 53, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(26, 75, 58, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nature-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Estilos para el campo de archivo */
.form-group input[type="file"] {
    border: 2px dashed rgba(26, 75, 58, 0.3);
    background: rgba(248, 255, 254, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.form-group input[type="file"]:hover {
    border-color: var(--nature-green);
    background: rgba(39, 174, 96, 0.05);
    transform: translateY(-2px);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--nature-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.file-help-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-style: italic;
}

.file-help-text i {
    color: var(--nature-green);
    font-size: 0.9rem;
}

/* Estilos para la sección de información de pago */
.payment-info-section {
    background: linear-gradient(135deg, rgba(26, 75, 58, 0.05) 0%, rgba(39, 174, 96, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 1px solid rgba(26, 75, 58, 0.1);
}

.payment-info-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-info-section > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.payment-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 75, 58, 0.1);
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(26, 75, 58, 0.1);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.paypal-method .payment-icon {
    background: linear-gradient(135deg, #0070ba, #003087);
}

.bank-method .payment-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--nature-green));
}

.payment-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.payment-details p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.paypal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0070ba;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 112, 186, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 112, 186, 0.2);
}

.paypal-link:hover {
    background: rgba(0, 112, 186, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.2);
}

.bank-info {
    background: rgba(248, 255, 254, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--nature-green);
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 75, 58, 0.1);
}

.bank-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.detail-value {
    font-weight: 500;
    color: #333;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.payment-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

.payment-reminder {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reminder-icon {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.reminder-text {
    color: #666;
    line-height: 1.5;
}

.reminder-text strong {
    color: var(--primary-color);
}

/* Estilos para sección de ATV combos */
.tours-section-header {
    text-align: center;
    margin: 4rem 0 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 75, 58, 0.05) 0%, rgba(39, 174, 96, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(26, 75, 58, 0.1);
}

.tours-section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tours-section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Estilos para horarios de tours */
.tour-schedule {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(248, 255, 254, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--nature-green);
}

.tour-schedule h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.schedule-times {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-slot {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--nature-green);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.time-slot i {
    font-size: 0.9rem;
}

/* Estilos para el logo del footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-logo h3 {
    margin: 0;
    color: #ffffff;
}

/* Estilos para alertas del formulario */
.form-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-alert.success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.form-alert.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.form-alert i {
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn {
    background: var(--costa-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    width: 100%;
    box-shadow: 0 8px 25px rgba(26, 75, 58, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 75, 58, 0.4);
    background: linear-gradient(135deg, var(--nature-green) 0%, var(--costa-blue) 100%);
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
        order: 2;
    }

    .contact-info {
        order: 1;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Estilos responsivos para campo de archivo */
    .form-group input[type="file"] {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .file-help-text {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    /* Estilos responsivos para información de pago */
    .payment-info-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .payment-info-section h3 {
        font-size: 1.5rem;
    }

    .payment-info-section > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .payment-method {
        padding: 1.5rem;
    }

    .payment-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .payment-header h4 {
        font-size: 1.1rem;
    }

    .bank-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.8rem 0;
    }

    .detail-label, .detail-value {
        font-size: 0.9rem;
    }

    .paypal-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }

    .payment-reminder {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    /* Estilos responsivos para ATV combos */
    .tours-section-header {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .tours-section-header h2 {
        font-size: 2rem;
    }

    .tours-section-header p {
        font-size: 1rem;
    }

    .tour-schedule {
        padding: 1rem;
        margin: 1rem 0;
    }

    .schedule-times {
        justify-content: center;
        gap: 0.8rem;
    }

    .time-slot {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== FOOTER STYLES ===== */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--nature-green);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--nature-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Estilos para elementos cuando están siendo cargados */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.7), rgba(44, 85, 48, 0.7)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.gallery-hero-overlay {
    width: 100%;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.gallery-hero .hero-cta {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.gallery-hero .hero-cta:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.gallery-content-section {
    padding: 4rem 0;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.gallery-intro h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.gallery-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.gallery-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.gallery-cta h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.gallery-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gallery-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero-content p {
        font-size: 1.1rem;
    }
    
    .gallery-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.8)), url('assets/images/fondo contact us.jpeg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.contact-hero-overlay {
    width: 100%;
}

.contact-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-hero .hero-cta:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-content-section {
    padding: 5rem 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.contact-intro h2 {
    color: #2c5530;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info h3, .contact-form h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.contact-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #333;
}

.contact-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.contact-form form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.checkbox-group {
    margin-bottom: 2rem !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555 !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #4CAF50;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.terms-link:hover {
    border-bottom-color: #4CAF50;
}

.contact-features {
    text-align: center;
    margin-top: 4rem;
}

.contact-features h3 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-icon i {
    font-size: 1.8rem;
}

.feature-item h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.phone-link:hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb) !important;
}

.email-link:hover {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7) !important;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9) !important;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-intro h2 {
        font-size: 2.2rem;
    }
    
    .contact-features h3 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form form {
        padding: 1.5rem;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.85), rgba(44, 85, 48, 0.85)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.terms-hero-overlay {
    width: 100%;
}

.terms-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.terms-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.terms-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.terms-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
}

.terms-content-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.terms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.terms-intro h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
}

.terms-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
}

.terms-icon i {
    font-size: 2rem;
}

.terms-text {
    flex: 1;
}

.terms-text h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.5rem;
}

.terms-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.terms-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.terms-item.warning {
    border-left-color: #ff9800;
    background: #fff3e0;
}

.terms-item.important {
    border-left-color: #f44336;
    background: #ffebee;
}

.terms-item h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-item h5 {
    color: #2c5530;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-item p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.terms-item ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.terms-item li {
    margin-bottom: 0.3rem;
    color: #555;
}

.email-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

.circumstances-list {
    margin-top: 1rem;
}

.circumstance-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.contact-methods {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.natural-disasters {
    margin-top: 1rem;
}

.disasters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.disaster-item {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #e65100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.disaster-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
}

.disaster-item i {
    font-size: 1.1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 600;
}

.contact-method:hover {
    background: #45a049;
}

.terms-summary {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 3rem;
    text-align: center;
}

.terms-summary h3 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.summary-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
}

.summary-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.summary-icon i {
    font-size: 1.5rem;
}

.summary-item h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.summary-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 968px) {
    .terms-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .terms-icon {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero-content p {
        font-size: 1.1rem;
    }
    
    .terms-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .terms-intro {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .terms-intro h2 {
        font-size: 2rem;
    }
    
    .terms-section {
        padding: 1.5rem;
    }
    
    .terms-text h3 {
        font-size: 1.6rem;
    }
    
    .terms-summary {
        padding: 2rem;
    }
    
    .terms-summary h3 {
        font-size: 1.8rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .disasters-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .disaster-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
    animation: slideIn 0.3s ease;
    text-align: center;
}

.lightbox-close {
    color: #aaa;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #fff;
    text-decoration: none;
}

#lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0 auto;
}

#lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    background: rgba(0,0,0,0.7);
    margin-top: 10px;
    border-radius: 8px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-60%);
        opacity: 0;
    }
    to { 
        transform: translateY(-50%);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        padding: 20px;
    }
    
    .lightbox-close {
        top: -50px;
        font-size: 35px;
    }
    
    #lightbox-caption {
        font-size: 1rem;
        padding: 10px;
    }
}
