/* ===== ОСНОВНЫЕ СТИЛИ И ПЕРЕМЕННЫЕ ===== */
:root {
    /* Цветовая палитра - профессиональная, медицинская */
    --primary: #2a5c8d;           /* Основной синий */
    --primary-dark: #1e4569;      /* Темный синий */
    --primary-light: #3a7bc3;     /* Светлый синий */
    --secondary: #4ecdc4;         /* Бирюзовый */
    --secondary-light: #6de6dd;   /* Светлый бирюзовый */
    --accent: #ff6b6b;            /* Акцентный коралловый */
    --accent-light: #ff8e8e;      /* Светлый коралловый */
    --light: #f8f9fa;             /* Светлый фон */
    --light-gray: #e9ecef;        /* Серый фон */
    --dark: #343a40;              /* Темный текст */
    --gray: #6c757d;              /* Серый текст */
    --success: #28a745;           /* Зеленый успеха */
    
    /* Тени и эффекты */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    /* Скругления */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Анимации */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== СБРОС СТИЛЕЙ И БАЗОВЫЕ НАСТРОЙКИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Улучшенная типографика */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКОВ ===== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    background: white;
    padding: 8px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 1001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.lang-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* ===== ШАПКА САЙТА ===== */
.main-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Навигация */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary);
}

/* ===== ГЕРОЙ  СЕКЦИЯ ===== */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(42, 92, 141, 0.05) 0%, 
        rgba(78, 205, 196, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 15px solid white;
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition-slow);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
}

.patient-quote {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent);
    margin-top: 40px;
    position: relative;
}

.patient-quote i {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.patient-quote span {
    font-style: italic;
    color: var(--dark);
    font-size: 1.1rem;
    display: block;
    line-height: 1.6;
}

/* ===== СПЕЦИАЛЬНОСТИ ===== */
.specialties-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.specialty-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.specialty-card i {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary);
    display: block;
}

.specialty-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    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) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== ФОРМЫ ===== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 92, 141, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

/* ===== СЕКЦИЯ КОНТАКТОВ ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(42, 92, 141, 0.03) 0%, 
        rgba(78, 205, 196, 0.03) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px;
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-xl);
}

.contact-info h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-light);
    width: 40px;
}

.contact-item p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* ===== ФУТЕР ===== */
.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--secondary-light);
    font-size: 32px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--secondary-light);
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ИРИНЫ ===== */
.awards-section {
    padding: 100px 0;
    background: white;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-item {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.award-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.award-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.award-item p {
    font-weight: 500;
    color: var(--dark);
    margin: 0;
}

.specializations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(42, 92, 141, 0.03) 0%, 
        rgba(78, 205, 196, 0.03) 100%);
}

.diseases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.disease-category {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.disease-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.disease-category h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.disease-category ul {
    list-style: none;
    padding-left: 0;
}

.disease-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.disease-category li:last-child {
    border-bottom: none;
}

.disease-category p {
    color: var(--accent);
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.methods-section {
    padding: 100px 0;
    background: white;
}

.methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--light);
    transition: var(--transition);
}

.method-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.method-item:hover i,
.method-item:hover p {
    color: white;
}

.method-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.method-item p {
    font-weight: 500;
    color: var(--dark);
    margin: 0;
    transition: var(--transition);
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ КУРСА ===== */
.course-hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, 
        rgba(78, 205, 196, 0.1) 0%, 
        rgba(42, 92, 141, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.course-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42, 92, 141, 0.15) 0%, transparent 50%);
}

.course-main-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.course-subtitle {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.course-description {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.course-benefit {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.about-course-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

.guarantees-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.05) 0%, 
        rgba(78, 205, 196, 0.05) 100%);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.guarantee-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border-top: 5px solid transparent;
}

.guarantee-card:nth-child(1) {
    border-top-color: var(--primary);
}
.guarantee-card:nth-child(2) {
    border-top-color: var(--secondary);
}
.guarantee-card:nth-child(3) {
    border-top-color: var(--accent);
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.guarantee-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
}

.for-whom-section {
    padding: 100px 0;
    background: white;
}

