/* Italy Family Vacations - Family 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 - Family Theme */
:root {
    /* Primary Colors - Family & Warm */
    --primary-orange: #FF6B35;
    --primary-yellow: #F7931E;
    --primary-peach: #FFB627;
    --accent-coral: #FF8C42;
    --accent-cream: #FFE66D;

    /* Family Colors */
    --family-pink: #FF6B6B;
    --family-blue: #4ECDC4;
    --family-purple: #8B5CF6;
    --family-green: #10B981;

    /* Gradients for Joyful Feel */
    --gradient-family: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF6B6B 100%);
    --gradient-warm: linear-gradient(135deg, #F7931E 0%, #FFB627 50%, #FFE66D 100%);
    --gradient-playful: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #8B5CF6 100%);
    --gradient-sunshine: linear-gradient(135deg, #FFB627 0%, #FFE66D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(255, 107, 107, 0.8) 100%);

    /* Backgrounds */
    --bg-light: #FFF8F0;
    --bg-white: #FFFFFF;
    --bg-cream: #FEF7E0;
    --bg-warm: #FFF0E6;
    --bg-darker: #8B4513;

    /* Text */
    --text-dark: #8B4513;
    --text-medium: #D2691E;
    --text-light: #CD853F;
    --text-white: #FFFFFF;
    --text-gray: #6C757D;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(255, 107, 53, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 107, 53, 0.2);
    --shadow-heavy: 0 12px 40px rgba(255, 107, 53, 0.3);
    --shadow-family: 0 8px 25px rgba(255, 107, 107, 0.4);

    /* Border Radius */
    --radius-sm: 15px;
    --radius-md: 25px;
    --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-family {
    background: var(--gradient-family);
    color: white;
    box-shadow: var(--shadow-family);
}

.btn-family:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-orange);
}

.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(255, 107, 53, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.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: 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.logo-accent {
    background: var(--gradient-family);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.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;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--family-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-family);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-family);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-family);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.cta-nav::after {
    display: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.desktop-only {
    display: flex !important;
}

.mobile-language-switcher {
    display: none;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    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(--primary-orange);
    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;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 0.5rem;
        justify-content: space-between;
        align-items: center;
        gap: 0.25rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .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;
    }

    .nav-logo {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: var(--transition);
        flex-shrink: 0;
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .bar {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: var(--transition);
        border-radius: 2px;
    }

    .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);
    }

    .mobile-language-switcher {
        padding: 1rem 0;
        border-top: 1px solid #eee;
        margin-top: 1rem;
        display: block;
    }

    .mobile-language-switcher .language-switcher {
        justify-content: center;
        gap: 1rem;
    }

    .desktop-only {
        display: none !important;
    }
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto 0 -20px;
        padding: 0 0.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem;
        visibility: visible;
        height: auto;
        width: 100%;
        opacity: 1;
        position: static;
        left: auto;
        top: auto;
        clip: auto;
        clip-path: none;
        transform: none;
        font-size: inherit;
        line-height: inherit;
        border: none;
        background: transparent;
    }

    .hero-stats * {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .stat {
        flex: 0 0 auto;
        padding: 0.4rem 0.6rem;
        min-width: 70px;
    }

    .stat-number {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-badges {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.15rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.5rem;
        box-sizing: border-box;
    }

    .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    /* 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;
    }

    /* Vacations */
    .vacation-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .vacation-filter {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .vacations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vacation-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .vacation-card img {
        height: 200px;
        object-fit: cover;
    }

    .vacation-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .vacation-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .vacation-card .price {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .vacation-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .vacation-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Activities */
    .activities-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 textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 107, 53, 0.2);
        background: white;
        width: 100%;
        box-sizing: border-box;
        transition: border-color 0.2s ease;
    }

    /* 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;
    }

    /* General Mobile Improvements */
    .btn {
        min-height: 44px; /* iOS touch target minimum */
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: var(--radius-md);
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: none;
        font-weight: 600;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn:active {
        transform: translateY(0);
    }

    /* Touch-friendly links */
    a {
        touch-action: manipulation;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    .terms-content {
        padding: 2rem 1.5rem;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.8rem 0.5rem;
    }

    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }

    .flag-img {
        width: 16px;
        height: 16px;
    }
}

/* 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-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    z-index: -2;
}

.family-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.15);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease;
    margin-left: 0;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px rgba(255,165,0,0.2);
    font-weight: 900;
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1.2;
}

.highlight-family {
    color: white;
    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: 2rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.stat {
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 1;
}

.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); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-family);
    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-family);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Family Vacations Section */
.family-vacations {
    background: var(--bg-light);
}

.vacation-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.vacation-filter {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-medium);
}

.vacation-filter:hover,
.vacation-filter.active {
    background: var(--gradient-family);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-family);
}

.vacations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.vacation-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.vacation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.vacation-card.featured {
    border: 3px solid var(--family-pink);
    position: relative;
}

.vacation-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.vacation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vacation-card:hover .vacation-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-family);
    color: white;
    transition: var(--transition);
}

.vacation-card:hover .image-placeholder {
    transform: scale(1.1);
}

.family-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--family-pink);
    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(--family-yellow);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.vacation-content {
    padding: 2rem;
}

.vacation-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.vacation-location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.vacation-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.85rem;
}

.vacation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vacation-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(--family-pink);
}

.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(255, 107, 53, 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;
}

.vacations-count {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Activities */
.activities {
    background: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-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(255, 107, 53, 0.1);
    overflow: hidden;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.activity-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(255, 107, 53, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-family);
    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-orange);
    border: 1px solid rgba(255, 107, 53, 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(255, 107, 53, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--family-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-family);
    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 {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 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-orange);
    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(255, 107, 53, 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-darker);
    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-cream);
}

.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-cream);
}

.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-cream);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

/* Responsive */
/* Large screens - 3 testimonials per row */
@media (min-width: 1200px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}