/* Colombia EcoTravel - Sustainable Tourism Website Styles */
/* Зелена еко-тематика з природними тонами */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;900&family=Poppins:wght@400;600;700;800&display=swap');

/* CSS Variables - Eco Theme */
:root {
    /* Primary Colors - Nature & Sustainability */
    --primary-green: #2D6A4F;
    --primary-teal: #52B788;
    --primary-forest: #1B4332;
    --accent-lime: #95D5B2;
    --accent-mint: #B7E4C7;

    /* Gradients for Natural Feel */
    --gradient-eco: linear-gradient(135deg, #2D6A4F 0%, #52B788 50%, #95D5B2 100%);
    --gradient-forest: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
    --gradient-nature: linear-gradient(135deg, #52B788 0%, #95D5B2 100%);
    --gradient-leaf: linear-gradient(135deg, #40916C 0%, #6BCB77 100%);
    --gradient-hero: linear-gradient(135deg, rgba(27, 67, 50, 0.95) 0%, rgba(45, 106, 79, 0.9) 50%, rgba(82, 183, 136, 0.85) 100%);

    /* Backgrounds */
    --bg-light: #F1FAEE;
    --bg-white: #FFFFFF;
    --bg-cream: #FEFAE0;
    --bg-dark: #1B4332;
    --bg-darker: #081C15;

    /* Text */
    --text-dark: #081C15;
    --text-medium: #2D6A4F;
    --text-light: #52796F;
    --text-white: #FFFFFF;
    --text-gray: #6C757D;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(45, 106, 79, 0.1);
    --shadow-medium: 0 8px 30px rgba(45, 106, 79, 0.2);
    --shadow-heavy: 0 12px 40px rgba(45, 106, 79, 0.3);
    --shadow-green: 0 8px 25px rgba(82, 183, 136, 0.4);

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sizes */
    --navbar-height: 85px;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-eco:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(82, 183, 136, 0.5);
}

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

.btn-outline-white:hover {
    background: white;
    color: var(--primary-forest);
}

.btn-large {
    padding: 1.4rem 2.8rem;
    font-size: 1.15rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(82, 183, 136, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-forest);
    letter-spacing: 1px;
}

.logo-accent {
    background: var(--gradient-eco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-eco);
    transition: var(--transition);
    border-radius: 3px;
}

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

.cta-nav {
    background: var(--gradient-eco);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    color: white !important;
}

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

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

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-height);
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
    }

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

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--navbar-height);
    overflow: hidden;
    background:
        linear-gradient(135deg, #F1FAEE 0%, #D8F3DC 100%),
        radial-gradient(circle at 20% 50%, rgba(82, 183, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(45, 106, 79, 0.1) 0%, transparent 50%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nature-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(82, 183, 136, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(149, 213, 178, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(45, 106, 79, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(82, 183, 136, 0.3), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(241, 250, 238, 0.3) 100%);
}

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

.hero-title {
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    line-height: 1.1;
}

.highlight-eco {
    background: var(--gradient-eco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--text-medium);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(82, 183, 136, 0.2);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--primary-green);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-top: 0.8rem;
}

.hero-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid var(--accent-lime);
    color: var(--primary-forest);
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-green);
    font-weight: 700;
}

.arrow-down {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    color: var(--primary-green);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

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

    60% {
        transform: translateY(-8px);
    }
}

/* Section Styles */
section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-eco);
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-green);
}

.section-title {
    color: var(--primary-forest);
    margin-bottom: 1.8rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Eco Tours Section */
.eco-tours {
    background: white;
}

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

.tour-filter {
    background: white;
    border: 2px solid var(--accent-lime);
    color: var(--primary-green);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.95rem;
}

.tour-filter:hover,
.tour-filter.active {
    background: var(--gradient-eco);
    border-color: var(--primary-green);
    color: white;
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 2.8rem;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(82, 183, 136, 0.2);
    box-shadow: var(--shadow-light);
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.tour-card.featured {
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-green);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    transition: var(--transition);
}

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

.eco-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    background: rgba(82, 183, 136, 0.95);
    color: white;
    border: 2px solid white;
}

.featured-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--gradient-eco);
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    box-shadow: var(--shadow-green);
}

.tour-content {
    padding: 2.2rem;
}

.tour-title {
    color: var(--primary-forest);
    margin-bottom: 0.8rem;
    font-size: 1.7rem;
}

.tour-location {
    color: var(--primary-green);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.tour-description {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.tour-features {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.feature {
    background: rgba(82, 183, 136, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--primary-green);
    border: 1px solid rgba(82, 183, 136, 0.3);
    font-weight: 600;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.8rem;
    border-top: 2px solid rgba(82, 183, 136, 0.2);
}

.price-info {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
}

.price-per {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Destinations */
.destinations {
    background: var(--bg-cream);
}

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

.destination-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-lime);
}

.destination-image {
    height: 220px;
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    color: var(--primary-forest);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.destination-content p {
    color: var(--text-light);
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.tours-count {
    display: inline-block;
    background: var(--gradient-eco);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Conservation */
.conservation {
    background: white;
}

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

.conservation-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(82, 183, 136, 0.2);
}

.conservation-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.conservation-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.conservation-card h3 {
    color: var(--primary-forest);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.conservation-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(82, 183, 136, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-eco);
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
}

.certifications {
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-lime);
}

.certifications h3 {
    color: var(--primary-forest);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.cert-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-cream);
}

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

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(82, 183, 136, 0.3);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: #FFB703;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.testimonial-author {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(82, 183, 136, 0.2);
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-eco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.author-name {
    color: var(--primary-forest);
    font-weight: 800;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

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

/* CTA Booking */
.cta-booking {
    background: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

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

.cta-text h2 {
    color: var(--primary-forest);
    margin-bottom: 1.8rem;
}

.cta-text p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.benefit {
    color: var(--text-medium);
    font-weight: 700;
    font-size: 1rem;
}

.booking-form-container {
    background: var(--bg-light);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-green);
}

.booking-form-container h3 {
    color: var(--primary-forest);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1.2rem;
    background: white;
    border: 2px solid rgba(82, 183, 136, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.checkbox-label a {
    color: var(--primary-green);
    font-weight: 700;
}

/* Contact */
.contact {
    background: var(--bg-cream);
}

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

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(82, 183, 136, 0.2);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

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

.contact-card h3 {
    color: var(--primary-forest);
    margin-bottom: 1.2rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4.5rem 0 2.5rem;
    border-top: 3px solid var(--primary-green);
}

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

.footer-section h4 {
    color: var(--accent-lime);
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: var(--accent-lime);
    padding-left: 7px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-certifications span {
    color: var(--accent-lime);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(82, 183, 136, 0.3);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 183, 136, 0.2);
    border-radius: 50%;
    font-size: 1.7rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-eco);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-green);
}

/* Responsive */
@media (max-width: 768px) {

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }
}