.age-range {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 50px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .course-main-title { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image img {
        max-width: 400px;
        margin: 0 auto;
        height: 400px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .course-main-title { font-size: 3rem; }
    .course-subtitle { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .section-title { font-size: 2rem; }
    
    .specialties-grid,
    .awards-list,
    .diseases-grid,
    .methods-list,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .course-main-title { font-size: 2.5rem; }
    .course-subtitle { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .specialty-card,
    .award-item,
    .disease-category,
    .method-item,
    .guarantee-card {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 14px 28px;
        width: 100%;
    }
    
    .course-main-title { font-size: 2rem; }
    .course-subtitle { font-size: 1.3rem; }
    .course-description { font-size: 1.1rem; }
}

/* ===== АНИМАЦИИ И ЭФФЕКТЫ ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Плавное появление элементов при скролле */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 10px 0;
}

.period {
    color: #666;
    font-size: 0.9rem;
}


.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature i {
    margin-right: 10px;
    font-size: 1rem;
}

.feature i.fa-check {
    color: #4CAF50;
}

.feature i.fa-times {
    color: #ff4444;
}

.feature.not-included span {
    opacity: 0.6;
}



/* Для кого курс - улучшения */
.disorders-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.disorder-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.disorder-item i {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: #666;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 0;
}

/* Форма для курса */
#course-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: white;
}

#course-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);

}
/* Герой - улучшения */
.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Награды */
.awards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.award-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.award-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Заболевания */
.diseases-section {
    padding: 80px 0;
}

.diseases-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.diseases-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.disease-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.disease-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.disease-category h3 i {
    color: #667eea;
}

.disease-category ul {
    list-style: none;
    padding: 0;
}

.disease-category li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.disease-category li:last-child {
    border-bottom: none;
}

/* Диагностика */
.diagnostics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.diagnostics-steps {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}

.diagnostics-steps::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
    opacity: 0.3;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
}

.diagnostics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.feature h4 {
    color: #333;
    margin-bottom: 5px;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Запись */
.appointment-section {
    padding: 80px 0;
    background: #667eea;
    color: white;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.appointment-info h2 {
    color: white;
    margin-bottom: 20px;
}

.appointment-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.appointment-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit i {
    color: #4CAF50;
}

.appointment-contacts {
    margin-top: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.appointment-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    color: #333;
}

.appointment-form h3 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.appointment-form input[type="date"],
.appointment-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.appointment-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* Отзывы */
.reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-slider {
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
}

.reviews-container {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.review-card {
    min-width: 100%;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar i {
    font-size: 2.5rem;
    color: #667eea;
}

.reviewer-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.review-rating {
    color: #ffd700;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.review-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #5a6fd8;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #667eea;
}

.all-reviews-link {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Футер - улучшения */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .diseases-list {
        grid-template-columns: 1fr;
    }
    
    .diagnostics-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .diagnostics-steps::before {
        left: 30px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
}
/* Footer Bottom - Договор оферты по центру */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-ofer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-ofer {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 16px;
    display: inline-block;
}

.footer-ofer:hover {
    color: white;
    text-decoration: underline;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .footer-ofer {
        font-size: 13px;
        padding: 6px 12px;
    }
}
.appointment-form .form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 87, 183, 0.15);
    border: 1px solid rgba(0, 87, 183, 0.1);
    position: relative;
    overflow: hidden;
}

.appointment-form .form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0057b7, #ffd700);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header .form-icon {
    font-size: 48px;
    color: #0057b7;
    margin-bottom: 15px;
}

.form-header h3 {
    color: #0057b7;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-features {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.form-feature {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px 10px;
    background: rgba(0, 87, 183, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 87, 183, 0.1);
}

.form-feature i {
    font-size: 24px;
    color: #0057b7;
    margin-bottom: 8px;
    display: block;
}

.form-feature span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-benefits {
    margin-bottom: 25px;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: #28a745;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.form-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 15px;
    position: relative;
}

.price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    font-size: 36px;
    font-weight: 700;
    color: #0057b7;
    margin-bottom: 10px;
}

.price-discount {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.form-cta {
    text-align: center;
}

.form-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.form-urgency i {
    font-size: 16px;
}

.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-methods span {
    display: block;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 28px;
    color: #555;
}

.payment-icons i {
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #0057b7;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .appointment-form .form-container {
        padding: 20px;
    }
    
    .form-header h3 {
        font-size: 22px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .form-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-feature {
        min-width: 100%;
        padding: 12px;
    }
    
    .price-current {
        font-size: 32px;
    }
    
    .payment-icons {
        font-size: 24px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .appointment-form .form-container {
        padding: 15px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .form-feature span {
        font-size: 13px;
    }
    
    .benefit-item span {
        font-size: 14px;
    }
    
    .price-current {
        font-size: 28px;
    }
}
    /* Стили для кнопки записи */
.form-action {
    margin: 30px 0;
}

.booking-btn {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #0057b7 0%, #1e6cd4 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    padding: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 87, 183, 0.3);
    border: none;
    cursor: pointer;
}

.booking-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 87, 183, 0.4);
}

.booking-btn:hover:before {
    opacity: 1;
}

.booking-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-content {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #0057b7 0%, #1e6cd4 100%);
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.btn-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.btn-icon i {
    font-size: 24px;
    color: white;
}

.btn-text {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.btn-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.btn-arrow {
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-arrow i {
    font-size: 18px;
    color: white;
}

/* Убрал бейдж со скидкой */
/* .btn-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
} */

/* Убрал анимацию пульсации */
/* @keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
} */

/* Стили для уведомления */
.urgency-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 82, 82, 0.1) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(255, 107, 107, 0.3);
}

.urgency-notice i {
    color: #ff6b6b;
    font-size: 18px;
    animation: firePulse 1.5s infinite;
}

@keyframes firePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgency-notice span {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .btn-content {
        padding: 18px 20px;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .btn-icon i {
        font-size: 22px;
    }
    
    .btn-title {
        font-size: 18px;
    }
    
    .btn-subtitle {
        font-size: 13px;
    }
    
    .btn-arrow {
        width: 35px;
        height: 35px;
    }
    
    .btn-arrow i {
        font-size: 16px;
    }
    
    /* Убрал адаптивные стили для бейджа */
    /* .btn-badge {
        padding: 6px 14px;
        font-size: 13px;
        top: -8px;
        right: 15px;
    } */
    
    .urgency-notice {
        padding: 10px 15px;
    }
    
    .urgency-notice span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .btn-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }
    
    .btn-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .btn-text {
        text-align: center;
    }
    
    .btn-arrow {
        margin-left: 0;
        margin-top: 5px;
    }
    
    /* Убрал адаптивные стили для бейджа */
    /* .btn-badge {
        right: 50%;
        transform: translateX(50%);
        top: -10px;
    }
    
    .booking-btn:hover .btn-badge {
        transform: translateX(50%) scale(1.05);
    } */
    
    .urgency-notice {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px;
    }
}

/* Эффект при нажатии */
.booking-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 87, 183, 0.3);
}

/* Альтернативный вариант с иконкой календаря слева */
.booking-btn.alternative .btn-content {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.booking-btn.alternative {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.booking-btn.alternative:hover {
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
}
/* Canvas снегопад */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}
.appointment-benefits .benefit span {
    color: #2c3e50; /* Тёмно-синий */
}
/* Добавить в секцию формы записи */
.appointment-form .form-action {
    margin: 30px 0;
}

/* Убедиться, что кнопка записи имеет правильные стили */
.booking-btn {
    display: block;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    padding: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    width: 100%;
}

.booking-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}   
/* Перезаписываем все стили для меню */
.main-header .nav-menu a {
    color: #0057b7 !important;
    text-decoration: none;
    padding-bottom: 10px;
    position: relative;
}

.main-header .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1abc9c;
    transition: width 0.3s;
}

