/* Italy Culinary Tours - Authentic Gastronomic Experiences 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 - Culinary Theme */
:root {
    /* Primary Colors - Food & Wine */
    --primary-red: #8B2635;
    --primary-orange: #D4A574;
    --primary-brown: #8B4513;
    --primary-gold: #F4A261;
    --accent-cream: #FEFAE0;
    --accent-tomato: #E63946;

    /* Culinary Colors */
    --pasta-yellow: #F4A261;
    --pizza-red: #E63946;
    --wine-purple: #8B2635;
    --truffle-brown: #8B4513;
    --olive-green: #2D6A4F;

    /* Gradients for Appetizing Feel */
    --gradient-culinary: linear-gradient(135deg, #F4A261 0%, #E76F51 30%, #D4A574 60%, #E63946 100%);
    --gradient-wine: linear-gradient(135deg, #8B2635 0%, #B91D3A 50%, #D62828 100%);
    --gradient-pasta: linear-gradient(135deg, #F4A261 0%, #F4A574 50%, #E9C46A 100%);
    --gradient-herbs: linear-gradient(135deg, #2D6A4F 0%, #52B788 50%, #95D5B2 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 38, 53, 0.9) 0%, rgba(230, 57, 70, 0.8) 20%, rgba(244, 162, 97, 0.85) 40%, rgba(244, 162, 97, 0.75) 60%, rgba(233, 196, 106, 0.7) 80%, rgba(45, 106, 79, 0.6) 100%);

    /* Backgrounds */
    --bg-light: #FEFAE0;
    --bg-white: #FFFFFF;
    --bg-cream: #FEFAE0;
    --bg-warm: #F4A261;
    --bg-dark: #8B2635;
    --bg-darker: #5A1A1E;

    /* Text */
    --text-dark: #5A1A1E;
    --text-medium: #8B2635;
    --text-light: #B91D3A;
    --text-white: #FFFFFF;
    --text-gray: #6C757D;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(139, 38, 53, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 38, 53, 0.2);
    --shadow-heavy: 0 12px 40px rgba(139, 38, 53, 0.3);
    --shadow-culinary: 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: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}
    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(2rem, 4vw, 3.5rem);
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h6 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-brown);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-sports {
    background: var(--gradient-culinary);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-sports::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-sports:hover::before {
    left: 100%;
}

.btn-sports:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-sports:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 38, 53, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-outline-white {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--text-white);
    color: var(--primary-red);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-culinary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-culinary);
    color: var(--text-white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    margin-left: 1rem;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-nav::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-medium);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ca4b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    z-index: -2;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

/* Floating Food Particles */
.food-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 6s; }
.particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }
.particle:nth-child(6) { top: 70%; left: 5%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(2deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 120px;
    text-align: center;
    color: var(--text-white);
    animation: fade-in-up 1.5s ease-out;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 900;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-culinary);
    border-radius: 2px;
}

.highlight-sports {
    background: var(--gradient-culinary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fade-in-up 1.5s ease-out 0.3s both;
}

.stat {
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    min-width: 0;
    flex: 1;
    max-width: 140px;
}

.stat:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-culinary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.badge:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.2);
}

/* Sports Tours Section */
.sports-tours {
    background: var(--bg-white);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-culinary);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Tour Filters */
