/**
 * Главный файл стилей для лендинга клиники "Виктория"
 * Цветовая гамма:
 * - Розово-пудровый: #C87B85
 * - Белый: #FFFFFF
 * - Темно-коричневый: #2C1B1B
 * - Светло-розовый: #F5E9E9
 */

/* === CSS VARIABLES === */
:root {
    --primary-color: #C87B85;
    --secondary-color: #F5E9E9;
    --dark-color: #2C1B1B;
    --white-color: #FFFFFF;
    --text-color: #2C1B1B;
    --text-light: #6B5B5B;
    
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(200, 123, 133, 0.1);
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Оптимизация рендеринга изображений */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

/* === BUTTONS === */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: #B66A74;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 123, 133, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 30px;
}

.btn-hero {
    padding: 20px 50px;
    font-size: 16px;
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--white-color);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white-color);
}

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

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

.btn-block {
    width: 100%;
}

/* === HEADER / NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white-color);
    box-shadow: 0 2px 20px rgba(44, 27, 27, 0.08);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

.phone-link i {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Анимация гамбургера при открытии */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white-color);
    padding: 100px 0 60px;
}

.hero .container {
    display: flex;
    justify-content: flex-start; /* Контент слева */
    padding-top: 200px;
    margin-left: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.png') center top/cover no-repeat;
    background-position: calc(50% - 0px) -40px;
    z-index: -1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

/* Мобильный фон для Hero */
@media (max-width: 768px) {
    .hero-background {
        background: url('../images/hero-bg-mobile.png') center/cover no-repeat;
        background-position: center center;
    }
    
    .hero {
        text-align: center;
        padding: 120px 0 40px;
    }
    
    .hero .container {
        margin-left: 0;
        padding-top: 0;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-logo img {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    /* Кнопки Hero на мобильных */
    .hero-content > div[style*="display: flex"] {
        justify-content: center !important;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 123, 133, 0.3) 0%, rgba(44, 27, 27, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px; /* Ограничиваем ширину контента */
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo img {
    height: 70px;
    margin: 0; /* Убираем auto для выравнивания слева */
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    /* Убираем margin auto */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-link {
    color: var(--white-color);
    font-size: 30px;
    animation: bounce 2s infinite;
}

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

/* === ПЛАВАЮЩАЯ КНОПКА ЗАПИСИ === */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta .btn {
    padding: 18px 30px;
    box-shadow: 0 8px 30px rgba(200, 123, 133, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(200, 123, 133, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(200, 123, 133, 0.6);
    }
}

/* === СЧЁТЧИКИ ДОСТИЖЕНИЙ === */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #B66A74 100%);
    padding: 80px 0;
    color: var(--white-color);
    margin: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--white-color);
    border-radius: 2px;
    opacity: 0.3;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* === УЛУЧШЕННЫЕ КАРТОЧКИ УСЛУГ === */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    contain: layout style paint; /* Изоляция для оптимизации */
    will-change: transform; /* Оптимизация анимации */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(200, 123, 133, 0.25);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === УЛУЧШЕННЫЕ КАРТОЧКИ КОСМЕТОЛОГОВ === */
.specialist-card {
    position: relative;
    transition: all 0.4s ease;
}

.specialist-card:hover {
    transform: translateY(-8px);
}


.specialist-image {
    position: relative;
    overflow: hidden;
}


/* === СЕКЦИЯ ДО/ПОСЛЕ === */
.before-after-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

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

.before-after-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.2);
}

.comparison-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white-color);
    cursor: ew-resize;
    z-index: 10;
}

.comparison-slider::before {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.comparison-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.comparison-label {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.before-after-info {
    padding: 25px;
}

.before-after-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.before-after-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === FAQ СЕКЦИЯ === */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 60px 25px 25px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* === СЕКЦИЯ ОБОРУДОВАНИЕ === */
.equipment-section {
    padding: 100px 0;
    background: var(--white-color);
}

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

.equipment-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(200, 123, 133, 0.25);
}

.equipment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.equipment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.equipment-info {
    padding: 25px;
}

.equipment-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.equipment-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.equipment-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.equipment-features li {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.equipment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* === СЕКЦИЯ ПРОЦЕСС РАБОТЫ === */
.process-section {
    padding: 100px 0;
    background: var(--white-color);
}

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

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-step:hover {
    transform: translateX(10px);
}

.process-step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #B66A74 100%);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-accent);
    box-shadow: 0 4px 20px rgba(200, 123, 133, 0.3);
}

.process-step-content {
    flex: 1;
    padding-top: 10px;
}

.process-step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: var(--font-accent);
}

.process-step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Адаптивность для процесса */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-step-title {
        font-size: 20px;
    }
    
    .process-step-description {
        font-size: 14px;
    }
}

/* === АНИМАЦИИ === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* === УЛУЧШЕННЫЕ КНОПКИ === */
.btn {
    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-text, .btn i {
    position: relative;
    z-index: 1;
}

/* === ABOUT SECTION === */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--white-color) 100%);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.value-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.15);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-description {
    color: var(--text-light);
    font-size: 14px;
}

