/* Основные стили сайта Seiya - УЛУЧШЕННАЯ ВЕРСИЯ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #ff8c42;
    --fire-color: #ff4500;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

/* ============================================
   АНИМАЦИИ ПРИ СКРОЛЛЕ
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ГЛАВНАЯ СТРАНИЦА - СТИЛЬ ИНЬ-ЯНЬ
   ============================================ */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.landing-header {
    text-align: center;
    padding: 2rem;
    color: white;
    position: relative;
    z-index: 10;
    animation: fadeInDown 1s ease;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
}

.landing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.landing-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================
   СЕКЦИИ - НАСТОЯЩИЙ ИНЬ-ЯНЬ С S-ОБРАЗНЫМ ИЗГИБОМ
   ============================================ */
.sections-wrapper {
    flex: 1;
    display: flex;
    position: relative;
    z-index: 1;
}

.section-half {
    position: relative;
    flex: 1;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.section-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

/* Анимации зірок та вогню */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-3px) scale(0.98);
    }
    75% {
        opacity: 0.85;
        transform: translateY(-7px) scale(1.02);
    }
}

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

/* ============================================
   КОНДИТЕРКА - ИНЬ (СВЕТЛАЯ ЧАСТЬ) - ЛЕВАЯ СТОРОНА
   ============================================ */
.confectionery-section {
    background-image: url('../images/backgrounds/confectionery-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    /* Инь - левая часть с изогнутой правой границей */
    border-top-right-radius: 50% 30%;
    border-bottom-right-radius: 50% 30%;
}

/* БЕЗ BLUR - четкое изображение по умолчанию */
.confectionery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 240, 245, 0.05);
    z-index: 1;
    transition: all 0.4s ease;
}

/* При hover - легкий blur и тонировка */
.confectionery-section:hover::before {
    background: rgba(255, 240, 245, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Анимированные звездочки */
.confectionery-section::after {
    content: '✨ ⭐ 💫 ✨ ⭐';
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 3rem;
    opacity: 0.25;
    z-index: 1;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   ФАЕРШОУ - ЯНЬ (ТЕМНАЯ ЧАСТЬ) - ПРАВАЯ СТОРОНА
   ============================================ */
.fireshow-section {
    background-image: url('../images/backgrounds/fireshow-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    /* Янь - правая часть с изогнутой левой границей */
    border-top-left-radius: 50% 30%;
    border-bottom-left-radius: 50% 30%;
}

/* БЕЗ BLUR - четкое изображение по умолчанию */
.fireshow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 10, 5, 0.05);
    z-index: 1;
    transition: all 0.4s ease;
}

/* При hover - легкий blur и огненная тонировка */
.fireshow-section:hover::before {
    background: rgba(40, 20, 10, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Мерцающие огненные эмодзи */
.fireshow-section::after {
    content: '🔥 ✨ 🔥 ✨ 🔥';
    position: absolute;
    bottom: 25%;
    left: 0;
    right: 0;
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 3rem;
    opacity: 0.3;
    z-index: 1;
    animation: flicker 2s ease-in-out infinite;
    pointer-events: none;
}

.section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-half:hover .section-content {
    transform: scale(1.08);
}

.section-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.section-half:hover .section-icon {
    animation: float 1.5s ease-in-out infinite;
    transform: scale(1.2) rotate(10deg);
}

/* Стилі для СВЕТЛОЙ секції (Кондитерка - Инь) */
.confectionery-section .section-content {
    color: #2c3e50;
}

.confectionery-section .section-icon {
    filter: drop-shadow(0 5px 15px rgba(255, 107, 157, 0.6));
}

.confectionery-section .section-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ff6b9d;
    text-shadow:
        2px 2px 4px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 107, 157, 0.4),
        0 0 50px rgba(255, 140, 66, 0.3);
    letter-spacing: 2px;
}

.confectionery-section .section-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Стилі для ТЕМНОЙ секції (Фаершоу - Янь) */
.fireshow-section .section-content {
    color: #ffffff;
}

.fireshow-section .section-icon {
    filter: drop-shadow(0 5px 20px rgba(255, 69, 0, 0.8));
}

.fireshow-section .section-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ff4500;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 69, 0, 0.6),
        0 0 50px rgba(255, 140, 0, 0.4);
    letter-spacing: 2px;
}

.fireshow-section .section-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 69, 0, 0.3);
}

.section-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.section-button span {
    position: relative;
    z-index: 1;
}

