/* =========================================
   MARRUECOSAVIAJAR - STYLES.CSS COMPLETO
   Archivo CSS unificado para toda la web
   ========================================= */

/* =========================================
   1. RESET Y BASE STYLES
   ========================================= */

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3f0;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.nav-links, .logo, .cta-button, .submit-button, .feature-title, .route-title, .contact-method-title, .value-title, .team-name, .stats-number, .tip-title, .dish-name, .highlight-title, .route-price, .faq-question, .excursion-title, .activity-name, .consultation-feature h4 {
    font-family: 'Montserrat', sans-serif;
}

p, .hero-subtitle, .feature-description, .route-description, .route-highlights, .contact-method-description, .form-input, .faq-answer, .value-description, .team-role, .story-text, .intro-text, .culture-text, .tip-description, .dish-description, .highlight-description, .gallery-subtitle, .footer-section p, .excursion-description, .activity-description {
    font-family: 'Roboto', sans-serif;
}

/* =========================================
   2. NAVIGATION - COMÚN A TODAS LAS PÁGINAS
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s ease;
}

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

.logo {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-placeholder {
    background: #d4af37;
    color: #2c1810;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #d4af37;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 3px;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #d4af37;
    color: #d4af37;
    padding-left: 20px;
    transform: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher a {
    padding: 4px 6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.language-switcher a:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.language-switcher img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    padding: 20px;
    border-top: 2px solid #d4af37;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #d4af37;
    padding-left: 10px;
}

.mobile-dropdown {
    margin-top: 10px;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-dropdown-toggle::after {
    content: "+";
    font-size: 1.2rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(45deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    margin-top: 10px;
    border-radius: 5px;
}

.mobile-submenu.active {
    max-height: 300px;
}

.mobile-submenu a {
    padding: 8px 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-language-switcher {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mobile-language-switcher a {
    padding: 8px 12px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-language-switcher img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Hide mobile-only elements on desktop */
.hide-on-mobile {
    display: flex;
}

/* =========================================
   3. HERO SECTIONS
   ========================================= */

/* Hero Principal (Home) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                url('https://www.marruecosaviajar.com/images/hero1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: white;
}

/* Hero Secundario (páginas interiores) */
.hero-secondary {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Hero para páginas de detalle */
.hero-detail {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(44, 24, 16, 0.6));
    z-index: 2;
}