.license-info {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

.license-icon {
    font-size: 40px;
    color: var(--primary-color);
}

.license-text {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* === SERVICES SECTION === */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white-color) 0%, var(--secondary-color) 100%);
}

.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    background: var(--white-color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: stretch;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.2);
}

.service-header {
    margin-bottom: 15px;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.service-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-actions {
    margin-top: auto;
}

/* === SPECIALISTS SECTION === */
.specialists {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--white-color) 100%);
}

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

.specialist-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.2);
}

.specialist-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.specialist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.specialist-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.specialist-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.specialist-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.specialist-specialization {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.specialist-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
}

.specialist-experience i {
    color: var(--primary-color);
}

.specialist-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.specialist-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
}

.certificates-link {
    text-align: center;
}

/* === DOCUMENTS SECTION === */
.documents {
    padding: 100px 0;
    background: var(--white-color);
}

.documents-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.document-image-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.document-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.2);
}

.document-img {
    width: 100%;
    height: auto;
    display: block;
}

.document-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.2);
}

.document-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.document-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.document-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.document-link:hover {
    text-decoration: underline;
}

/* === REVIEWS SECTION === */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--white-color) 100%);
}

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

.review-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 123, 133, 0.2);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.review-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.review-rating {
    color: #FFD700;
    font-size: 14px;
}

.review-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    color: var(--text-light);
    font-size: 12px;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-reviews i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-reviews p {
    font-size: 18px;
    color: var(--text-light);
}

.reviews-action {
    text-align: center;
}

