
:root {
  /* Шрифты */
  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Chewy', cursive;
  
  /* Цвета */
  --primary-color: #ff4c01;
  --secondary-color: #ff8c5a;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --accent-color: #00a8e8;
}

body {
  font-family: var(--font-body);
  color: var(--dark-color);
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 800;
}

h2, h3, h4 {
  font-family: var(--font-accent);
}
		
		.logo {
		   position: fixed;
		   top:0;
		   left: 80px;
		
		}
		
		.logo img {
		   width:80px;
		
		}
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            margin: 0 10px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
        }
        
        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-primary:hover {
            background-color: #e04300;
            border-color: #e04300;
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .hero-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), 
                        url('bg.avif');
            background-size: cover;
            background-position: center;
            padding: 120px 0 100px;
            position: relative;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .benefit-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-card .card-body {
            padding: 30px;
        }
        
        .benefit-card .card-title {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .pricing-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: none;
            margin-bottom: 30px;
        }
        
        .pricing-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary-color);
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-header {
            background-color: #f8f9fa;
            padding: 20px;
            text-align: center;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price-period {
            color: #777;
        }
        
        .pricing-features {
            padding: 0;
            margin: 20px 0;
            list-style: none;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .testimonial-position {
            color: #777;
            font-size: 0.9rem;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 15px;
            vertical-align: middle;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
        }
        
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--primary-color);
        }
        
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 30px;
        }
        
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background-color: var(--dark-color);
        }
        
        /* Animation classes */
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
		 /* Стили для кнопки */
        .add-review-btn {
            background-color: #ff4c01;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
			width:180px;
        }
        
        .add-review-btn:hover {
            background-color: #e04300;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
                
        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            animation: modalFadeIn 0.3s ease-out;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .modal-title {
            font-size: 22px;
            font-weight: bold;
            color: #333;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: color 0.2s;
        }
        
        .close-btn:hover {
            color: #333;
        }
        
        /* Форма */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #ff4c01;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 76, 1, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #ff4c01;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #e04300;
        }
        
        /* Сообщения */
        .success-message {
            display: none;
            text-align: center;
            padding: 20px;
            background-color: #f0fff0;
            border-radius: 6px;
            margin-top: 20px;
            border: 1px solid #a0d8b3;
            color: #2e7d32;
        }
        
        .error-message {
            display: none;
            text-align: center;
            padding: 20px;
            background-color: #fff0f0;
            border-radius: 6px;
            margin-top: 20px;
            border: 1px solid #d8a0a0;
            color: #7d322e;
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
        }
		
		/* Основные стили */

/* Стили для кнопок */
.signup-course-btn {
    position: relative;
    background-color: #ff4c01;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.signup-course-btn:hover {
    background-color: #e04300;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #333;
}

/* Форма */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.course-label {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px;
    vertical-align: middle;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #ff4c01;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 76, 1, 0.2);
}

/* Стили для радио-кнопок */
.radio-group {
    display: inline-block;
    vertical-align: middle;
}

.radio-option {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

/* Вопрос про Viber */
.viber-question {
    display: flex;
    align-items: center;
    gap: 15px;
}

.viber-options {
    display: flex;
    gap: 15px;
}

.viber-option {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Сообщения */
.success-message, .error-message, .loading {
    text-align: center;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    display: none;
}

.success-message {
    background-color: #f0fff0;
    border: 1px solid #a0d8b3;
    color: #2e7d32;
}

.error-message {
    background-color: #fff0f0;
    border: 1px solid #d8a0a0;
    color: #7d322e;
}

.success-message i, .error-message i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.submit-btn {
    background-color: #ff4c01;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #e04300;
}

/* Основні стилі */
        :root {
            --viber-color: #7360f2;
            --telegram-color: #2aabee;
            --whatsapp-color: #25d366;
        }       
        
        
        /* Контейнер для іконок */
        .messenger-float {
            position: fixed;
            bottom: 25px;
            right: 30px;
            display: flex;
            flex-direction: row;
            gap: 15px;
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        /* Коли є кнопка "Наверх" */
        body.has-scroll-top .messenger-float {
            right: 95px;
        }
        
        /* Стилі для кожної іконки */
        .messenger-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        /* Анімація ховера */
        .messenger-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Кольори для кожної іконки */
        .viber-btn {
            background-color: var(--viber-color);
        }
        
        .telegram-btn {
            background-color: var(--telegram-color);
        }
        
        /* Ефект хвилі при кліку */
        .messenger-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
        }
        
        .messenger-btn:active::after {
            transform: scale(2);
            opacity: 1;
        }
        
        /* Анімація появи */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .messenger-btn {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .viber-btn {
            animation-delay: 0.2s;
        }
        
        .telegram-btn {
            animation-delay: 0.4s;
        }
        
        /* Кнопка "Наверх" */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #ff4c01;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background-color: #333;
            transform: translateY(-3px);
        }