/* ============================================
   EAGLES SHUTTLE COSTA RICA - ESTILOS GLOBALES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background-color: #f8f8f8; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    gap: 15px;
}
.logo { font-family: 'Montserrat', sans-serif; font-size: clamp(20px, 4vw, 25px); }
.logo img { width: 130px; height: auto; }
.nav-menu { display: flex; list-style: none; margin: 0; gap: 15px; flex-wrap: wrap; }
.nav-menu li { font-family: 'Montserrat', sans-serif; font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 600; cursor: pointer; transition: color 0.3s; }
.nav-menu li:hover { color: #007bff; }
.nav-right { display: flex; align-items: center; gap: 15px; }
.reserve-btn {
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 123, 255, 0.8);
    color: white;
    padding: 10px 18px;
    border-radius: 6rem;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: background 0.3s;
    white-space: nowrap;
}
.reserve-btn:hover { background: #007bff; }

/* ============================================
   HAMBURGUESA
   ============================================ */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; cursor: pointer; z-index: 1001; }
.hamburger span { height: 3px; width: 100%; background-color: white; transition: 0.3s; }
.mobile-top-right { display: none; align-items: center; gap: 15px; }
.language-selector-mobile select {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 6px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
}

/* ============================================
   MENÚ MÓVIL PANTALLA COMPLETA
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100dvh;
    max-height: 100dvh;
    background: #2a2a2a;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px 30px 40px;
    transition: left 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.mobile-menu.active { left: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.mobile-menu-close { color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-menu-list { list-style: none; margin: 0; padding: 0; flex-grow: 1; }
.mobile-menu-list li { margin-bottom: 15px; }
.mobile-menu-list a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: color 0.2s;
    border-bottom: 1px solid #444;
}
.mobile-menu-list a:hover { color: #f4a261; }
.mobile-menu-list a::after { content: '→'; font-size: 1.2rem; }
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    padding-bottom: env(safe-area-inset-bottom, 20px);
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-menu { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
    .mobile-menu-footer { padding-bottom: calc(30px + env(safe-area-inset-bottom)); }
}
.language-selector { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-size: 0.95rem; }
.language-selector select {
    background: #444; color: #fff;
    border: 1px solid #666; border-radius: 4px;
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; cursor: pointer; text-transform: uppercase;
}
.trip-planner-btn {
    background: #f4a261; color: #000;
    padding: 14px 20px; border-radius: 25px;
    font-weight: 600; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; text-align: center;
}
.trip-planner-btn::before { content: '+'; font-weight: bold; font-size: 1.2rem; }

/* ============================================
   HEADER / HERO
   ============================================ */