/* === CONTACTS SECTION === */
.contacts {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white-color) 0%, var(--secondary-color) 100%);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contacts-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    background: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-text a {
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contacts-form {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* === FORMS === */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* Улучшенный select для услуг */
.service-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B89B8D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* На мобильных устройствах select автоматически становится прокручиваемым */
@media (max-width: 768px) {
    .service-select {
        font-size: 16px; /* Предотвращает zoom на iOS */
    }
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.required {
    color: #E74C3C;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: none;
    font-size: 14px;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 27, 27, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white-color);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.modal-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* === SPECIALIST MODAL === */
.specialist-modal-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
}

.specialist-modal-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.specialist-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-modal-info {
    flex: 1;
}

.specialist-modal-name {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.specialist-modal-position {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.specialist-modal-specialization {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.specialist-modal-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    font-style: italic;
}

.specialist-modal-section {
    margin-bottom: 35px;
}

.specialist-modal-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
}

.specialist-modal-section h3 i {
    color: var(--primary-color);
}

.specialist-education {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: var(--secondary-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.education-year {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    font-size: 16px;
}

.education-text {
    flex: 1;
    color: var(--text-color);
    line-height: 1.6;
}

.specialist-procedures {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.specialist-procedures li {
    padding: 12px 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    color: var(--text-color);
    position: relative;
    padding-left: 35px;
}

.specialist-procedures li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.specialist-quote {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(200, 123, 133, 0.1) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.specialist-quote p {
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.specialist-quote i {
    color: var(--primary-color);
    margin-right: 10px;
}

.specialist-modal-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
}

.specialist-modal-actions .btn {
    padding: 15px 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .specialist-modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .specialist-modal-image {
        width: 150px;
        height: 150px;
    }
    
    .specialist-procedures {
        grid-template-columns: 1fr;
    }
    
    .education-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .education-year {
        min-width: auto;
    }
}

/* === RATING INPUT === */
.rating-input {
    display: flex;
    gap: 10px;
    font-size: 32px;
    color: #DDD;
    margin-bottom: 10px;
}

.rating-input i {
    cursor: pointer;
    transition: var(--transition);
}

.rating-input i:hover,
.rating-input i.active {
    color: #FFD700;
}

/* === ALL SERVICES MODAL === */
.all-services-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.service-category-block {
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease;
}

.category-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    font-size: 16px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.service-item:hover {
    background: var(--white-color);
    box-shadow: 0 5px 15px rgba(200, 123, 133, 0.15);
    transform: translateX(5px);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.service-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.service-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.filter-btn-modal {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    background: var(--white-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn-modal.active,
.filter-btn-modal:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Скроллбар для списка услуг */
.all-services-list::-webkit-scrollbar {
    width: 8px;
}

.all-services-list::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.all-services-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.all-services-list::-webkit-scrollbar-thumb:hover {
    background: #B66A74;
}

/* === ALL REVIEWS MODAL === */
.all-reviews-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.all-reviews-list .review-card {
    animation: fadeIn 0.3s ease;
}

/* Скроллбар для списка отзывов */
.all-reviews-list::-webkit-scrollbar {
    width: 8px;
}

.all-reviews-list::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.all-reviews-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.all-reviews-list::-webkit-scrollbar-thumb:hover {
    background: #B66A74;
}

/* === ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ === */
.vision-impaired-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.vision-impaired-btn:hover {
    background: #B66A74;
    transform: translateY(-2px);
}

.vision-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.vision-panel.active {
    right: 0;
}

.vision-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    background: var(--primary-color);
    color: white;
}

.vision-panel-header h3 {
    margin: 0;
    font-size: 18px;
}

.vision-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-panel-content {
    padding: 20px;
}

.vision-option {
    margin-bottom: 25px;
}

.vision-option label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.vision-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vision-buttons button {
    padding: 10px 15px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.vision-buttons button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.vision-buttons button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-reset {
    width: 100%;
    padding: 12px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reset:hover {
    background: #ff5252;
}

/* Режимы отображения для слабовидящих */
body.vision-font-large {
    font-size: 20px;
}

body.vision-font-small {
    font-size: 14px;
}

body.vision-spacing-medium * {
    letter-spacing: 2px !important;
}

body.vision-spacing-large * {
    letter-spacing: 4px !important;
}

body.vision-scheme-black-white {
    background: #000 !important;
    color: #fff !important;
}

body.vision-scheme-black-white * {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.vision-scheme-white-black {
    background: #fff !important;
    color: #000 !important;
}

body.vision-scheme-white-black * {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
}

body.vision-scheme-blue {
    background: #9DD1FF !important;
    color: #063462 !important;
}

body.vision-scheme-blue * {
    background: #9DD1FF !important;
    color: #063462 !important;
    border-color: #063462 !important;
}

body.vision-images-off img {
    display: none !important;
}

/* === FOOTER === */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    color: var(--primary-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.legal-link:hover {
    color: var(--primary-color);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .values {
        grid-template-columns: 1fr;
    }
    
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        max-height: 500px;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Версия для слабовидящих на мобильных */
    .vision-impaired-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .vision-impaired-btn span {
        display: none;
    }
    
    .vision-panel {
        width: 100%;
        right: -100%;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
    }
    
    .specialist-actions {
        flex-direction: column;
    }
    
    .documents-images {
        grid-template-columns: 1fr;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .services-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .filter-btn-modal {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-item .btn-sm {
        width: 100%;
    }
    
    .category-title {
        font-size: 18px;
    }
}

/* === ANIMATIONS === */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B66A74;
}