.main-header .nav-menu a:hover::after {
    width: 100%;
}

/* Желтая полоска для активной ссылки */
.main-header .nav-menu a.active::after {
    width: 100% !important;
    background: #ffd700 !important;
    height: 4px;
}
/* Для мобильных устройств - делаем меню горизонтальным */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row; /* Важно: оставляем горизонтальное расположение */
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }
    
    .nav-menu {
        display: flex !important; /* Принудительно показываем как flex */
        flex-direction: row !important; /* Горизонтальное расположение */
        gap: 15px !important;
        margin-top: 0 !important;
        width: auto !important;
        overflow-x: auto; /* Прокрутка если не помещается */
        -webkit-overflow-scrolling: touch; /* Плавная прокрутка на iOS */
        padding-bottom: 5px; /* Отступ для скролла */
    }
    
    .nav-menu li {
        flex-shrink: 0; /* Не сжимать элементы */
        white-space: nowrap; /* Текст в одну строку */
    }
    
    .nav-menu a {
        font-size: 14px !important;
        padding: 6px 10px !important;
        text-align: center;
        min-width: 80px; /* Минимальная ширина для удобства тапа */
    }
    
    /* Если очень маленький экран */
    @media (max-width: 480px) {
        .nav-menu {
            gap: 10px !important;
        }
        
        .nav-menu a {
            font-size: 13px !important;
            padding: 6px 8px !important;
            min-width: 70px;
        }
        
        .logo {
            font-size: 16px !important;
        }
    }
    
    /* Убираем возможные вертикальные отступы */
    .nav-menu {
        margin: 0 !important;
        padding: 0 !important;
    }
}
/* Принудительные стили для логотипа */
.header-container .logo {
    font-size: 22px !important;
}

.header-container .logo i {
    font-size: 26px !important;
}

/* Для мобильных */
@media (max-width: 768px) {
    .header-container .logo {
        font-size: 18px !important;
    }
    
    .header-container .logo i {
        font-size: 22px !important;
    }
}
.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