header {
    background: url('../img/Park-Arenal-Volcano.png') no-repeat center center/cover;
    color: #fff;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}
header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.header-container { display: flex; flex-direction: column; min-height: 80vh; }
.hero-content {
    position: relative; top: auto; left: auto; transform: none;
    text-align: center; z-index: 1; width: 100%;
    padding: 30px 0; margin-top: auto; margin-bottom: auto;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 15px; font-weight: 700; line-height: 1.2;
}
.hero-title .highlight {
    font-family: 'Dancing Script', cursive;
    color: #f4a261;
    font-size: clamp(2rem, 5.5vw, 3.8rem);
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 25px; font-style: italic; line-height: 1.5;
}
.hero-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.hero-btn, .hero-btn2 {
    font-family: 'Montserrat', sans-serif;
    padding: 12px 21px; border: 1px solid #fff;
    border-radius: 6rem; display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: clamp(0.85rem, 2vw, 1rem);
    transition: all 0.3s; white-space: nowrap;
}
.hero-btn { background: rgba(255,255,255,0.2); color: #fff; }
.hero-btn2 { background: rgba(255,255,255,0.877); color: #000000de; }
.hero-btn:hover { background: rgba(255,255,255,0.4); transform: translateY(-2px); }
.hero-btn2:hover { background: rgba(255,255,255,1); transform: translateY(-2px); }
.hero-btn::before, .hero-btn2::before { content: '▲'; font-size: 0.8rem; }
.btn-mobile-link { display: none; }
.btn-desktop-link { display: flex; }

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section { padding: 60px 20px; background: #f9f9f9; }
.experience-content {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    margin-bottom: 40px; text-align: left; gap: 20px;
}
.experience-text { flex: 1; min-width: 280px; }
.experience-text h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); color: #222; font-weight: 700; line-height: 1.3; }
.experience-text h2 span { color: #009688; }
.experience-text p { margin-top: 15px; font-size: clamp(1rem, 2vw, 1.1rem); color: #555; line-height: 1.6; }
.experience-btn { flex-shrink: 0; }
.main-btn {
    background-color: #009688; color: #fff;
    padding: 12px 28px; border-radius: 30px;
    font-weight: 600; font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block; transition: all 0.3s;
}
.main-btn:hover { background-color: #00796b; transform: translateY(-2px); }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.experience-grid .card {
    background: #fff; border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    overflow: hidden; text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 380px;
}
.experience-grid .card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.experience-grid .card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.experience-grid .card h3 { margin: 15px 0 8px; font-size: clamp(1.05rem, 2vw, 1.15rem); color: #222; padding: 0 12px; }
.experience-grid .card p { font-size: clamp(0.9rem, 1.8vw, 0.95rem); color: #555; padding: 0 15px; flex-grow: 1; margin-bottom: 12px; line-height: 1.5; }
.card-btn-wrap { text-align: center; padding: 16px; background: transparent; }
.card-btn {
    background-color: #fff; color: #222;
    padding: 10px 28px; border-radius: 28px;
    font-weight: 700; font-size: clamp(0.9rem, 2vw, 0.98rem);
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.card-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 60px 20px; background: #f0f8ff; }
.testimonials-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2rem); text-align: center; margin-bottom: 40px; font-weight: 700; color: #222; line-height: 1.4; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.testimonial { background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial:hover { transform: translateY(-5px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.testimonial img { border-radius: 50%; width: 80px; height: 80px; margin-bottom: 15px; border: 3px solid #f0f8ff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.testimonial p:first-of-type { font-family: 'Inter', sans-serif; font-size: clamp(0.95rem, 2vw, 1rem); color: #555; margin-bottom: 10px; line-height: 1.5; }
.testimonial p:last-child { font-family: 'Montserrat', sans-serif; font-size: clamp(1rem, 2vw, 1.1rem); font-weight: 600; color: #222; }

/* ============================================
   PLANNING / CTA SECTION
   ============================================ */
.planning-section {
    padding: 80px 20px;
    background: url('../img/hotels.png') no-repeat center center/cover;
    color: #fff; text-align: center; position: relative;
}
.planning-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.planning-section .container { position: relative; z-index: 1; }
.planning-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; font-weight: 700; }
.planning-subtitle { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2.5vw, 1.2rem); margin-bottom: 30px; line-height: 1.5; }
.hotels-btn {
    font-family: 'Montserrat', sans-serif;
    background: rgba(0,123,255,0.8); color: #fff;
    padding: 12px 28px; border: 1px solid #007bff;
    border-radius: 30px; font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block; transition: all 0.3s;
}
.hotels-btn:hover { background: #007bff; transform: translateY(-2px); }

/* ============================================
   TOURS SECTION
   ============================================ */
.tours-section { padding: 60px 0; background: #f9f9f9; }
.tours-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2rem); text-align: center; margin-bottom: 40px; color: #007bff; font-weight: 700; line-height: 1.4; }
.tours-experiences { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.experience-item { position: relative; border-radius: 16px; overflow: hidden; height: 320px; }
.experience-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.experience-item-content { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.65); padding: 24px 20px; color: white; }
.experience-item-content h3 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; margin-bottom: 8px; line-height: 1.3; }
.experience-item-content p { font-family: 'Inter', sans-serif; font-size: 0.95rem; opacity: 0.9; margin-bottom: 12px; }
.experience-item-content a { color: #f4a261; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }

/* ============================================
   NATURE SECTION
   ============================================ */
.nature-section { padding: 0; display: flex; align-items: stretch; background: #f0f8ff; flex-wrap: wrap; }
.nature-content { flex: 1; min-width: 300px; padding: 60px 30px; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.nature-content h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; color: #222; margin-bottom: 15px; line-height: 1.3; }
.nature-content p { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2vw, 1.1rem); color: #555; margin-bottom: 25px; line-height: 1.6; }
.nature-btn {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff; color: #3d3d3d;
    padding: 12px 28px; border-radius: 30px;
    font-weight: 600; font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s; display: inline-block;
    border: 1px solid #a5a5a5; align-self: flex-start;
}
.nature-btn:hover { background: #007bff; color: #fff; border-color: #007bff; transform: translateY(-2px); }
.nature-image {
    flex: 1; min-width: 300px;
    background: url('../img/paisaje cr.png') no-repeat center center/cover;
    min-height: 400px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section { display: flex; justify-content: space-around; padding: 50px 20px; background: #007bff; color: #fff; flex-wrap: wrap; gap: 30px; }
.stat { text-align: center; flex: 1; min-width: 150px; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem, 5vw, 3rem); font-weight: 700; }
.stat p { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2vw, 1.1rem); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: 60px 20px; background: #fff; }
.faq-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 30px; font-weight: 700; line-height: 1.3; }
.faq-list { max-width: 900px; margin: 40px auto 0; }
.faq-item { margin-bottom: 12px; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
.faq-question {
    width: 100%; padding: 16px 20px; background: #f8fafc; border: none; text-align: left;
    font-size: 1.1rem; font-weight: 600; color: #1a365d; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; transition: background 0.2s;
}
.faq-question:hover { background: #edf2f7; }
.faq-answer { padding: 0 20px 20px; background: white; color: #4a5568; line-height: 1.6; display: none; }
.faq-item.active .faq-answer { display: block; }
.arrow { font-size: 1rem; transition: transform 0.3s; }
.faq-item.active .arrow { transform: rotate(180deg); }

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section { padding: 60px 20px; background: #ffffff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; transition: transform 0.3s ease; }
.gallery-grid img:hover { transform: scale(1.05); }

/* ============================================
   WRITE SECTION
   ============================================ */
.write-section { padding: 60px 20px; text-align: center; background: #f0f8ff; }
.write-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 25px; font-weight: 700; color: #222; line-height: 1.3; }
.write-section > .container > p { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2.5vw, 1.2rem); color: #555; margin-bottom: 30px; line-height: 1.6; }
.write-btn {
    font-family: 'Montserrat', sans-serif;
    background: #007bff; color: #fff;
    padding: 12px 28px; border-radius: 30px;
    font-weight: 600; font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block; transition: all 0.3s;
}
.write-btn:hover { background: #0056b3; transform: translateY(-2px); }

/* ============================================
   CHOOSE SECTION
   ============================================ */
.choose-section { padding: 60px 20px; background: #fff; text-align: center; }
.choose-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; font-weight: 700; line-height: 1.3; }
.choose-section > .container > p { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2vw, 1.1rem); color: #555; line-height: 1.6; max-width: 800px; margin: 0 auto; }

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #007bff 0%, #00796b 100%);
    color: #fff; padding: 80px 20px 60px;
    text-align: center; position: relative;
}
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 15px; }
.page-hero p { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2.5vw, 1.2rem); opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { padding: 12px 20px; background: #f8f8f8; border-bottom: 1px solid #eee; font-size: 0.9rem; color: #555; }
.breadcrumb a { color: #007bff; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   MODALES
   ============================================ */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(10,8,5,0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-content { background: #faf8f4; border-radius: 4px; width: 96%; max-width: 980px; max-height: 92vh; overflow-y: auto; overflow-x: hidden; box-shadow: 0 40px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05); animation: modalIn 0.45s cubic-bezier(0.16,1,0.3,1); scrollbar-width: thin; scrollbar-color: #c8b89a #faf8f4; }
.modal-content::-webkit-scrollbar { width: 5px; }
.modal-content::-webkit-scrollbar-track { background: #faf8f4; }
.modal-content::-webkit-scrollbar-thumb { background: #c8b89a; border-radius: 10px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-hero { position: relative; width: 100%; height: 460px; overflow: hidden; }
.modal-hero .carousel { width: 100%; height: 100%; }
.modal-hero .carousel-slides { display: flex; width: 300%; height: 100%; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.modal-hero .carousel-slides img { width: 33.33%; height: 100%; object-fit: cover; flex-shrink: 0; filter: brightness(0.75); }
.modal-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(10,8,5,0.85) 100%); pointer-events: none; z-index: 2; }
.modal-hero-title { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 30px 40px 36px; }
.modal-hero-title h2 { font-family: 'Georgia', 'Times New Roman', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 400; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.modal-hero-title .modal-location-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-family: 'Montserrat', sans-serif; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.modal-close { position: absolute; right: 20px; top: 20px; z-index: 10; width: 40px; height: 40px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 1.3rem; font-weight: 300; line-height: 1; transition: all 0.25s; }
.modal-close:hover { background: rgba(0,0,0,0.75); transform: rotate(90deg); border-color: rgba(255,255,255,0.4); }
.carousel-prev, .carousel-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-indicators { position: absolute; bottom: 80px; right: 40px; display: flex; gap: 8px; z-index: 5; }
.carousel-indicators span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.carousel-indicators span.active { background: #fff; transform: scale(1.5); }
.modal-body { display: flex; flex-direction: column; }
.modal-price-block { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 24px 40px; background: #1a1510; border-bottom: 1px solid #2d2520; }
.modal-price-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #c8a96e; margin-bottom: 4px; }
.modal-price-destination { font-family: 'Georgia', serif; font-size: 0.95rem; color: rgba(255,255,255,0.5); }
.modal-price-right { display: flex; align-items: center; gap: 20px; }
.modal-pax-selector { display: flex; align-items: center; border: 1px solid rgba(200,169,110,0.3); border-radius: 3px; overflow: hidden; }
.pax-btn { width: 36px; height: 36px; background: rgba(200,169,110,0.1); border: none; color: #c8a96e; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-family: 'Montserrat', sans-serif; }
.pax-btn:hover { background: rgba(200,169,110,0.2); }
.pax-count { min-width: 50px; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; color: #fff; padding: 0 12px; border-left: 1px solid rgba(200,169,110,0.2); border-right: 1px solid rgba(200,169,110,0.2); line-height: 36px; }
.modal-price-display { text-align: right; }
.price-amount { display: flex; align-items: flex-start; gap: 3px; line-height: 1; }
.price-currency { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: #c8a96e; margin-top: 4px; }
.price-number { font-family: 'Georgia', serif; font-size: 2.6rem; font-weight: 400; color: #fff; letter-spacing: -0.02em; transition: all 0.3s; }
.price-per { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; color: rgba(255,255,255,0.4); text-align: right; margin-top: 3px; letter-spacing: 0.05em; }
.modal-info { padding: 40px 40px 20px; background: #faf8f4; }
.modal-info > p:first-child { font-family: 'Georgia', serif; font-size: 1.15rem; line-height: 1.85; color: #3d3228; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #e8e2d8; }
.modal-info h3 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #9a7a50; margin: 28px 0 12px; }
.modal-info p { font-family: 'Georgia', serif; font-size: 1rem; line-height: 1.8; color: #4d4540; margin-bottom: 16px; }
.modal-info ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.modal-info ul li { font-family: 'Georgia', serif; font-size: 0.98rem; color: #4d4540; line-height: 1.7; padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid #f0ebe3; }
.modal-info ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: #c8a96e; }
.modal-actions { padding: 30px 40px 40px; background: #faf8f4; display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid #e8e2d8; }
.modal-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 3px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; }
.modal-btn-primary { background: #1a1510; color: #c8a96e; border: 1px solid #1a1510; }
.modal-btn-primary:hover { background: #2a2218; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.modal-btn-whatsapp { background: transparent; color: #2a7a3e; border: 1px solid #2a7a3e; }
.modal-btn-whatsapp:hover { background: #2a7a3e; color: #fff; transform: translateY(-2px); }
.group-msg-banner { display: none; grid-column: 1 / -1; margin-top: 16px; position: relative; overflow: hidden; border-radius: 3px; }
.group-msg-inner { background: linear-gradient(135deg, #1e1810 0%, #2a2015 50%, #1e1810 100%); border: 1px solid rgba(200,169,110,0.35); padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; position: relative; }
.group-msg-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, #c8a96e, transparent); }
.group-msg-text { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 200px; }
.group-msg-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; opacity: 0.9; }
.group-msg-copy strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #c8a96e; margin-bottom: 4px; }
.group-msg-copy span { font-family: 'Georgia', serif; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.group-msg-btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #c8a96e; border: 1px solid rgba(200,169,110,0.5); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 20px; border-radius: 3px; text-decoration: none; white-space: nowrap; transition: all 0.25s ease; flex-shrink: 0; }
.group-msg-btn:hover { background: rgba(200,169,110,0.12); border-color: #c8a96e; color: #dfc080; transform: translateY(-1px); }
.modal-header { display: none !important; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 999; opacity: 0; visibility: hidden; transform: translateX(100px); transition: all 0.6s ease; }
.floating-buttons.show { opacity: 1; visibility: visible; transform: translateX(0); }
.floating-btn { width: 48px; height: 48px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(0,0,0,0.2); transition: all 0.3s ease; animation: float 3s ease-in-out infinite; }
.floating-btn:hover { transform: scale(1.1); box-shadow: 0 5px 14px rgba(0,0,0,0.25); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================
   FOOTER
   ============================================ */
footer { background: #f8f9fa; color: #263238; padding: 60px 0 40px; font-family: 'Inter', sans-serif; border-top: 1px solid #e0e0e0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo-img { width: 100px; height: 100px; }
.footer-desc { font-size: 0.95rem; line-height: 1.6; color: #555; margin-bottom: 20px; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social-btn { color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 600; color: #007b5e; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; line-height: 2; }
.footer-links a { color: #555; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #007b5e; }
.footer-divider { height: 1px; background: #ddd; margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; color: #777; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #777; text-decoration: none; }

/* ============================================
   SELECT (IDIOMA)
   ============================================ */
select { cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; background: transparent; border: 1px solid rgba(255,255,255,0.6); border-radius: 20px; padding: 6px 30px 6px 12px; color: white; font-family: 'Inter', sans-serif; font-size: 0.9rem; text-transform: uppercase; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 10px; }
select:hover { border-color: rgba(255,255,255,0.9); }
select:focus { outline: none; border-color: white; box-shadow: 0 0 0 2px rgba(255,255,255,0.2); }
select option { background: #1a365d; color: white; text-transform: uppercase; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu { display: none; }
    .nav-right { display: none; }
    .mobile-top-right { display: flex; }
    .btn-desktop-link { display: none; }
    .btn-mobile-link { display: flex; background: #f4a261 !important; color: #fff !important; border-color: #f4a261 !important; }
    .btn-mobile-link:hover { background: #e8935a !important; }
    .mobile-menu-list a { font-size: 1.1rem; }
    .trip-planner-btn { width: 100%; justify-content: center; }
    .language-selector { width: 100%; justify-content: center; }
    .modal-hero { height: 340px; }
    .modal-hero-title { padding: 20px 24px 28px; }
    .modal-hero-title h2 { font-size: 1.9rem; }
    .modal-price-block { grid-template-columns: 1fr; gap: 16px; padding: 20px 24px; }
    .modal-price-right { justify-content: space-between; }
    .modal-info { padding: 28px 24px 16px; }
    .modal-actions { padding: 24px 24px 32px; flex-direction: column; }
    .modal-btn { justify-content: center; }
    .price-number { font-size: 2rem; }
    .floating-buttons { bottom: 20px; right: 15px; gap: 10px; }
    .group-msg-inner { flex-direction: column; align-items: flex-start; padding: 18px 20px; }
    .group-msg-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-btn, .hero-btn2 { width: 100%; max-width: 250px; justify-content: center; }
}

/* ============================================
   CONTACTO PAGE
   ============================================ */
.contact-section { padding: 60px 20px; background: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px; }
.contact-card { background: #f8fafc; border-radius: 16px; padding: 30px; text-align: center; border: 1px solid #e2e8f0; transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.contact-icon { font-size: 2.5rem; margin-bottom: 15px; }
.contact-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: #222; margin-bottom: 10px; }
.contact-card p { color: #555; line-height: 1.6; }
.contact-card a { color: #007bff; font-weight: 600; }

/* ============================================
   SERVICIOS PAGE
   ============================================ */
.servicios-section { padding: 60px 20px; background: #fff; }
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.servicio-card { background: #f8fafc; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; transition: transform 0.3s, box-shadow 0.3s; }
.servicio-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.servicio-card img { width: 100%; height: 200px; object-fit: cover; }
.servicio-card-content { padding: 25px; }
.servicio-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: #222; margin-bottom: 10px; }
.servicio-card p { color: #555; line-height: 1.6; margin-bottom: 15px; }
.price-badge { display: inline-block; background: #007bff; color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; }

/* ============================================
   PAGE BANNER HEADER (páginas internas)
   ============================================ */
.page-banner-header {
    position: relative;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 0;
}

.page-banner-nav {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.page-banner-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 20px 70px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-banner-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.page-banner-hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.92);
    max-width: 680px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .page-banner-header {
        min-height: 42vh;
    }
    .page-banner-hero {
        padding: 30px 20px 40px;
    }
    .page-banner-hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* ── Destination pagination ────────────────────────── */
.dest-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.dest-pag-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all .18s;
    flex-shrink: 0;
}
.dest-pag-btn:hover:not(:disabled) { background: #1a9e4e; color: #fff; border-color: #1a9e4e; }
.dest-pag-btn:disabled { opacity: .3; cursor: default; }
.dest-pag-dots { display: flex; gap: 7px; align-items: center; }
.dest-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all .22s;
    padding: 0;
}
.dest-dot.active {
    background: #1a9e4e;
    width: 24px;
    border-radius: 4px;
}