/* Кнопка для светлой секції (Кондитерка) */
.confectionery-section .section-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.confectionery-section .section-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b9d 100%);
}

/* Кнопка для темной секції (Фаершоу) */
.fireshow-section .section-button {
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5), 0 0 30px rgba(255, 99, 71, 0.3);
    border-color: rgba(255, 140, 0, 0.6);
}

.fireshow-section .section-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, #ff6347 0%, #ff4500 100%);
}

/* ============================================
   НАВИГАЦИЯ
   ============================================ */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* ============================================
   ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКОВ
   ============================================ */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   КОНТЕЙНЕРЫ И СЕКЦИИ
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ============================================
   КНОПКИ - УЛУЧШЕННЫЕ
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-success {
    background: var(--success-color);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

/* ============================================
   КАРТОЧКИ - УЛУЧШЕННЫЕ
   ============================================ */
.product-card,
.portfolio-card,
.program-card,
.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before,
.portfolio-card::before,
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover,
.portfolio-card:hover,
.program-card:hover,
.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.product-card:hover::before,
.portfolio-card:hover::before,
.program-card:hover::before {
    opacity: 1;
}

/* ============================================
   МОДАЛЬНЫЕ ОКНА
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-color);
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* ============================================
   УВЕДОМЛЕНИЯ
   ============================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.notification-error {
    border-left: 4px solid var(--danger-color);
    color: var(--danger-color);
}

/* ============================================
   ФОРМЫ - УЛУЧШЕННЫЕ
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.form-control:focus + label {
    color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */
@media (min-width: 768px) {
    .sections-wrapper {
        flex-direction: row;
    }

    .section-half {
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .landing-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .landing-header p {
        padding: 0 1rem;
    }

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

    .section-icon {
        font-size: 4rem;
    }

    .section-content p {
        font-size: 1.1rem;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    /* Language switcher mobile optimization */
    .language-switcher {
        top: 10px !important;
        right: 10px !important;
        gap: 0.3rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sections stacking */
    .sections-wrapper {
        flex-direction: column;
    }

    .section-half {
        min-height: 50vh;
        width: 100%;
    }

    /* Better touch targets */
    .section-button {
        min-height: 44px;
        padding: 1rem 2rem;
    }

    /* Decorative elements on mobile */
    .decorative-element {
        opacity: 0.1 !important;
        font-size: 2rem !important;
    }

    /* ============================================
       ИНЬ-ЯНЬ МОБИЛЬНАЯ АДАПТАЦИЯ
       ============================================ */

    /* Вертикальный стек на мобильных */
    .sections-wrapper {
        flex-direction: column;
    }

    .section-half {
        min-height: 50vh;
    }

    /* Упрощаем формы на мобильных */
    .confectionery-section {
        border-top-right-radius: 0;
        border-bottom-right-radius: 30px;
    }

    .fireshow-section {
        border-top-left-radius: 30px;
        border-bottom-left-radius: 0;
    }

    /* Уменьшаем размер и пространство для emoji на мобильных */
    .confectionery-section::after {
        font-size: 1.5rem;
        letter-spacing: 1.5rem;
        top: 10%;
    }

    .fireshow-section::after {
        font-size: 1.8rem;
        letter-spacing: 1.5rem;
        bottom: 10%;
    }

    /* Убираем hover эффекты на мобильных */
    .section-half:hover .section-content {
        transform: none;
    }

    .section-half:hover .section-icon {
        animation: float 3s ease-in-out infinite;
        transform: none;
    }

    /* Упрощаем content padding */
    .section-content {
        padding: 2rem 1.5rem;
    }

    /* Адаптация заголовков для Инь-Янь */
    .confectionery-section .section-content h2,
    .fireshow-section .section-content h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .confectionery-section .section-content p,
    .fireshow-section .section-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   ЗАГРУЗЧИК
   ============================================ */
.loader {
    border: 4px solid rgba(255, 107, 157, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 1s ease;
}

/* ============================================
   УЛУЧШЕНИЯ ПРОКРУТКИ
   ============================================ */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ============================================
   HERO BANNER - ДОДАНО
   ============================================ */
.hero-banner {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FEATURES GRID - ДОДАНО
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
}

/* ============================================
   FOOTER - ДОДАНО
   ============================================ */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   CTA SECTION - ДОДАНО
   ============================================ */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   MOBILE MENU - ДОДАНО
   ============================================ */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        z-index: 1000;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .navbar-menu a {
        display: block;
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRODUCTS GRID - ДОДАНО
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ============================================
   ALERTS - ДОДАНО
   ============================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}