.tour-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tour-filter {
    padding: 0.8rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tour-filter:hover,
.tour-filter.active {
    background: var(--gradient-culinary);
    color: var(--text-white);
    border-color: transparent;
}

/* Tour Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tour-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.tour-card.featured {
    border: 3px solid var(--primary-gold);
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-pasta);
    color: var(--text-white);
}

.sports-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-culinary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
}

.tour-content {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.tour-location {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-description {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.feature {
    background: var(--bg-cream);
    color: var(--primary-brown);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-red);
}

.price-per {
    font-size: 1rem;
}

/* Destinations Section */
.destinations {
    background: var(--bg-cream);
    padding: 4rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.destination-image {
    height: 160px;
    overflow: hidden;
}

.destination-content {
    padding: 1.5rem;
    text-align: center;
}

.destination-content h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.destination-content p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.tours-count {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Training Section */
.training {
    background: var(--bg-white);
    padding: 4rem 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.training-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.training-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.training-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.training-card p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.progress-bar {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    height: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-culinary);
    border-radius: var(--radius-sm);
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 700;
}

.certifications {
    margin-top: 4rem;
    text-align: center;
}

.certifications h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    font-weight: 600;
    color: var(--primary-red);
}

/* Testimonials */
.testimonials {
    background: var(--gradient-herbs);
    padding: 4rem 0;
    color: var(--text-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-tour {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Booking Section */
.cta-booking {
    background: var(--bg-white);
    padding: 6rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
}

.booking-form-container {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.booking-form h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(139, 38, 53, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
}

/* Contact Section */
.contact {
    background: var(--bg-cream);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.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);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Particles Effect */
.sports-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(244, 162, 97, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 38, 53, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 0 1.5rem;
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-nav {
        max-width: 350px;
    }

    /* Tour Cards */
    .tour-card {
        min-height: auto;
    }

    .tour-content {
        padding: 1.2rem;
    }

    .tour-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .tour-location {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .tour-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .tour-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .feature {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .tour-footer {
        flex-direction: column;
        gap: 0.8rem;
        padding-top: 0.8rem;
    }

    .price-info {
        text-align: center;
    }

    .price-amount {
        font-size: 1.2rem;
    }

    /* Filter Buttons */
    .tour-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .tour-filter {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 0;
    }

    /* Destinations */
    .destinations-grid {
        gap: 1.5rem;
    }

    .destination-content {
        padding: 1rem;
    }

    .destination-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .destination-content p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* Training */
    .training-grid {
        gap: 1.5rem;
    }

    .training-card {
        padding: 1.2rem;
    }

    .training-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .training-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .training-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* Testimonials */
    .testimonials-slider {
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    /* Contact */
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* CTA Section */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: 0 1rem;
        padding-top: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        line-height: 1.4;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1.8rem;
        justify-items: center;
    }

    .stat {
        padding: 0.4rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .cta-nav {
        width: 100%;
        max-width: 350px;
    }

    /* Tour Cards */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .tour-card {
        min-height: auto;
    }

    .tour-content {
        padding: 1rem;
    }

    .tour-title {
        font-size: 1rem;
    }

    .tour-location {
        font-size: 0.8rem;
    }

    .tour-description {
        font-size: 0.8rem;
    }

    .tour-features {
        gap: 0.3rem;
    }

    .feature {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .tour-footer {
        padding-top: 0.6rem;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .price-per {
        font-size: 0.9rem;
    }

    /* Filter Buttons */
    .tour-filters {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .tour-filter {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex: 1 1 calc(33.333% - 0.27rem);
        min-width: 80px;
    }

    /* Section Headers */
    .section-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .destination-image {
        height: 140px;
    }

    .destination-content {
        padding: 0.8rem;
    }

    .destination-content h3 {
        font-size: 1rem;
    }

    .destination-content p {
        font-size: 0.8rem;
    }

    /* Training */
    .training-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .training-card {
        padding: 1rem;
        text-align: center;
    }

    .training-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .training-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .training-card p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-card {
        padding: 1rem;
        text-align: center;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .contact-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .contact-card p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    /* CTA Section */
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    /* Mobile Menu */
    .nav-menu.active {
        padding: 1.5rem;
    }

    .nav-menu.active .nav-link {
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
}

/* Mobile Menu Animation */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.nav-menu.active .nav-link {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

/* Hamburger Animation */
.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);
}

/* Notification Styles */
.notification {
    border-radius: var(--radius-lg);
    font-weight: 600;
    animation: slideInRight 0.4s ease;
}

.notification-success {
    background: var(--gradient-culinary);
}

.notification-error {
    background: var(--gradient-wine);
}

/* Field Error Styles */
.field-error {
    animation: fadeInUp 0.3s ease;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Focus States */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .tour-footer,
    .booking-form-container {
        display: none !important;
    }
}