/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Импорт современных шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Базовые стили */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Анимация частиц на фоне */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="25" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="15" r="1.5" fill="rgba(255,255,255,0.12)"/><circle cx="80" cy="35" r="0.8" fill="rgba(255,255,255,0.09)"/><circle cx="25" cy="60" r="1.2" fill="rgba(255,255,255,0.11)"/><circle cx="70" cy="70" r="0.7" fill="rgba(255,255,255,0.1)"/><circle cx="45" cy="85" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(-5px); }
    75% { transform: translateY(-10px) translateX(3px); }
}

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

/* Стили секций */
section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    color: #333333;
}

section:nth-child(even) {
    background: #f8fafc;
    color: #333333;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

/* Header стили */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    padding: 1.5rem 0;
    background: transparent;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Логотип */
.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.5)); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Навигационное меню */
.nav-menu {
    display: flex;
}

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

.nav-link {
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.nav-link:hover {
    color: white;
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

/* Действия навигации */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Языковой селектор */
.language-selector {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #2563eb;
    font-size: 0.9rem;
}

.lang-dropdown-btn:hover {
    background: rgba(37, 99, 235, 0.2);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.active {
    background: #2563eb;
    color: white;
}

/* Мобильное меню */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    transition: all 0.3s ease;
}

/* Основной контент */
.main {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
}

/* Hero секция */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    margin-top: -100px;
    padding: 100px 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(37, 99, 235, 0.05) 100%);
    z-index: 0;
}

/* Анимированные частицы */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="30" r="2" fill="rgba(37,99,235,0.15)"/><circle cx="60" cy="70" r="1.5" fill="rgba(37,99,235,0.1)"/><circle cx="120" cy="40" r="1" fill="rgba(37,99,235,0.2)"/><circle cx="180" cy="90" r="2.5" fill="rgba(37,99,235,0.12)"/><circle cx="40" cy="120" r="1.8" fill="rgba(37,99,235,0.18)"/><circle cx="160" cy="160" r="1.2" fill="rgba(37,99,235,0.14)"/></svg>');
    background-size: 400px 400px;
    animation: particleFloat 25s linear infinite;
    z-index: -2;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -100px); }
}

/* Волны на фоне */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.03));
    z-index: -1;
}

.hero-waves::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C150,100 350,0 600,60 C850,120 1050,20 1200,60 L1200,120 L0,120 Z" fill="rgba(37,99,235,0.05)"/></svg>');
    background-size: 600px 100px;
    animation: waves 15s ease-in-out infinite;
}

@keyframes waves {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(102, 126, 234, 0.9) 0%, 
        rgba(118, 75, 162, 0.8) 50%, 
        rgba(26, 26, 26, 0.7) 100%
    );
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="20" r="15" fill="url(%23grad1)"/><circle cx="80" cy="30" r="10" fill="url(%23grad1)"/><circle cx="60" cy="70" r="20" fill="url(%23grad1)"/><circle cx="30" cy="80" r="12" fill="url(%23grad1)"/></svg>');
    background-size: 300px 300px;
    animation: bubbles 15s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes bubbles {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -10px) scale(1.1); }
    50% { transform: translate(-5px, -20px) scale(0.9); }
    75% { transform: translate(15px, -5px) scale(1.05); }
}

/* Hero сетка */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
    z-index: 2;
    position: relative;
}

.hero-content {
    max-width: none;
    text-align: left;
    padding: 0;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2563eb;
}

.hero-badge i {
    font-size: 1.1rem;
    color: #2563eb;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.title-gradient {
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}



/* Hero описание */
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 480px;
}

/* Hero статистика */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(37, 99, 235, 0.4);
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 400;
}

@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero визуальная часть */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

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

.trip-info {
    margin-bottom: 20px;
}

.trip-date,
.trip-location,
.trip-weather {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #888888;
    font-size: 0.95rem;
}

.trip-date i,
.trip-location i,
.trip-weather i {
    color: #666666;
    width: 18px;
}

.trip-fish {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fish-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #888888;
    border-left: 3px solid #666666;
}

/* Плавающие элементы */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatAround 10s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.float-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatAround {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translate(10px, -15px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-5px, -25px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translate(-15px, -10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Новый индикатор прокрутки */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: white;
    transform: translateY(-5px);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 400;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.9);
    color: white;
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    border: none;
    backdrop-filter: blur(10px);
}

.btn::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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-hero {
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.9));
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95));
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(15px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background: white;
    color: #007bff;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.section {
    padding: 80px 0;
    min-height: 400px;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section h2 {
        font-size: 2rem;
    }
}