.hero-detail .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-badge {
    background: #d4af37;
    color: #2c1810;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-detail .hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-detail .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    background: rgba(212, 175, 55, 0.9);
    color: #2c1810;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   4. BOTONES Y CTAs
   ========================================= */

.cta-button {
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.cta-button:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button.whatsapp {
    background: #25d366;
}

.cta-button.whatsapp:hover {
    background: #1da851;
}

.cta-button.secondary {
    background: #2c1810;
    color: white;
}

.cta-button.secondary:hover {
    background: #1a0e08;
}

.contact-button, .route-button {
    background: #d4af37;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-button:hover, .route-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-button {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* =========================================
   5. CONTENIDO PRINCIPAL
   ========================================= */

.main-content {
    padding: 80px 0;
}

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

/* Secciones con fondo */
.intro-section, .welcome-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-title, .welcome-title {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
}

.intro-text, .welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* =========================================
   6. HOME - SECCIONES ESPECÍFICAS
   ========================================= */

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #2c1810;
    color: white;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 60px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "~~~~~~~~";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1rem;
}

.section-title::before {
    left: -150px;
}

.section-title::after {
    right: -150px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #f5f3f0;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://www.marruecosaviajar.com/images/contacto.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 50px;
}

.contact-form {
    display: grid;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    font-size: 1rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* =========================================
   7. CONTACTO - SECCIONES ESPECÍFICAS
   ========================================= */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-method.priority {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.contact-method-title {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-detail {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Contact Form Section */
.form-section {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin: 80px 0;
}

.form-title {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input, .form-select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Response Time Banner */
.response-banner {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
    font-weight: 500;
}

.response-banner strong {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
}

.faq-title {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.2);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* =========================================
   8. SOBRE NOSOTROS - SECCIONES ESPECÍFICAS
   ========================================= */

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 80px 0;
    align-items: center;
}

.story-content {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 50px;
    border-radius: 20px;
}

.story-title {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.story-image {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: #2c1810;
}

.story-image-icon {
    font-size: 8rem;
    margin-bottom: 20px;
    display: block;
}

.story-image-text {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.values-title {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 50px;
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.value-title {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Stats Section */
.stats-section {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.stats-title {
    font-size: 2.2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stats-number {
    font-size: 3rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    margin: 80px 0;
}

.team-title {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
}

.team-name {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-role {
    font-size: 1rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =========================================
   9. DESCUBRE MARRUECOS - SECCIONES ESPECÍFICAS
   ========================================= */

/* Highlights Section */
.highlights-section {
    margin: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.highlight-title {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.highlight-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Culture Section */
.culture-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.culture-title {
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.culture-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.culture-image {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
}

/* Tips Section */
.tips-section {
    background: rgba(212, 175, 55, 0.1);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.tips-title {
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: #d4af37;
}

.tip-title {
    font-size: 1.2rem;
    color: #2c1810;
    font-weight: bold;
    margin-bottom: 10px;
}

.tip-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Gastronomy Section */
.gastronomy-section {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.gastronomy-title {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

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

.dish-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.dish-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.dish-name {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
}

.dish-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* =========================================
   10. RUTAS - SECCIONES ESPECÍFICAS
   ========================================= */

/* Routes Grid */
.routes-section {
    margin: 60px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.route-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.route-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.route-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.route-content {
    padding: 30px;
}

.route-duration {
    background: #d4af37;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.route-title {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.route-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.route-highlights {
    list-style: none;
    margin: 20px 0;
}

.route-highlights li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.route-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.route-price {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: 600;
}

.route-price-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   11. PÁGINAS DE DETALLE - SECCIONES ESPECÍFICAS
   ========================================= */

/* Quick Info Section */
.quick-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    margin: -50px auto 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.info-icon {
    font-size: 2rem;
    color: #d4af37;
}

.info-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #2c1810;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Description Section */
.description-section {
    margin: 80px 0;
}

.description-content h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlights-box {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #d4af37;
}

.highlights-box h3 {
    color: #2c1810;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.highlights-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Itinerary Section */
.itinerary-section {
    margin: 80px 0;
}

.day-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
}

.day-header {
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.day-number {
    background: #d4af37;
    color: #2c1810;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.day-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.day-duration {
    color: #d4af37;
    font-size: 0.9rem;
    opacity: 0.9;
}

.day-content {
    padding: 30px;
}

.day-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.day-highlights h4 {
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

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

.day-highlights li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.day-highlights li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.8rem;
}

.day-details {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.detail-item {
    background: rgba(212, 175, 55, 0.1);
    color: #2c1810;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Included Section */
.included-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.included-title,
.excluded-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.included-title {
    color: #27ae60;
}

.excluded-title {
    color: #e74c3c;
}

.included-list,
.excluded-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.excluded-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.excluded-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Practical Info Section */
.practical-info {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.info-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-column h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

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

.info-column li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.info-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author strong {
    color: #2c1810;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin: 5px 0;
}

.testimonial-rating {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Booking CTA Section */
.booking-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #2c1810;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-guarantees {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.guarantee {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* =========================================
   12. EXCURSIONES Y ACTIVIDADES
   ========================================= */

/* Excursions Grid */
.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.excursion-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.excursion-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.excursion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.excursion-card:hover .excursion-image {
    transform: scale(1.1);
}

.excursion-content {
    padding: 30px;
}

.excursion-duration {
    background: #d4af37;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.excursion-title {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.excursion-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.excursion-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.excursion-highlights li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.excursion-highlights li::before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Custom Excursion Section */
.custom-excursion {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #2c1810;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.custom-excursion h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.custom-excursion p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-examples {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.custom-tag {
    background: rgba(44, 24, 16, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Activities Section */
.activities-section {
    background: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.activities-intro {
    text-align: center;
    margin-bottom: 60px;
}

.activities-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.activities-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.activity-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.activity-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.activity-name {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.activity-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Adventure CTA */
.adventure-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.adventure-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.adventure-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Consultation CTA */
.consultation-cta {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
}

.consultation-content h2 {
    font-size: 2.3rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.consultation-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.consultation-feature {
    padding: 20px;
}

.consultation-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #d4af37;
}

.consultation-feature h4 {
    font-size: 1.1rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.consultation-feature p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Info Boxes */
.info-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 5px solid #d4af37;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.info-box h4 {
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.info-box p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   13. FOOTER - COMÚN A TODAS LAS PÁGINAS
   ========================================= */

.footer {
    background: linear-gradient(135deg, #1a0e08 0%, #2c1810 100%);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-section h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(212, 175, 55, 0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo::before {
    content: "🐪";
    font-size: 1.2rem;
}

/* =========================================
   14. FORM VALIDATION STYLES
   ========================================= */

.form-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* =========================================
   15. RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Hero Sections */
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    /* Section Titles */
    .section-title::before,
    .section-title::after {
        display: none;
    }

    /* Grids */
    .features-grid,
    .gallery-grid,
    .routes-grid,
    .excursions-grid,
    .activities-grid,
    .info-grid,
    .included-grid,
    .info-tabs,
    .testimonials-grid,
    .highlights-grid,
    .values-grid,
    .stats-grid,
    .team-grid,
    .tips-grid,
    .gastronomy-grid {
        grid-template-columns: 1fr;
    }

    /* Story and Culture sections */
    .story-section,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Sections padding */
    .intro-section,
    .welcome-section,
    .culture-section,
    .values-section,
    .tips-section,
    .gastronomy-section,
    .stats-section,
    .cta-section,
    .contact-cta,
    .form-section,
    .practical-info,
    .testimonials-section,
    .booking-cta,
    .activities-section,
    .consultation-cta,
    .custom-excursion,
    .adventure-cta {
        padding: 40px 20px;
        margin: 40px 0;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Route Cards */
    .route-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Day Cards */
    .day-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .day-details {
        flex-direction: column;
        gap: 10px;
    }

    /* CTAs */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .custom-examples {
        flex-direction: column;
        align-items: center;
    }

    .consultation-features {
        grid-template-columns: 1fr;
    }

    /* Quick Info */
    .quick-info {
        margin: -30px auto 40px;
        padding: 30px 20px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .mobile-language-switcher {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        gap: 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .content-container {
        padding: 0 15px;
    }
}

/* =========================================
   16. ANIMATIONS
   ========================================= */

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animation Classes */
.hero-text {
    animation: fadeInUp 1s ease-out;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.intro-section,
.welcome-section,
.highlight-card,
.tip-card,
.dish-card,
.contact-method,
.faq-item,
.route-card,
.value-card,
.team-card,
.day-card,
.testimonial-card,
.gallery-item,
.excursion-card,
.activity-card {
    animation: fadeInUp 0.8s ease-out;
}

.highlight-card:nth-child(1) { animation-delay: 0.2s; }
.highlight-card:nth-child(2) { animation-delay: 0.4s; }
.highlight-card:nth-child(3) { animation-delay: 0.6s; }

.contact-method:nth-child(1) { animation-delay: 0.2s; }
.contact-method:nth-child(2) { animation-delay: 0.4s; }
.contact-method:nth-child(3) { animation-delay: 0.6s; }

.route-card:nth-child(1) { animation-delay: 0.1s; }
.route-card:nth-child(2) { animation-delay: 0.2s; }
.route-card:nth-child(3) { animation-delay: 0.3s; }
.route-card:nth-child(4) { animation-delay: 0.4s; }
.route-card:nth-child(5) { animation-delay: 0.5s; }
.route-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.4s; }
.value-card:nth-child(3) { animation-delay: 0.6s; }

.day-card:nth-child(1) { animation-delay: 0.2s; }
.day-card:nth-child(2) { animation-delay: 0.4s; }
.day-card:nth-child(3) { animation-delay: 0.6s; }
.day-card:nth-child(4) { animation-delay: 0.8s; }

/* =========================================
   17. UTILITY CLASSES
   ========================================= */

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

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

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

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* =========================================
   18. PRINT STYLES
   ========================================= */

@media print {
    .navbar,
    .footer,
    .cta-section,
    .contact-cta,
    .booking-cta,
    .social-links,
    .mobile-menu,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        background: none;
        color: black;
    }
    
    .main-content {
        padding: 20px 0;
    }
}

/* =========================================
   19. ACCESSIBILITY IMPROVEMENTS
   ========================================= */

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
.form-input:focus,
.form-select:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .navbar {
        background: rgba(0, 0, 0, 1);
    }
    
    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.2);
    }
    
    .cta-button:hover {
        outline: 2px solid currentColor;
    }
}

/* =========================================
   20. SPECIAL FEATURES
   ========================================= */

/* Special Features Section (para páginas específicas) */
.special-features {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.special-features h2 {
    font-size: 2.2rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.special-features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.special-features .card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.special-features .card span {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.special-features .card h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.special-features .card p {
    color: #666;
    line-height: 1.6;
}

/* =========================================
   21. CORRECCIONES FINALES
   ========================================= */

/* Asegurar que todas las imágenes sean responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Mejorar legibilidad en textos largos */
.intro-text,
.welcome-text,
.story-text,
.culture-text,
.description-content p {
    text-align: left;
}

/* Consistencia en los iconos */
.feature-icon,
.value-icon,
.highlight-icon,
.tip-icon,
.dish-icon,
.activity-icon,
.contact-icon {
    user-select: none;
    pointer-events: none;
}

/* Mejorar contraste en elementos interactivos */
.cta-button,
.contact-button,
.route-button,
.submit-button {
    font-weight: 600;
    text-shadow: none;
}

/* Asegurar que los enlaces tengan suficiente área de click */
.nav-links a,
.dropdown-menu a,
.mobile-nav-links a,
.footer-section a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Corrección para logos */
.logo img {
    display: block;
}

/* Asegurar que el contenido no se superponga con la navbar fija */
body {
    padding-top: 0;
}

.main-content {
    margin-top: 70px;
}

.hero {
    margin-top: 0;
}

.hero-detail {
    margin-top: 70px;
}

/* =========================================
   ESTILOS ADICIONALES PARA NUEVAS PÁGINAS
   ========================================= */

/* Rutas de Varios Días - Hub Central */
.routes-from-cities {
    margin: 80px 0;
}

.city-route-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 0;
}

.city-route-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.city-route-image {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.city-route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.city-route-content {
    padding: 40px;
}

.city-route-content h3 {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.city-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.city-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.highlight-tag {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.city-routes-list {
    margin-bottom: 30px;
}

.city-routes-list h4 {
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.city-routes-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.city-routes-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.7rem;
    top: 8px;
}

.city-route-button {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.city-route-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Why Choose Us Section */
.why-choose-us {
    margin: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Page Specific Styles */
.faq-categories {
    margin: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    text-decoration: none;
    color: inherit;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Quick Help Section */
.quick-help {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e0d5 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #d4af37;
}

.help-card h3 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.help-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.help-button {
    background: #d4af37;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.help-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    color: white;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .city-route-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .city-route-image {
        min-height: 250px;
    }
    
    .city-route-content {
        padding: 30px 20px;
    }
    
    .city-highlights {
        justify-content: center;
    }
    
    .benefits-grid,
    .categories-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .city-route-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .city-route-content h3 {
        font-size: 1.4rem;
    }
    
    .city-description {
        font-size: 1rem;
    }
    
    .city-highlights {
        flex-direction: column;
        align-items: center;
    }
}

.destinations-main-title, .duration-main-title {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.destinations-main-title::after, .duration-main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    margin: 15px auto;
    border-radius: 2px;
}

.destinations-main-subtitle, .duration-main-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid de destinos mejorado */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.destination-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.destination-emoji {
    font-size: 1.5rem;
}

.destination-content {
    padding: 25px;
}

.destination-title {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.destination-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.destination-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.destination-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.highlight-emoji {
    margin-right: 10px;
    font-size: 1rem;
}

.destination-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: white;
}

/* Sección de duración mejorada */
.duration-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.duration-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.duration-featured {
    border-color: #d4af37;
    transform: scale(1.05);
}

.duration-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.duration-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duration-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.duration-featured .duration-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.duration-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 5px;
}

.duration-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.duration-body {
    padding: 25px;
}

.duration-card-title {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.duration-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.duration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.duration-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.duration-check {
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .destinations-main-title, .duration-main-title {
        font-size: 2rem;
    }
    
    .destinations-grid, .duration-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .duration-featured {
        transform: none;
    }
    
    .duration-featured:hover {
        transform: translateY(-5px);
    }
    
    .destination-content, .duration-body {
        padding: 20px;
    }
}

/* Banner de respuesta rápida */
.quick-response-banner {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.quick-response-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.quick-response-banner strong {
    font-size: 1.1rem;
}

/* Título principal de categorías */
.faq-categories-title {
    font-size: 2.5rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.faq-categories-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    margin: 15px auto;
    border-radius: 2px;
}

/* Categorías FAQ */
.faq-category {
    background: white;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-category-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-category-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-category-title {
    font-size: 1.8rem;
    color: #2c1810;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.faq-category-subtitle {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

/* Items FAQ mejorados */
.faq-items {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.faq-item:hover {
    background: rgba(212, 175, 55, 0.02);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
    border-left-color: #d4af37;
    padding-left: 35px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #555;
    line-height: 1.7;
    background: rgba(248, 249, 250, 0.5);
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 300px;
}

/* Sección de contacto FAQ */
.faq-contact-cta {
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.faq-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.faq-contact-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.faq-contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.contact-method-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.faq-contact-method h4 {
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    color: #d4af37;
}

.faq-contact-method p {
    margin: 0 0 20px 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-method-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.contact-method-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-method-btn.whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .faq-categories-title {
        font-size: 2rem;
    }
    
    .faq-category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .faq-category-icon {
        font-size: 2rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-question, .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-question:hover {
        padding-left: 25px;
    }
    
    .faq-contact-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .faq-contact-content h2 {
        font-size: 1.8rem;
    }
    
    .faq-contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* JavaScript para accordion */
.faq-question.active {
    background: rgba(212, 175, 55, 0.05);
    border-left-color: #d4af37;
    padding-left: 35px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #d4af37;
    transform: translateX(5px);
}

/* =========================================
   SAHARA HAPPY CAMP SECTION
   ========================================= */

.sahara-camp-section {
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.sahara-camp-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 100 100"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(212,175,55,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(212,175,55,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="90" cy="40" r="0.8" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.sahara-camp-section > * {
    position: relative;
    z-index: 2;
}

/* Header del campamento */
.camp-header {
    text-align: center;
    margin-bottom: 60px;
}

.camp-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.camp-name {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.camp-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-style: italic;
}

.camp-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.rating-text {
    color: #d4af37;
    font-weight: 600;
}

.tripadvisor-link {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tripadvisor-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
    color: #d4af37;
}

/* Contenido principal */
.camp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.camp-description h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.camp-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.camp-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.highlight-icon {
    font-size: 1.8rem;
    margin-top: 5px;
}

.highlight-item h4 {
    color: #d4af37;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

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

/* Galería del campamento */
.camp-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.camp-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover .camp-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 500;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 120px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Experiencia */
.camp-experience {
    margin-bottom: 60px;
}

.camp-experience h3 {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.experience-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.experience-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.experience-card h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.experience-card p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonios */
.camp-testimonials {
    margin-bottom: 60px;
}

.camp-testimonials h3 {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-camp {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.testimonial-camp p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.testimonial-author strong {
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* CTA del campamento */
.camp-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.camp-cta h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.camp-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.camp-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.camp-btn {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.camp-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.camp-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

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

.camp-btn.secondary:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .sahara-camp-section {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .camp-title {
        font-size: 2rem;
    }
    
    .camp-name {
        font-size: 2.2rem;
    }
    
    .camp-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .camp-rating {
        flex-direction: column;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .camp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camp-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Final del archivo CSS */