/* Italy Sports Tourism - Athletic Adventures 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 - Sports Theme */
:root {
    /* Primary Colors - Sports & Energy */
    --primary-green: #2D6A4F;
    --primary-teal: #52B788;
    --primary-forest: #1B4332;
    --accent-lime: #95D5B2;
    --accent-mint: #B7E4C7;

    /* Sports Colors */
    --sports-red: #E63946;
    --sports-blue: #0077B6;
    --sports-yellow: #F4A261;
    --sports-orange: #E76F51;

    /* Gradients for Dynamic Feel */
    --gradient-sports: linear-gradient(135deg, #2D6A4F 0%, #52B788 50%, #E63946 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(230, 57, 70, 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-sports: 0 8px 25px rgba(230, 57, 70, 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-sports {
    background: var(--gradient-sports);
    color: white;
    box-shadow: var(--shadow-sports);
}

.btn-sports:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 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-sports);
    -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;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sports-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-sports);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-sports);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sports);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.cta-nav::after {
    display: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--sports-green);
    color: var(--sports-green);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn small {
    font-size: 0.7rem;
    font-weight: 400;
}

.lang-btn.active .flag-img {
    display: none;
}

.flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--sports-green);
    color: white;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-medium);
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-height);
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .language-switcher {
        display: none;
    }

    .hero-stats {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    z-index: -2;
}

.sports-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease;
    margin-left: 4rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-sports {
    background: var(--gradient-sports);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-lime);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.arrow-down {
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-sports);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sports);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Sports Tours Section */
.sports-tours {
    background: var(--bg-light);
}

.tour-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tour-filter {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(82, 183, 136, 0.3);
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-medium);
}

.tour-filter:hover,
.tour-filter.active {
    background: var(--gradient-sports);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sports);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(82, 183, 136, 0.1);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.tour-card.featured {
    border: 3px solid var(--sports-red);
    position: relative;
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-sports);
    color: white;
    transition: var(--transition);
}

.tour-card:hover .image-placeholder {
    transform: scale(1.1);
}

.sports-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--sports-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sports-yellow);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tour-location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tour-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.85rem;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(82, 183, 136, 0.1);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sports-red);
}

.price-per {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Destinations */
.destinations {
    background: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(82, 183, 136, 0.1);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-content {
    padding: 2rem;
    text-align: center;
}

.destination-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.destination-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.tours-count {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Training */
.training {
    background: var(--bg-light);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.training-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(82, 183, 136, 0.1);
    overflow: hidden;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.training-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.training-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.training-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: 0.85rem;
    line-height: 1.4;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(82, 183, 136, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-sports);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.certifications {
    text-align: center;
    margin-top: 4rem;
}

.certifications h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    font-weight: 600;
    color: var(--primary-green);
    border: 1px solid rgba(82, 183, 136, 0.2);
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(82, 183, 136, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--sports-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-sports);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-tour {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Booking */
.cta-booking {
    background: var(--gradient-hero);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.cta-text h2 {
    margin-bottom: 1.5rem;
}

.cta-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
}

.booking-form-container h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    border: 2px solid rgba(82, 183, 136, 0.3);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    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 3px rgba(82, 183, 136, 0.1);
}

.booking-form input:invalid,
.booking-form select:invalid {
    border-color: #ef4444;
}

.booking-form input:valid,
.booking-form select:valid {
    border-color: #10b981;
}

.booking-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label a {
    color: var(--primary-green);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(82, 183, 136, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-lime);
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.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: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-lime);
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-certifications span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-lime);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 60px 0 30px !important;
    }

    .hero-content {
        max-width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
        padding: 0 1rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.1 !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }

    .hero-stats {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        clip: rect(0,0,0,0) !important;
        clip-path: inset(50%) !important;
        transform: scale(0) !important;
        font-size: 0 !important;
        line-height: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .hero-stats * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-badges {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.25rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .section-description {
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Tours */
    .tour-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .tour-filter {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-card {
        max-width: 100%;
    }

    .tour-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tour-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Training */
    .training-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certifications {
        text-align: center;
    }

    .cert-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* CTA Booking */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .cta-benefits {
        text-align: center;
    }

    .benefit {
        justify-content: center;
    }

    .booking-form-container h3 {
        text-align: center;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(82, 183, 136, 0.2);
        background: white;
        width: 100%;
        box-sizing: border-box;
        transition: border-color 0.2s ease;
    }

    .booking-form select {
        grid-column: 1 / -1; /* Span both columns */
        cursor: pointer;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        text-align: center;
        padding: 2rem 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Buttons */
    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    /* Terms and Privacy Pages */
    .terms-container {
        padding: 120px 1rem 3rem;
    }

    .terms-content {
        padding: 2rem 1.5rem;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* Large screens - 3 testimonials per row */
@media (min-width: 1200px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}