/* Новая галерея */
.gallery {
    position: relative;
    padding: 120px 0;
    background: #ffffff !important;
    overflow: hidden;
    color: #333333;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
    z-index: 0;
    pointer-events: none;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gallery-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="140" cy="30" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="130" r="1.8" fill="rgba(255,255,255,0.12)"/><circle cx="170" cy="120" r="1" fill="rgba(255,255,255,0.18)"/></svg>');
    background-size: 300px 300px;
    animation: particleDrift 20s linear infinite;
}

@keyframes particleDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-30px, -50px); }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

/* Header галереи */
.gallery-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(37, 99, 235, 0.9);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}

.gallery-badge i {
    color: #2563eb;
    font-size: 1.1rem;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 4px;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

/* Статистика галереи */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
}

.gallery-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
    transition: all 0.3s ease;
}

.gallery-stat:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.gallery-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb !important;
    line-height: 1;
    margin-bottom: 2px;
}

.gallery-stat .stat-text {
    font-size: 0.85rem;
    color: #666666 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-text {
    font-size: 0.85rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Gallery Showcase */
.gallery-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-main {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
    padding: 30px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.image-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2563eb;
}

.fish-details {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}

.expand-btn {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-btn:hover {
    background: rgba(37, 99, 235, 1);
    transform: scale(1.1);
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thumbnails-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.thumbnail.active {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.gallery-nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    color: rgba(37, 99, 235, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-nav-btn:hover {
    background: rgba(37, 99, 235, 0.8);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.gallery-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2563eb;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* Gallery Actions */
.gallery-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Адаптивность галереи */
@media (max-width: 768px) {
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-header {
        margin-bottom: 60px;
    }
    
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .gallery-stat {
        padding: 15px 25px;
        gap: 12px;
        max-width: 280px;
        width: 100%;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
        color: #2563eb !important;
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .main-image {
        height: 350px;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .image-info h3 {
        font-size: 1.5rem;
    }
    
    .fish-details {
        font-size: 0.85rem;
    }
    
    .expand-btn {
        width: 40px;
        height: 40px;
    }
    
    .thumbnails-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .thumbnail img {
        height: 80px;
    }
    
    .gallery-controls {
        gap: 10px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .gallery-stats {
        gap: 15px;
    }
    
    .gallery-stat {
        padding: 12px 20px;
        gap: 10px;
    }
    
        .stat-value {
        font-size: 1.4rem;
        color: #2563eb !important;
    }

    .stat-text {
        font-size: 0.75rem;
        color: #666666 !important;
    }
    
    .main-image {
        height: 280px;
    }
    
    .thumbnails-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thumbnail img {
        height: 70px;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8, #3b82f6);
    margin: 0 auto 30px;
    border-radius: 4px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Desktop Gallery */
.gallery-desktop {
    display: block;
    margin-bottom: 40px;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #007bff;
    border-radius: 50%;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.gallery-nav-btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.gallery-nav-btn i {
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item-media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-media img {
    transform: scale(1.05);
}

.error-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Gallery */
.gallery-mobile {
    display: none;
}

.gallery-mobile-container {
    position: relative;
    margin-bottom: 20px;
}

.gallery-mobile-item {
    display: none;
}

.gallery-mobile-item.active {
    display: block;
}

.gallery-mobile-media {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-mobile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-mobile-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-mobile-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-mobile-indicator.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Адаптивность для галереи */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gallery-item-media {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-desktop {
        display: none;
    }
    
    .gallery-mobile {
        display: block;
    }
    
    .gallery-mobile-media {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .gallery-mobile-media {
        height: 250px;
    }
}

/* Новая секция фактов */
.facts {
    position: relative;
    padding: 120px 0;
    background: #f8fafc !important;
    color: #333333;
    overflow: hidden;
}

.facts-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="40" cy="30" r="1.5" fill="rgba(37,99,235,0.2)"/><circle cx="90" cy="70" r="1" fill="rgba(59,130,246,0.15)"/><circle cx="160" cy="50" r="1.2" fill="rgba(37,99,235,0.15)"/><circle cx="60" cy="140" r="1.8" fill="rgba(59,130,246,0.1)"/><circle cx="180" cy="130" r="1" fill="rgba(37,99,235,0.25)"/></svg>');
    background-size: 350px 350px;
    animation: particleFloat 30s linear infinite;
    z-index: -2;
}

.facts-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C200,20 400,100 600,60 C800,20 1000,100 1200,60 L1200,0 L0,0 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 800px 150px;
    animation: waveMove 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-200px); }
}

/* Facts Header */
.facts-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.facts-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(37, 99, 235, 0.9);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}

.facts-badge i {
    color: #2563eb;
    font-size: 1.1rem;
}

.facts-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}

.facts-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 4px;
}

.facts-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Facts Showcase */
.facts-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.facts-main-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: mainCardAppear 0.8s ease-out 0.2s forwards;
}

@keyframes mainCardAppear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.facts-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.main-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.main-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.main-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.main-card-subtitle {
    font-size: 1rem;
    color: #666666;
    font-weight: 300;
}

.main-card-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.main-stat {
    text-align: center;
}

.main-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 5px;
}

.main-stat-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.main-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333333;
    font-size: 0.95rem;
}

.feature-item i {
    color: #2563eb;
    font-size: 1.1rem;
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fact-card.modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: factCardAppear 0.6s ease-out forwards;
}

.fact-card.modern:nth-child(1) {
    animation-delay: 0.1s;
}

.fact-card.modern:nth-child(2) {
    animation-delay: 0.2s;
}

.fact-card.modern:nth-child(3) {
    animation-delay: 0.3s;
}

.fact-card.modern:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes factCardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fact-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.fact-card.modern:hover::before {
    left: 100%;
}

.fact-card.modern:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(37, 99, 235, 0.3);
}

.fact-card-inner {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 5px;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fact-label {
    font-size: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.fact-icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(37, 99, 235, 0.6);
    font-size: 1.2rem;
}

.fact-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Facts Testimonial */
.facts-testimonial {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialAppear 0.8s ease-out 0.6s forwards;
}

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

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.testimonial-text {
    font-size: 1.3rem;
    color: #333333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 300;
}

/* Адаптивность фактов */
@media (max-width: 768px) {
    .facts {
        padding: 80px 0;
    }
    
    .facts-header {
        margin-bottom: 60px;
    }
    
    .facts-title {
        font-size: 2.5rem;
    }
    
    .facts-subtitle {
        font-size: 1.1rem;
    }
    
    .facts-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .facts-main-card {
        padding: 30px 25px;
    }
    
    .main-card-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .main-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .main-card-title {
        font-size: 1.3rem;
    }
    
    .main-card-stats {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .main-stat-number {
        font-size: 1.8rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fact-card.modern {
        padding: 25px 20px;
    }
    
    .fact-number {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .facts {
        padding: 60px 0;
    }
    
    .facts-title {
        font-size: 2rem;
    }
    
    .facts-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .facts-main-card {
        padding: 25px 20px;
    }
    
    .main-card-title {
        font-size: 1.1rem;
    }
    
    .main-card-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .main-stat-number {
        font-size: 1.6rem;
    }
    
    .fact-number {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.facts-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007bff 100%);
    z-index: -2;
}

.facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,30 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    background-size: 200px 200px;
    animation: wave-animation 20s linear infinite;
    z-index: -1;
}

@keyframes wave-animation {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

/* Светлая версия заголовка секции */
.section-title.light {
    color: white;
}

.section-divider.light {
    background: linear-gradient(45deg, #2563eb, #ffffff);
}

/* Сетка фактов */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Карточка факта */
.fact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Иконка факта */
.fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.fact-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Контент факта */
.fact-content {
    flex: 1;
}

.fact-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    line-height: 1.3;
}

.fact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Анимация счетчиков (бонус) */
.fact-card.animate-counter .fact-title {
    position: relative;
    overflow: hidden;
}

.fact-card.animate-counter .fact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    animation: counter-line 2s ease-out forwards;
}

@keyframes counter-line {
    to { width: 100%; }
}

/* Адаптивность для фактов */
@media (max-width: 768px) {
    .facts {
        padding: 60px 0;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .fact-card {
        padding: 25px;
        gap: 15px;
    }
    
    .fact-icon {
        width: 50px;
        height: 50px;
    }
    
    .fact-icon i {
        font-size: 1.5rem;
    }
    
    .fact-title {
        font-size: 1.2rem;
    }
    
    .fact-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .facts {
        padding: 40px 0;
    }
    
    .fact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .facts-grid {
        gap: 20px;
    }
}

/* Новая секция яхт */
.boats {
    position: relative;
    padding: 120px 0;
    background: #ffffff !important;
    color: #333333;
    overflow: hidden;
}

.boats-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="100" cy="80" r="1" fill="rgba(255,215,0,0.15)"/><circle cx="170" cy="60" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="150" r="1.8" fill="rgba(255,215,0,0.12)"/><circle cx="190" cy="140" r="1" fill="rgba(255,255,255,0.18)"/></svg>');
    background-size: 400px 400px;
    animation: particleFloat 35s linear infinite;
    z-index: -2;
}

.boats-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,80 C250,40 350,120 600,80 C850,40 950,120 1200,80 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: 900px 180px;
    animation: waveMove 25s ease-in-out infinite;
    z-index: -1;
}

/* Boats Header */
.boats-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.boats-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2563eb;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.boats-badge i {
    color: #2563eb;
    font-size: 1.1rem;
}

.boats-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}

.boats-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 4px;
}

.boats-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

/* Boats Filters */
.boats-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.filter-btn i {
    font-size: 1rem;
}

/* Boats Showcase */
.boats-showcase {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.featured-boat {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.featured-badge i {
    font-size: 1rem;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-image:hover .image-overlay {
    opacity: 1;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.view-gallery-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.view-gallery-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.featured-info {
    padding: 20px 0;
}

.boat-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(37, 99, 235, 0.15);
    color: #2563eb;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.featured-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.featured-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.spec-info {
    flex: 1;
}

.spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.spec-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.price-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.featured-actions .btn {
    flex: 1;
    max-width: 200px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-actions .btn-primary {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.featured-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.featured-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.boats-grid.compact {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Мини-карточки лодок */
.boat-card-mini {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: boatCardAppear 0.6s ease-out forwards;
}

.boat-card-mini:nth-child(1) { animation-delay: 0.1s; }
.boat-card-mini:nth-child(2) { animation-delay: 0.2s; }
.boat-card-mini:nth-child(3) { animation-delay: 0.3s; }
.boat-card-mini:nth-child(4) { animation-delay: 0.4s; }
.boat-card-mini:nth-child(5) { animation-delay: 0.5s; }
.boat-card-mini:nth-child(6) { animation-delay: 0.6s; }
.boat-card-mini:nth-child(7) { animation-delay: 0.7s; }
.boat-card-mini:nth-child(8) { animation-delay: 0.8s; }

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

.boat-card-mini:hover,
.boat-card-mini.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2), 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.mini-image {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.mini-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mini-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

/* Адаптивность для яхт */
@media (max-width: 768px) {
    .boats-title {
        font-size: 2.5rem;
    }
    
    .boats-subtitle {
        font-size: 1rem;
    }
    
    .boats-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-specs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .boats-grid.compact {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .mini-image {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .boats-title {
        font-size: 2rem;
    }
    
    .featured-boat {
        padding: 25px;
        margin: 0 15px;
    }
    
    .boats-grid.compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Старые стили лодок - удаляем */
.boat-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.boat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

/* Изображение лодки */
.boat-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.boat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.boat-card:hover .boat-image img {
    transform: scale(1.05);
}

.boat-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Контент карточки */
.boat-content {
    padding: 25px;
}

.boat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.boat-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.boat-location i {
    color: #2563eb;
}

/* Спецификации лодки */
.boat-specs {
    margin-bottom: 25px;
}

.boat-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666666;
}

.boat-spec i {
    color: #2563eb;
    width: 16px;
}

/* Действия */
.boat-actions {
    display: flex;
    gap: 10px;
}

.btn-select,
.btn-gallery {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-select {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-select:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-gallery {
    background: rgba(255, 255, 255, 0.9);
    color: #666666;
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.btn-gallery:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Фильтры (можно добавить позже) */
.boats-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Модальное окно для галереи лодок */
.boat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.boat-modal.active {
    opacity: 1;
    visibility: visible;
}

.boat-modal.active .boat-modal-content {
    transform: scale(1);
}

.boat-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 70%;
    max-height: 80%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.boat-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boat-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.boat-modal-close {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 10px;
    right: 10px;
}

.boat-modal-close:hover {
    background: rgba(220, 53, 69, 0.8);
}

.boat-modal-gallery {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.boat-modal-image {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.boat-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.boat-modal-image:hover img {
    transform: scale(1.05);
}

/* Адаптивность для яхт */
@media (max-width: 768px) {
    .boats {
        padding: 60px 0;
    }
    
    .boats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .boat-card {
        border-radius: 15px;
    }
    
    .boat-image {
        height: 200px;
    }
    
    .boat-content {
        padding: 20px;
    }
    
    .boat-title {
        font-size: 1.3rem;
    }
    
    .boat-actions {
        flex-direction: column;
    }
    
    .btn-select,
    .btn-gallery {
        flex: none;
    }
    
    .boats-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .boats {
        padding: 40px 0;
    }
    
    .boat-content {
        padding: 15px;
    }
    
    .boat-price-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .boat-modal-content {
        max-width: 95%;
        max-height: 90%;
    }
    
    .boat-modal-gallery {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/* Новая секция маршрутов */
.routes {
    position: relative;
    padding: 120px 0;
    background: #f8fafc !important;
    color: #333333;
    overflow: hidden;
}

.routes-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="40" cy="50" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="120" cy="30" r="1.5" fill="rgba(255,215,0,0.12)"/><circle cx="180" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="140" r="1.8" fill="rgba(255,215,0,0.15)"/><circle cx="160" cy="160" r="1.3" fill="rgba(255,255,255,0.12)"/></svg>');
    background-size: 350px 350px;
    animation: particleFloat 40s linear infinite;
    z-index: -2;
}

.routes-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C300,20 400,100 600,60 C800,20 900,100 1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 800px 160px;
    animation: waveMove 20s ease-in-out infinite;
    z-index: -1;
}

/* Routes Header */
.routes-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.routes-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2563eb;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.routes-badge i {
    color: #2563eb;
    font-size: 1.1rem;
}

.routes-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}

.routes-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 4px;
}

.routes-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Routes Showcase */
.routes-showcase {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.featured-route {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.featured-route-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.featured-route-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-route-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.featured-route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-route-image:hover .route-overlay {
    opacity: 1;
}

.featured-route-image:hover img {
    transform: scale(1.05);
}

.route-stats {
    display: flex;
    gap: 20px;
}

.route-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.routes .stat-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

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

.routes .stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.routes .stat-label {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-route-info {
    padding: 20px 0;
}

.route-type {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(37, 99, 235, 0.15);
    color: #2563eb;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.featured-route-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.featured-route-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.featured-route-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.route-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.detail-info {
    flex: 1;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.detail-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-route-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.featured-route-actions .btn {
    flex: 1;
    max-width: 200px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.routes-grid.compact {
    max-width: 600px;
}

/* Мини-карточки маршрутов */
.route-card-mini {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: routeCardAppear 0.8s ease-out forwards;
}

.route-card-mini:nth-child(1) { animation-delay: 0.2s; }
.route-card-mini:nth-child(2) { animation-delay: 0.4s; }

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

.route-card-mini:hover,
.route-card-mini.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.2), 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.mini-route-image {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.mini-route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.mini-route-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.mini-route-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.mini-route-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.mini-stat {
    font-size: 0.85rem;
    color: #666666;
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

/* Адаптивность для маршрутов */
@media (max-width: 768px) {
    .routes-title {
        font-size: 2.5rem;
    }
    
    .routes-subtitle {
        font-size: 1rem;
    }
    
    .featured-route-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-route-title {
        font-size: 2rem;
    }
    
    .featured-route-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-route-actions {
        flex-direction: column;
    }
    
    .route-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .routes-grid.compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mini-route-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .routes-title {
        font-size: 2rem;
    }
    
    .featured-route {
        padding: 25px;
        margin: 0 15px 40px;
    }
    
    .mini-route-stats {
        flex-direction: column;
        gap: 8px;
    }
}

/* Старые стили маршрутов - удаляем */
.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

/* Изображение маршрута */
.route-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Контент карточки маршрута */
.route-content {
    padding: 25px;
}

.route-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.route-distance {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.route-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Детали маршрута */
.route-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.route-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.route-detail i {
    color: #007bff;
    width: 16px;
}

/* Интерактивные элементы маршрутов */
.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.route-card:hover::before {
    opacity: 1;
}

/* Кнопка "Подробнее" для маршрутов */
.route-action {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.btn-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-route:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

/* Дополнительная информация о маршруте */
.route-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #2563eb;
}

.route-info-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.route-info-text {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Статистика маршрута */
.route-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.route-stat {
    text-align: center;
}

.route-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
}

.route-stat-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Адаптивность для маршрутов */
@media (max-width: 768px) {
    .routes {
        padding: 60px 0;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .route-card {
        border-radius: 15px;
    }
    
    .route-image {
        height: 200px;
    }
    
    .route-content {
        padding: 20px;
    }
    
    .route-title {
        font-size: 1.3rem;
    }
    
    .route-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .route-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .routes {
        padding: 40px 0;
    }
    
    .route-content {
        padding: 15px;
    }
    
    .route-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .route-stats {
        grid-template-columns: 1fr;
    }
}

/* Новая секция сезонов */
.seasons {
    position: relative;
    padding: 120px 0;
    background: #ffffff !important;
    color: #333333;
    overflow: hidden;
}

.seasons-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="40" r="1.3" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1.6" fill="rgba(37,99,235,0.14)"/><circle cx="170" cy="70" r="1.1" fill="rgba(255,255,255,0.09)"/><circle cx="50" cy="130" r="1.9" fill="rgba(37,99,235,0.16)"/><circle cx="140" cy="150" r="1.4" fill="rgba(255,255,255,0.13)"/></svg>');
    background-size: 380px 380px;
    animation: particleFloat 45s linear infinite;
    z-index: -2;
}

.seasons-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,70 C250,30 350,110 600,70 C850,30 950,110 1200,70 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.06)"/></svg>');
    background-size: 900px 140px;
    animation: waveMove 22s ease-in-out infinite;
    z-index: -1;
}

/* Seasons Header */
.seasons-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.seasons-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2563eb;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.seasons-badge i {
    color: #2563eb;
    font-size: 1.1rem;
}

.seasons-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}

.seasons-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 4px;
}

.seasons-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Seasons Grid */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Season Cards */
.season-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: seasonCardAppear 0.8s ease-out forwards;
}

.season-card:nth-child(1) { animation-delay: 0.1s; }
.season-card:nth-child(2) { animation-delay: 0.2s; }
.season-card:nth-child(3) { animation-delay: 0.3s; }
.season-card:nth-child(4) { animation-delay: 0.4s; }
.season-card:nth-child(5) { animation-delay: 0.5s; }
.season-card:nth-child(6) { animation-delay: 0.6s; }

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

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Season Card Header */
.season-card-header {
    position: relative;
    padding: 25px 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fish-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.season-card:hover .fish-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.season-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.season-badge.summer {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.season-badge.autumn {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    color: white;
}

.season-badge.winter {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    color: white;
}

.season-badge.mixed {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
}

.season-badge.year-round {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
}

/* Season Card Content */
.season-card-content {
    padding: 0 25px 25px;
}

.fish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.season-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Season Months */
.season-months {
    margin-bottom: 20px;
}

.months-label {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 8px;
    font-weight: 500;
}

.months-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.month {
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666666;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.month.active {
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1));
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

/* Season Stats */
.season-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    flex: 1;
}

.seasons .stat-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.seasons .stat-text {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
}

/* Season Card Footer */
.season-card-footer {
    padding: 0 25px 25px;
}

.btn-season {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-season:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Секция услуг */
.services {
    position: relative;
    padding: 120px 0;
    background: #f8fafc !important;
    color: #333333;
    overflow: hidden;
}

.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="40" r="1.3" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1.6" fill="rgba(37,99,235,0.14)"/><circle cx="170" cy="70" r="1.1" fill="rgba(255,255,255,0.09)"/><circle cx="50" cy="130" r="1.9" fill="rgba(37,99,235,0.16)"/><circle cx="140" cy="150" r="1.4" fill="rgba(255,255,255,0.13)"/></svg>');
    background-size: 380px 380px;
    animation: particleFloat 45s linear infinite;
    z-index: -2;
}

.services-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,70 C250,30 350,110 600,70 C850,30 950,110 1200,70 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.06)"/></svg>');
    background-size: 900px 140px;
    animation: waveMove 22s ease-in-out infinite;
    z-index: -1;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2563eb;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.services-badge i {
    color: #2563eb;
    font-size: 1.1rem;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 4px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: serviceCardAppear 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card.premium {
    border: 2px solid rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.05);
}

.service-card.premium:hover {
    border-color: rgba(37, 99, 235, 0.7);
    box-shadow: 0 35px 100px rgba(37, 99, 235, 0.2);
}

/* Service Card Image */
.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    transition: background 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card:hover .service-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Service Card Header */
.service-card-header {
    position: relative;
    padding: 25px 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.service-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.active {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.service-badge.relaxing {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    color: white;
}

.service-badge.fishing {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
}

.service-badge.training {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
}

.service-badge.premium {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Service Card Content */
.service-card-content {
    padding: 0 25px 25px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Service Features */
.service-features {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 8px 0;
}

.feature i {
    width: 20px;
    color: #2563eb;
    text-align: center;
}

.feature span {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
}

/* Service Price */
.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.price-period {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

.premium-price .price-value {
    font-size: 2.2rem;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Card Footer */
.service-card-footer {
    padding: 0 25px 25px;
}

.btn-service {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-service:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-service.premium {
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-service.premium:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb, #3b82f6);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.5);
}

/* Адаптивность для услуг */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .service-name {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card-header {
        padding: 20px 20px 15px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .service-card-content {
        padding: 0 20px 20px;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .premium-price .price-value {
        font-size: 2rem;
    }
    
    .service-card-footer {
        padding: 0 20px 20px;
    }
    
    .btn-service {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .service-card {
        border-radius: 20px;
    }
    
    .service-card-header {
        padding: 15px 15px 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .service-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .service-card-content {
        padding: 0 15px 15px;
        text-align: center;
    }
    
    .service-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .service-features {
        margin-bottom: 15px;
    }
    
    .feature {
        justify-content: center;
        padding: 4px 0;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .premium-price .price-value {
        font-size: 1.8rem;
    }
    
    .service-card-footer {
        padding: 0 15px 15px;
    }
    
    .btn-service {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Адаптивность для сезонов */
@media (max-width: 1024px) {
    .seasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .fish-name {
        font-size: 1.6rem;
    }
    
    .season-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .seasons-title {
        font-size: 2.5rem;
    }
    
    .seasons-subtitle {
        font-size: 1rem;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .season-card-header {
        padding: 20px 20px 15px;
    }
    
    .fish-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .season-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .season-card-content {
        padding: 0 20px 20px;
    }
    
    .fish-name {
        font-size: 1.4rem;
    }
    
    .season-description {
        font-size: 0.9rem;
    }
    
    .season-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat {
        padding: 8px 12px;
    }
    
    .stat-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .season-card-footer {
        padding: 0 20px 20px;
    }
    
    .btn-season {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .seasons-title {
        font-size: 2rem;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .season-card {
        border-radius: 20px;
    }
    
    .season-card-header {
        padding: 15px 15px 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .fish-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .season-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .season-card-content {
        padding: 0 15px 15px;
        text-align: center;
    }
    
    .fish-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .season-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .season-months {
        margin-bottom: 15px;
    }
    
    .months-label {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .months-list {
        justify-content: center;
    }
    
    .month {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .season-stats {
        gap: 8px;
    }
    
    .stat {
        flex-direction: column;
        padding: 8px;
        text-align: center;
        gap: 4px;
    }
    
    .stat-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        margin: 0 auto;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .season-card-footer {
        padding: 0 15px 15px;
    }
    
    .btn-season {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}



.seasons .container {
    position: relative;
    z-index: 1;
}

.seasons-table-container {
    margin-top: 60px;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.seasons-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffd700, #dc3545);
    border-radius: 20px 20px 0 0;
}

/* Таблица сезонов */
.seasons-table {
    min-width: 800px;
    background: transparent;
}

/* Заголовок таблицы */
.seasons-header {
    display: grid;
    grid-template-columns: 200px repeat(12, 1fr);
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.seasons-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.fish-column,
.month-column {
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.month-column:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.fish-column {
    text-align: left;
    padding-left: 25px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Строки с рыбой */
.seasons-row {
    display: grid;
    grid-template-columns: 200px repeat(12, 1fr);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.seasons-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.4s ease;
    z-index: 0;
}

.seasons-row:hover::before {
    width: 5px;
}

.seasons-row:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.05));
    transform: translateX(5px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}

.seasons-row:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}



.fish-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transition: height 0.3s ease;
}

.seasons-row:hover .fish-info::before {
    height: 100%;
}

.fish-icon {
    font-size: 1.5rem;
    color: #2563eb;
    padding: 8px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.seasons-row:hover .fish-icon {
    transform: scale(1.2) rotate(10deg);
    background: rgba(37, 99, 235, 0.2);
}

.fish-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.seasons-row:hover .fish-name {
    color: #2563eb;
}

/* Ячейки месяцев */
.month-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    border-right: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.month-cell:hover {
    background: rgba(37, 99, 235, 0.1);
}

.month-cell.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.month-cell.active:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: scale(1.05);
}




@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Текущий месяц подсветка */
.current-month {
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.4);
    position: relative;
    animation: glow-current 3s ease-in-out infinite;
}

.current-month::before {
    content: '★';
    position: absolute;
    top: 3px;
    right: 3px;
    color: #333;
    font-size: 0.9rem;
    font-weight: bold;
    animation: twinkle 2s ease-in-out infinite;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.8);
}

@keyframes glow-current {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), inset 0 0 0 2px rgba(255, 255, 255, 0.6);
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Легенда */
.seasons-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.legend-item:hover .legend-dot {
    transform: scale(1.2);
}

.legend-active {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
}

.legend-current {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: glow-legend 2s ease-in-out infinite;
}

.legend-inactive {
    background: #f0f0f0;
    border: 2px solid #e9ecef;
}

@keyframes glow-legend {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* Информационная панель */
.seasons-info {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(40, 167, 69, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-left: 5px solid #007bff;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.seasons-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: info-shine 4s infinite;
}

@keyframes info-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.seasons-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.seasons-info p {
    color: #495057;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Адаптивность для сезонов */
@media (max-width: 768px) {
    .seasons {
        padding: 60px 0;
    }
    
    .seasons-table-container {
        margin-top: 40px;
        border-radius: 10px;
    }
    
    .seasons-header {
        grid-template-columns: 150px repeat(12, 60px);
        font-size: 0.8rem;
    }
    
    .seasons-row {
        grid-template-columns: 150px repeat(12, 60px);
    }
    
    .fish-info {
        padding: 15px 10px;
        gap: 8px;
    }
    
    .fish-name {
        font-size: 0.9rem;
    }
    
    .fish-icon {
        font-size: 1rem;
    }
    
    .month-cell {
        padding: 15px 5px;
    }
    
    .season-dot {
        width: 10px;
        height: 10px;
    }
    
    .seasons-legend {
        gap: 15px;
        margin-top: 15px;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .seasons {
        padding: 40px 0;
    }
    
    .seasons-header {
        grid-template-columns: 120px repeat(12, 50px);
        font-size: 0.7rem;
    }
    
    .seasons-row {
        grid-template-columns: 120px repeat(12, 50px);
    }
    
    .fish-info {
        padding: 12px 8px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .fish-name {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .month-cell {
        padding: 12px 3px;
    }
    
    .season-dot {
        width: 8px;
        height: 8px;
    }
    
    .seasons-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Hero адаптивность */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
        min-height: 90vh;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: none;
        margin-bottom: 1.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
        margin-bottom: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
        padding: 16px 32px;
    }
    
    .hero-card {
        max-width: 350px;
        padding: 25px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .trip-date,
    .trip-location,
    .trip-weather {
        font-size: 0.9rem;
    }
    
    .fish-item {
        font-size: 0.85rem;
        padding: 7px 10px;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Services адаптивность */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card-image {
        height: 160px;
    }
    
    .service-card-header {
        padding: 20px 20px 15px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .service-card-content {
        padding: 0 20px 20px;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .service-card {
        border-radius: 20px;
    }
    
    .service-card-image {
        height: 140px;
    }
    
    .service-card-header {
        padding: 15px 15px 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .service-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .service-card-content {
        padding: 0 15px 15px;
        text-align: center;
    }
    
    .service-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .service-features {
        gap: 8px;
    }
    
    .feature {
        flex-direction: column;
        padding: 8px;
        text-align: center;
        gap: 4px;
    }
    
    .feature i {
        font-size: 0.8rem;
        width: 20px;
        height: 20px;
        margin: 0 auto;
    }
    
    .feature span {
        font-size: 0.75rem;
    }
    
    .service-card-footer {
        padding: 0 15px 15px;
    }
    
    .btn-service {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
} 

/* ==========================================
   КОНТАКТЫ
========================================== */

.contact {
    background: #ffffff !important;
    color: #333333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    text-decoration: none;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
}

.contact-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.telegram .contact-icon {
    background: linear-gradient(45deg, #0088cc, #229ED9);
}

.instagram .contact-icon {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
}

.whatsapp .contact-icon {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-content {
    text-align: center;
    flex: 1;
}

.contact-username {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-description {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.contact-button {
    flex-shrink: 0;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    justify-content: center;
}

.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #229ED9);
}

.instagram-btn {
    background: linear-gradient(45deg, #E4405F, #C13584);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-button i {
    font-size: 1rem;
}

/* Адаптивность контактов */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .contact-username {
        font-size: 1.3rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
    
    .contact-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 15px;
        padding: 0 5px;
    }
    
    .contact-link {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .contact-username {
        font-size: 1.2rem;
    }
    
    .contact-button {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: -0.3px;
    }
}