/* CSS Variables - Patagonia Che Real Brand Colors */
:root {
    /* Primary Colors - Based on Instagram @patagoniache7 */
    --primary-black: #000000;           /* Negro principal para textos */
    --dark-gray-1: #050505;             /* Gris muy oscuro variación 1 */
    --dark-gray-2: #050506;             /* Gris muy oscuro variación 2 */
    
    /* Light Colors - Fondos y transparencias */
    --light-gray-1: #e8e6e9;           /* Gris muy claro 232,230,233 */
    --light-gray-2: #eceaed;            /* Gris muy claro 236,234,237 */
    --pure-white: #ffffff;
    
    /* Patagonian Blues - Azules grisáceos evocando nieve/cielo */
    --patagonia-blue-1: #c2d0dd;       /* Azul grisáceo suave */
    --patagonia-blue-2: #c3d1de;       /* Azul grisáceo principal */
    --patagonia-blue-3: #c8d5e5;       /* Azul grisáceo claro */
    
    /* Accent Colors - Manteniendo verde esmeralda para CTAs */
    --emerald-green: #2c5530;          /* Verde esmeralda para CTAs */
    --emerald-green-light: #4a7c59;    /* Verde esmeralda claro */
    --accent-orange: #ff6b35;          /* Naranja para acciones importantes */
    
    /* Semantic Colors */
    --text-primary: var(--primary-black);
    --text-secondary: var(--dark-gray-1);
    --background-primary: var(--pure-white);
    --background-secondary: var(--light-gray-1);
    --background-accent: var(--patagonia-blue-2);
    
    /* Gradients - Inspirados en paisajes patagónicos */
    --patagonia-gradient: linear-gradient(135deg, var(--patagonia-blue-1) 0%, var(--patagonia-blue-2) 50%, var(--patagonia-blue-3) 100%);
    --emerald-gradient: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-green-light) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 65px;
    width: 65px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--emerald-green);
}

.logo h2 {
    color: var(--emerald-green);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--emerald-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--emerald-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--emerald-green);
    background: transparent;
    color: var(--emerald-green);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--emerald-green);
    color: var(--pure-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('./images/HeroPatagoniaChe.png');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--emerald-green);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.4);
}

.btn-primary:hover {
    background: var(--emerald-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tours Section */
.tours {
    background: var(--background-secondary);
}

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

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

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

.tour-image {
    height: 250px;
    background: var(--emerald-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

/* Specific tour images */
.tour-card:nth-child(1) .tour-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)), url('./images/rutadelagua.png');
    background-size: cover;
    background-position: center;
}

.tour-card:nth-child(1) .image-placeholder {
    display: none; /* Hide emoji when real image is used */
}

.tour-card:nth-child(2) .tour-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)), url('./images/Puente de piedra.png');
    background-size: cover;
    background-position: center;
}

.tour-card:nth-child(2) .image-placeholder {
    display: none; /* Hide emoji when real image is used */
}

.tour-card:nth-child(3) .tour-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.20)), url('./images/cumbresylagos.png');
    background-size: cover;
    background-position: center;
}

.tour-card:nth-child(3) .image-placeholder {
    display: none; /* Hide emoji when real image is used */
}

/* Specific other tour images */
.other-tour-card:nth-child(1) .other-tour-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)), url('./images/catedrales.png');
    background-size: cover;
    background-position: center;
}

.other-tour-card:nth-child(1) .image-placeholder {
    display: none; /* Hide emoji when real image is used */
}

.other-tour-card:nth-child(2) .other-tour-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)), url('./images/laguna.png');
    background-size: cover;
    background-position: center;
}

.other-tour-card:nth-child(2) .image-placeholder {
    display: none; /* Hide emoji when real image is used */
}

