/* ===================================
   COLOMBIA HERITAGE - CULTURAL TOURISM
   Terracotta & Ochre Color Scheme
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Lora:wght@400;500;600;700&display=swap');

/* ===================================
   CSS VARIABLES - HERITAGE COLORS
   =================================== */
:root {
    /* Primary Heritage Colors - Terracotta & Ochre */
    --primary-terracotta: #C1502E;
    --primary-ochre: #D4A574;
    --primary-clay: #8B4513;
    --accent-sand: #E8C99B;
    --accent-amber: #CC8B3C;

    /* Secondary Heritage Colors */
    --secondary-rust: #A0522D;
    --secondary-copper: #B87333;
    --secondary-bronze: #CD7F32;
    --highlight-gold: #DAA520;

    /* Neutral & Background Colors */
    --bg-cream: #FAF6F1;
    --bg-parchment: #F5EFE7;
    --bg-stone: #EDE4DB;
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8D6E63;

    /* Gradients - Heritage Theme */
    --gradient-heritage: linear-gradient(135deg, #C1502E 0%, #D4A574 100%);
    --gradient-clay: linear-gradient(135deg, #8B4513 0%, #C1502E 100%);
    --gradient-sunset: linear-gradient(135deg, #CC8B3C 0%, #E8C99B 100%);
    --gradient-archaeological: linear-gradient(135deg, #A0522D 0%, #D4A574 100%);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(193, 80, 46, 0.1);
    --shadow-medium: 0 4px 16px rgba(193, 80, 46, 0.15);
    --shadow-large: 0 8px 32px rgba(139, 69, 19, 0.2);
    --shadow-inset: inset 0 2px 8px rgba(139, 69, 19, 0.1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lora', serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(245, 239, 231, 0.98);
    box-shadow: var(--shadow-medium);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-clay);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--primary-terracotta);
    font-weight: 900;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-heritage);
    transition: var(--transition-medium);
}

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

.nav-link:hover {
    color: var(--primary-terracotta);
}

.cta-nav {
    background: var(--gradient-heritage);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 26px;
    height: 3px;
    background: var(--primary-terracotta);
    border-radius: 3px;
    transition: var(--transition-medium);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-clay);
    overflow: hidden;
    padding-top: 80px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1568632234157-ce7aecd03d0d?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.heritage-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(212, 165, 116, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(193, 80, 46, 0.2) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px;
    animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-80px) translateX(-40px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(139, 69, 19, 0.85) 0%,
            rgba(193, 80, 46, 0.75) 50%,
            rgba(212, 165, 116, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.highlight-heritage {
    background: linear-gradient(135deg, #E8C99B 0%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-sand);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-sand);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 10px auto 0;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-md);
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-heritage {
    background: var(--gradient-heritage);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-heritage:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-terracotta);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   SECTION HEADER
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-clay);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ===================================
   TOURS SECTION
   =================================== */
.tours {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.tour-filters {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--accent-sand);
    border-radius: var(--radius-md);
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-heritage);
    color: white;
    border-color: var(--primary-terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.tour-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge.heritage {
    background: var(--gradient-heritage);
    color: white;
    box-shadow: var(--shadow-medium);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-clay);
    margin-bottom: 1rem;
}

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

.tour-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.tour-highlights {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    background: var(--bg-stone);
    color: var(--primary-terracotta);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-stone);
}

.tour-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-terracotta);
}

.tour-group {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   UNESCO SITES SECTION
   =================================== */
.unesco-sites {
    padding: 6rem 0;
    background: var(--bg-parchment);
}

.unesco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.unesco-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.unesco-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-sand);
}

.unesco-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(193, 80, 46, 0.2));
}

.unesco-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-clay);
    margin-bottom: 1rem;
}

.unesco-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   TRADITIONS SECTION
   =================================== */
.traditions {
    padding: 6rem 0;
    background: var(--bg-cream);
}

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

.tradition-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.tradition-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.tradition-image {
    height: 220px;
    overflow: hidden;
}

.tradition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.tradition-content {
    padding: 2rem;
}

.tradition-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-clay);
    margin-bottom: 1rem;
}

.tradition-content p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact {
    padding: 6rem 0;
    background: var(--gradient-clay);
    color: white;
    text-align: center;
}

.impact .section-header h2 {
    color: white;
}

.impact .section-header h2::after {
    background: white;
}

.impact .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.impact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-sand);
    margin-bottom: 1rem;
}

.impact-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.impact-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-parchment);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    border-left: 5px solid var(--primary-terracotta);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.testimonial-rating {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-clay);
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   BOOKING SECTION
   =================================== */
.booking {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-clay);
    margin-bottom: 1.5rem;
}

.booking-info>p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-clay);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.certifications {
    background: var(--bg-stone);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-terracotta);
}

.certifications h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-clay);
    margin-bottom: 1.2rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cert-badge {
    background: white;
    color: var(--primary-terracotta);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    border: 2px solid var(--accent-sand);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-clay);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--bg-stone);
    border-radius: var(--radius-sm);
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-medium);
    background: var(--bg-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-terracotta);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-terracotta);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gradient-clay);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--accent-sand);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--accent-sand);
}

.footer-col p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-sand);
    padding-left: 5px;
}

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

.social-links a {
    font-size: 1.8rem;
    transition: var(--transition-medium);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(245, 239, 231, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-medium);
        transition: var(--transition-medium);
    }

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

    .hamburger {
        display: flex;
    }

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

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

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

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

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

    .unesco-grid,
    .traditions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .container {
        padding: 0 1.5rem;
    }
}