/* Hover effect for tours with real images */
.tour-card:nth-child(1):hover .tour-image,
.tour-card:nth-child(2):hover .tour-image,
.tour-card:nth-child(3):hover .tour-image,
.other-tour-card:nth-child(1):hover .other-tour-image,
.other-tour-card:nth-child(2):hover .other-tour-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.image-placeholder {
    font-size: 4rem;
    opacity: 0.8;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-badge.premium {
    background: var(--patagonia-blue-3);
    color: var(--text-primary);
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.tour-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature i {
    color: var(--emerald-green);
}

.tour-pricing {
    background: var(--background-accent);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Pricing Info Section */
.pricing-info {
    margin-top: 3rem;
    padding: 2rem 0;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-note i {
    color: var(--emerald-green);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-text h4 {
    color: var(--emerald-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-text strong {
    color: var(--emerald-green);
    font-weight: 600;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    color: var(--emerald-green);
    font-size: 1.1rem;
}

.btn-book {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

/* Hero Section for Other Tours Page */
.hero-other-tours {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('./images/Lagunasanrafael.png');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 120px 20px 50px;
    position: relative;
}

.hero-other-tours .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-other-tours .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-other-tours .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Active nav link style */
.nav-link.active {
    color: var(--emerald-green);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Other Tours Section */
.other-tours {
    background: var(--background-primary);
    padding: 80px 0;
}

.other-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.other-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--emerald-green);
}

.other-tour-image {
    height: 200px;
    background: var(--patagonia-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.other-tour-image .image-placeholder {
    font-size: 4rem;
    opacity: 0.9;
    color: var(--emerald-green);
}

.tour-badge.special {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: var(--pure-white);
}

.tour-badge.relaxing {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--pure-white);
}

.other-tour-content {
    padding: 2rem;
}

.other-tour-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

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

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

.other-tour-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: var(--background-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.other-tour-features .feature i {
    color: var(--emerald-green);
}

/* Other Tours Info Section */
.other-tours-info {
    margin-top: 3rem;
    padding: 2rem 0;
}

.other-tours-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #f39c12;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.1);
}

.other-tours-note i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.other-tours-text h4 {
    color: #d68910;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.other-tours-text p {
    color: #8b4513;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Tour Highlights */
.tour-highlights {
    background: var(--background-secondary);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tour-highlights h4 {
    color: var(--emerald-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.tour-highlights li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.tour-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    background: var(--background-accent);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Tour Policies Section */
.tour-policies {
    background: var(--background-secondary);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.tour-policies h4 {
    color: var(--emerald-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--background-primary);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-item i {
    font-size: 1.5rem;
    color: var(--emerald-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.policy-item h5 {
    color: var(--emerald-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Tour Recommendations Section */
.tour-recommendations {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.tour-recommendations h4 {
    color: var(--emerald-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.recommendation-item:hover {
    transform: translateX(5px);
}

.recommendation-item i {
    font-size: 1.2rem;
    color: var(--emerald-green);
    flex-shrink: 0;
}

.recommendation-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Policy Tour Sections */
.policy-tour-section {
    margin-bottom: 2rem;
}

.policy-tour-section h5 {
    color: var(--emerald-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--emerald-green);
}

.policy-tour-section h6 {
    color: var(--emerald-green);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-simple {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.policy-item-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-primary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.policy-item-simple i {
    font-size: 1.2rem;
    color: var(--emerald-green);
    flex-shrink: 0;
}

.policy-item-simple span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Recommendations Sections */
.recommendations-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 85, 48, 0.2);
}

.recommendations-section h5 {
    color: var(--emerald-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* What's Included Section */
.included {
    background: var(--background-secondary);
}

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

.included-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-accent);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: var(--emerald-green);
    color: var(--pure-white);
    transform: translateY(-5px);
}

.included-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.included-item:hover i {
    color: var(--accent-orange);
}

.included-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Schedule Section */
.schedule {
    background: var(--background-secondary);
}

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

.schedule-item {
    background: var(--background-primary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.schedule-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.time {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.schedule-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* About Section */
.about {
    background: var(--background-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder.team {
    width: 400px;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url('./images/nosootros.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.image-placeholder.team:hover {
    transform: scale(1.02);
}

/* Hide emoji when real team image is used */
.about-image .image-placeholder.team::before {
    content: '';
    display: none;
}

/* FAQ Section */
.faq {
    background: var(--background-secondary);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--background-primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--background-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-secondary);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--emerald-green);
}

.faq-question i {
    color: var(--emerald-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--background-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-accent);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--emerald-green);
    width: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Clickeable contact item styles */
.contact-item-clickable {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--emerald-green);
}

.contact-item-clickable:hover i {
    color: white;
}

.contact-item-clickable:hover h3 {
    color: white;
}

.contact-item-clickable:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta {
    margin-top: 1rem;
}

.map-container {
    background: var(--background-accent);
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

/* Policies Section */
.policies {
    background: var(--background-secondary);
}

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

.policy-card {
    background: var(--background-primary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.policy-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--emerald-green);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        background-attachment: scroll; /* Better performance on mobile */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('./images/HeroPatagoniaChe.png');
        background-size: cover;
        background-position: center 20%;
    }

    .hero-other-tours {
        background-attachment: scroll; /* Better performance on mobile */
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('./images/Lagunasanrafael.png');
        background-size: cover;
        background-position: center bottom;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

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

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

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-placeholder.team {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h2 {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 50px;
        width: 50px;
    }

    .hero {
        padding: 80px 15px 30px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .tour-content {
        padding: 1.5rem;
    }

    .tour-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .other-tour-content {
        padding: 1.5rem;
    }

    .other-tour-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .other-tours-note {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .other-tours-note i {
        font-size: 1.3rem;
        align-self: flex-start;
    }

    .hero-other-tours .hero-title {
        font-size: 2.5rem;
    }

    .hero-other-tours .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-section h3 {
        font-size: 1.6rem;
    }

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

    .policies-grid-special {
        grid-template-columns: 1fr;
    }

    .tour-policies {
        padding: 1.5rem;
    }

    .tour-recommendations {
        padding: 1.5rem;
    }

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

    .stat h3 {
        font-size: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .policy-card {
        padding: 1.5rem;
    }

    .pricing-info {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .pricing-note {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .pricing-note i {
        font-size: 1.3rem;
        align-self: flex-start;
    }

    .pricing-text h4 {
        font-size: 1.1rem;
    }

    .pricing-text p {
        font-size: 0.9rem;
    }

    .hero-other-tours .hero-title {
        font-size: 2rem;
    }

    .hero-other-tours .hero-subtitle {
        font-size: 1rem;
    }

    .tour-highlights {
        padding: 1rem;
    }

    .cta-section {
        padding: 1.5rem 1rem;
    }

    .cta-section h3 {
        font-size: 1.4rem;
    }

    .policy-item {
        padding: 1rem;
    }

    .recommendation-item {
        padding: 0.8rem 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for language switching */
[data-es], [data-en] {
    transition: opacity 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c5530;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3d1f;
}
