/* ===== COMPONENTS.CSS ===== */
/* Компоненты сайта Remira - полная версия */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --primary-light: #ebf5fb;
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --secondary-light: #d5f4e6;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --text-light: #7f8c8d;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #27ae60;
    --border-color: #dce4e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    gap: 15px;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.phone-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.phone-link i {
    font-size: 1.2rem;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.4s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.menu-close:hover {
    background: var(--light-color);
    color: var(--danger-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 15px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-phone:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link:nth-child(1) { background: #0088cc; }
.social-link:nth-child(2) { background: #25d366; }
.social-link:nth-child(3) { background: #7360f2; }

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(52, 152, 219, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--text-color);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-color);
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2.8rem;
    line-height: 1.5;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(52, 152, 219, 0.12);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    transform: rotate(-1deg);
}

/* Hero Features */
.hero-features {
    margin: 3rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 1.8rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 22px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.feature-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-title {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 3.2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 17px 34px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--dark-color), #34495e);
    color: white;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #34495e, var(--dark-color));
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.4);
}

.btn-light {
    background: white;
    color: var(--dark-color);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 700;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-4px);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Hero Right Column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    height: 300px;
    position: relative;
    background: #f8f9fa;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}


/* Compact Contacts */
.compact-contacts {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.compact-contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
}

.compact-contact-header i {
    color: var(--primary-color);
    font-size: 1.8rem;
    background: var(--primary-light);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-contact-header h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    flex: 1;
}

.compact-contact-list {
    margin-bottom: 30px;
}

.compact-contact-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.compact-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.compact-contact-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.compact-contact-value {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark-color);
    line-height: 1.5;
}

.compact-contact-value a {
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.compact-contact-value a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateX(5px);
}

/* Messengers */
.compact-messengers {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.compact-messenger-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.15rem;
    text-align: center;
}

.compact-messenger-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.compact-messenger-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.compact-messenger-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.compact-messenger-item:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
    border-color: #0088cc;
}

.compact-messenger-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border-color: #25d366;
}

.compact-messenger-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(115, 96, 242, 0.1), rgba(115, 96, 242, 0.05));
    border-color: #7360f2;
}

.messenger-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.compact-messenger-item:nth-child(1) .messenger-icon {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.compact-messenger-item:nth-child(2) .messenger-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.compact-messenger-item:nth-child(3) .messenger-icon {
    background: rgba(115, 96, 242, 0.1);
    color: #7360f2;
}

.messenger-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.messenger-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.messenger-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== SERVICES DROPDOWN - ALL ITEMS VISIBLE ===== */
.services-section {
    padding: 100px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-dropdown {
    max-width: 1000px;
    margin: 0 auto;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dropdown-category {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.dropdown-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.dropdown-category.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.dropdown-header:hover {
    background: var(--primary-light);
}

.dropdown-header i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.dropdown-header span {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.dropdown-header .fa-chevron-down {
    color: var(--text-light);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.dropdown-category.active .dropdown-header .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

/* Десктоп: 3 колонки при открытом dropdown */
 .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    min-height: 60px;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.dropdown-item:hover i {
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
/* Планшет: 2 колонки */
@media (max-width: 1024px) {
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Мобильные: 1 колонка */
@media (max-width: 768px) {
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }
    
    .dropdown-item {
        padding: 12px 15px;
        font-size: 0.95rem;
        min-height: 55px;
    }
}

/* Для категорий с малым количеством пунктов */
.dropdown-category:nth-child(3) .dropdown-grid,
.dropdown-category:nth-child(4) .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .dropdown-category:nth-child(3) .dropdown-grid,
    .dropdown-category:nth-child(4) .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

/* Улучшаем анимацию открытия */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

/* Убираем ограничение по высоте для активного dropdown */
.dropdown-content.active {
    max-height: none !important;
}

/* Фикс для отображения всех пунктов */
.dropdown-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dropdown-category {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.dropdown-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.dropdown-header:hover {
    background: var(--primary-light);
}

.dropdown-header i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.dropdown-header span {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.dropdown-header .fa-chevron-down {
    color: var(--text-light);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

/* Анимация стрелочки */
.dropdown-category.active .dropdown-header .fa-chevron-down {
    transform: rotate(180deg);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder.large {
    height: 400px;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.image-placeholder.large i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder.large span {
    font-size: 1.2rem;
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.stat {
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Advantages */
.advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 15px;
}

.advantage i {
    color: var(--success-color);
    font-size: 1.3rem;
}

.advantage span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 80px 0;
    background: var(--light-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color), #1a252f);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin: 20px 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .contact-item {
    align-items: flex-start;
}

.footer-contact .contact-item i {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-top: 5px;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.95rem;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 20px 0;
    background: var(--light-color);
    margin-top: 90px;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== SERVICE PAGES ===== */

/* Service Hero */
.service-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.badge i {
    font-size: 1rem;
}

.service-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.service-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
}

.service-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: white;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-main h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.details-main > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Problem List */
.problem-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.problem-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.problem-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.problem-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Repair Process */
.repair-process h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Brands List */
.brands-we-repair h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.brand-tag {
    padding: 8px 16px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.brand-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Details Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Widget */
.contact-widget {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    order: 1;
}

.contact-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.contact-widget .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-widget .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-widget .contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.contact-widget .contact-item strong {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.contact-widget .contact-item p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 1.2rem;
    margin: 0;
}

/* Price Widget */
.price-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    order: 2;
}

.price-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.price-list {
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-service {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.price-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.price-note {
    background: var(--primary-light);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-note p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-note i {
    font-size: 1rem;
}

/* Advantages Widget */
.advantages-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    order: 3;
}

.advantages-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.advantage-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.advantage-item span {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.faq-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.5;
    min-width: 40px;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 30px 95px;
}

.faq-answer-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.faq-answer-content strong {
    color: var(--dark-color);
}

.faq-answer-content ul {
    margin: 15px 0 20px 20px;
    padding: 0;
}

.faq-answer-content li {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    padding-left: 10px;
}

.faq-answer-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -10px;
}

/* FAQ Note */
.faq-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-light);
    border-radius: 10px;
    margin-top: 20px;
}

.faq-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-note span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Repair Options */
.repair-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.option i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.option span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Schedule Info */
.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.schedule-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.schedule-item div {
    display: flex;
    flex-direction: column;
}

.schedule-item strong {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.schedule-item span {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Parts Info */
.parts-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.parts-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.parts-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.parts-item span {
    color: var(--text-color);
    font-size: 1rem;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.faq-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, var(--dark-color), #1a252f);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.service-cta-section .highlight {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.service-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.service-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.service-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-cta-section .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-cta-section .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.service-cta-section .contact-item i {
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cta-section .contact-item a {
    color: #000000;
    text-decoration: none;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ КОМПОНЕНТЫ ===== */

/* Кнопка "Наверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--danger-color);
}

.notification.warning {
    border-left: 4px solid var(--warning-color);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--danger-color);
}

/* Прелоадер */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ленивая загрузка изображений */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Скрытые элементы для скринридеров */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Обработка ошибок изображений */
.image-error {
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-style: italic;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }
.p-5 { padding: 50px; }
.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .mobile-menu,
    .hero-buttons,
    .social-links,
    .compact-messengers,
    .footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        color: black;
        text-decoration: none;
    }
}
/* ===== WORK STEPS SECTION ===== */
.work-steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.work-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.steps-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: black;
    line-height: 1;
    user-select: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.step-card:hover .step-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.step-content {
    flex: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

/* Убираем стрелку у последнего шага */
.step-card:last-child .step-arrow {
    display: none;
}

/* Линия между шагами */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
    transform: translateY(-50%);
}

/* CTA под этапами */
.steps-cta {
    max-width: 800px;
    margin: 70px auto 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--dark-color), #1a252f);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Анимация градиента */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .work-steps-section {
        padding: 80px 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 50px auto 0;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .work-steps-section {
        padding: 60px 0;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        top: 15px;
        left: 15px;
        font-size: 1.5rem;
    }
    
    .cta-card {
        padding: 30px 25px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .steps-container {
        gap: 20px;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .cta-card {
        padding: 25px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-card .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ===== IMPROVED FOOTER STYLES ===== */

/* Структура футера */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Логотип в футере */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Социальные иконки */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Заголовки секций */
.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

/* Контакты */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-text a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-text small {
    color: #95a5a6;
    font-size: 0.85rem;
}

.contact-text strong {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-text span {
    color: #bdc3c7;
    font-size: 0.95rem;
}

/* Ссылки в футере */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-link-all {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-top: 10px;
}

.footer-link-guarantee {
    color: #2ecc71 !important;
}

/* Нижняя часть футера */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-notice {
    font-size: 0.8rem !important;
    color: #7f8c8d !important;
    font-style: italic;
}

/* Юридические ссылки */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-color);
}

.divider {
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Адресные ссылки */
.address-link {
    position: relative;
    display: inline-block;
}

.address-link::after {
    content: '📍';
    margin-left: 5px;
    font-size: 0.9em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.address-link:hover::after {
    opacity: 1;
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
        align-items: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact-item i {
        margin-top: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .divider {
        display: none;
    }
}
/* ===== СЕКЦИЯ ОТЗЫВОВ ===== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

/* Карточка отзыва */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-light);
}

/* Шапка отзыва */
.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-color);
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.review-rating i {
    color: #FFD700; /* Золотой цвет для звезд */
    font-size: 1rem;
}

.rating-text {
    font-weight: 700;
    color: var(--dark-color);
    margin-left: 8px;
    font-size: 1rem;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Тело отзыва */
.review-body {
    flex: 1;
    margin-bottom: 25px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
}

/* Подвал отзыва */
.review-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.review-service {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.review-service i {
    color: var(--primary-color);
}

/* Блок CTA под отзывами */
.reviews-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reviews-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.reviews-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reviews-cta {
        padding: 30px 20px;
    }
    
    .reviews-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ===== ОБНОВЛЕННЫЙ БЛОК REVIEWS-CTA ===== */
.reviews-cta {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reviews-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.reviews-cta > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Контейнер для платформ */
.reviews-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Карточка платформы */
.platform-card {
    display: block;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

/* Логотипы платформ */
.platform-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.platform-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.platform-logo.google {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.platform-logo.yandex {
    background: linear-gradient(135deg, #FF0000, #FFCC00);
}

.yandex-icon {
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.platform-info {
    flex: 1;
    text-align: left;
}

.platform-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Рейтинг с звездами */
.platform-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-rating .stars {
    display: flex;
    gap: 3px;
}

.platform-rating .stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 800;
    color: var(--dark-color);
    font-size: 1.2rem;
    background: var(--light-color);
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 50px;
    display: inline-block;
    text-align: center;
}

/* Статистика */
.platform-stats {
    display: none;
    justify-content: center;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.platform-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.platform-stats .stat i {
    color: var(--primary-color);
}

/* Призыв к действию в карточке */
.platform-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.platform-cta i {
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-cta i {
    transform: translateX(5px);
}

/* Блок для кнопки звонка */
.cta-call {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-color);
}

.cta-call p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    min-width: 300px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews-cta {
        padding: 30px 20px;
    }
    
    .reviews-cta h3 {
        font-size: 1.5rem;
    }
    
    .reviews-platforms {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .platform-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .platform-info {
        text-align: center;
    }
    
    .platform-rating {
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
}
/* ===== СЕКЦИЯ С КАРТОЙ ===== */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.map-section .section-header {
    margin-bottom: 50px;
}

/* Основной контейнер карты */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
}

/* Обертка для iframe карты */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Информационный блок */
.map-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-info-header {
    display: none;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
}

.map-info-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

/* Адрес */


.address-main {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.address-main strong {
    font-size: 1.3rem;
    color: var(--dark-color);
    display: block;
    margin-bottom: 10px;
}

.address-main p {
    color: var(--text-color);
    margin: 5px 0;
    font-size: 1.05rem;
}

.address-coordinates {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.coord-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.coord-item i {
    color: var(--primary-color);
}

.copy-coords {
    background: var(--primary-light);
    color: var(--primary-color);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.copy-coords:hover {
    background: var(--primary-color);
    color: white;
}

/* Контакты */
.map-contacts {
    margin-bottom: 30px;
}

.map-contacts h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.map-contacts .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.map-contacts .contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.map-contacts .contact-item a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.map-contacts .contact-item a:hover {
    color: var(--primary-color);
}

.map-contacts .contact-item div {
    flex: 1;
}

.map-contacts .contact-item strong {
    color: var(--dark-color);
    font-size: 1rem;
}

.map-contacts .contact-item small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Кнопки действий */
.map-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-weight: 600;
}

/* Дополнительная информация */
.map-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-light);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-card .btn-small {
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        gap: 20px;
    }
    
    .map-info-card {
        padding: 25px;
    }
    
    .map-info-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-additional-info {
        grid-template-columns: 1fr;
    }
}
/* ===== ИСПРАВЛЕННАЯ СЕКЦИЯ КАРТЫ ===== */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-light);
}

/* Маркер на карте будет виден */
.map-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e74c3c"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>') no-repeat center;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.map-full-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-full-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Активный маркер в заголовке */
.map-marker-active {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Адрес с иконкой */
.address-main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.address-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.address-text strong {
    font-size: 1.3rem;
    color: var(--dark-color);
    display: block;
    margin-bottom: 10px;
}

.address-text p {
    color: var(--text-color);
    margin: 5px 0;
    font-size: 1.05rem;
}

.address-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 6px 12px;
    background: #d5f4e6;
    color: #27ae60;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Координаты */
.address-coordinates {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.coord-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coord-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.coord-item code {
    font-family: 'Courier New', monospace;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

/* Кнопки ссылок на карты */
.address-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.address-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.address-link-btn:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.address-link-btn i:last-child {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.9rem;
}

.address-link-btn strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.address-link-btn span {
    color: black;
    font-size: 0.9rem;
}

.address-link-btn.yandex {
    border-left: 4px solid #FF0000;
}

.yandex-icon-small {
    background: #FF0000;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
}

/* Инструкция как найти */
.map-instructions {
    margin-bottom: 30px;
}

.map-instructions h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Кнопки с иконками */
.btn-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    font-weight: 600;
}

/* Статус работы */
.working-hours {
    font-size: 1.5rem;
    color: var(--success-color);
    margin: 10px 0;
}

.status-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #d5f4e6;
    color: #27ae60;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.status-open i {
    font-size: 0.7rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
    
    .map-overlay {
        padding: 15px;
    }
    
    .map-full-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .address-main {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .instruction-steps {
        gap: 12px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 5px;
    }
}
/* ===== СЕКЦИЯ "РЕМОНТ БЕЗ ПЕРЕПЛАТ" ===== */
.no-overpay-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.no-overpay-section .section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.no-overpay-section .section-header h2:after {
    content: '⚡';
    margin-left: 10px;
    color: #f39c12;
}

.no-overpay-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Принципы работы */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.principle-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-light);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.principle-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.principle-desc {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* Сравнение цен */
.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 80px 0;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .price-comparison {
        flex-direction: column;
        gap: 30px;
    }
}

.comparison-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    color: white;
    font-size: 1.3rem;
}

.comparison-header.typical {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.comparison-header.our {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.comparison-header i {
    font-size: 1.8rem;
}

.comparison-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.4rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item:hover {
    background: #f8f9fa;
}

.comparison-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.comparison-item.negative i {
    color: var(--danger-color);
}

.comparison-item.positive i {
    color: var(--success-color);
}

.comparison-item.price {
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    font-size: 1.1rem;
}

.price-badge {
    background: var(--danger-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-badge.green {
    background: var(--success-color);
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 700;
}

.comparison-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .comparison-divider {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
}

/* CTA блок */
.no-overpay-cta {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--primary-light);
}

.no-overpay-cta .cta-content h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.no-overpay-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    flex-wrap: wrap;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.payment-label i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.payment-option {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
}

.payment-divider {
    color: var(--text-light);
    font-weight: 600;
}

.no-overpay-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.no-overpay-cta .btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .no-overpay-section {
        padding: 60px 0;
    }
    
    .no-overpay-section .section-header h2 {
        font-size: 2rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .principle-card {
        padding: 30px 20px;
    }
    
    .no-overpay-cta {
        padding: 30px 20px;
    }
    
    .no-overpay-cta .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .no-overpay-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .no-overpay-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* ===== СТИЛИ ДЛЯ КОМПОНЕНТА ГРАФИКА РАБОТЫ В MAP-SECTION ===== */

/* Контейнер для графика работы */
.map-info-card .contact-item-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.map-info-card .contact-item-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Заголовок */
.map-info-card .contact-item-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-card .contact-item-content h4::before {
    content: '🕐';
    font-size: 1.3rem;
}

/* Часы работы */
.map-info-card .working-hours {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
    line-height: 1.4;
}

.map-info-card .working-time {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: var(--primary-light);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

/* Статус */
.map-info-card .schedule-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    cursor: pointer;
}

.map-info-card .schedule-status.closed {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.1);
}

.map-info-card .status-indicator {
    font-size: 0.7rem;
    animation: pulse 2s infinite;
}

.map-info-card .schedule-status.open .status-indicator {
    color: #27ae60;
}

.map-info-card .schedule-status.closed .status-indicator {
    color: #e74c3c;
}

.map-info-card .status-text {
    font-weight: 700;
}

/* Анимация пульсации */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* Hover эффекты */
.map-info-card .schedule-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.15);
}

.map-info-card .schedule-status.closed:hover {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.15);
}

/* Адаптивность */
@media (max-width: 768px) {
    .map-info-card .contact-item-content {
        padding: 15px;
    }
    
    .map-info-card .contact-item-content h4 {
        font-size: 1.1rem;
    }
    
    .map-info-card .working-hours {
        font-size: 1rem;
    }
    
    .map-info-card .working-time {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
    
    .map-info-card .schedule-status {
        padding: 8px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .map-info-card .contact-item-content h4 {
        justify-content: center;
        text-align: center;
    }
    
    .map-info-card .working-hours,
    .map-info-card .working-time {
        text-align: center;
        display: block;
    }
    
    .map-info-card .schedule-status {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}
/* ===== SERVICE BENEFITS SECTION ===== */
.service-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.service-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Контейнер преимуществ */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Карточка преимущества */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-light);
}

/* Номер преимущества */
.benefit-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
    user-select: none;
    z-index: 0;
}

/* Иконка преимущества */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

/* Заголовок преимущества */
.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Описание преимущества */
.benefit-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Детали преимущества */
.benefit-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    position: relative;
    z-index: 1;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* Фоновая декорация */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.05), transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Специальные стили для разных карточек */
.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

/* Счетчик преимуществ */
.benefits-counter {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(52, 152, 219, 0.2);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.counter-number::after {
    content: '+';
    position: absolute;
    top: -10px;
    right: -25px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.counter-text {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* Анимация появления карточек */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для разделителя */
.benefits-divider {
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.benefits-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.divider-icon {
    display: inline-block;
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Стили для кнопки CTA */
.benefits-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .service-benefits-section {
        padding: 80px 0;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 50px auto 0;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1.4rem;
    }
    
    .benefit-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .service-benefits-section {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-number {
        font-size: 3rem;
        top: 15px;
        left: 15px;
    }
    
    .cta-button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-group .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .benefits-container {
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-text {
        font-size: 1.1rem;
    }
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .service-benefits-section {
        background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    }
    
    .benefit-card {
        background: rgba(44, 62, 80, 0.8);
        border-color: rgba(52, 152, 219, 0.2);
        color: #ecf0f1;
    }
    
    .benefit-title {
        color: #ecf0f1;
    }
    
    .benefit-description {
        color: #bdc3c7;
    }
    
    .benefits-divider::before {
        background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.5), transparent);
    }
    
    .divider-icon {
        background: #2c3e50;
    }
    
    .benefits-counter {
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(46, 204, 113, 0.2));
        border-color: rgba(52, 152, 219, 0.3);
    }
}

/* Анимация для иконок при скролле */
.benefit-card.in-view .benefit-icon {
    animation: iconPop 0.6s ease;
}

@keyframes iconPop {
    0% { transform: scale(0.8); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Стили для tooltip */
.benefit-card {
    position: relative;
}

.benefit-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--dark-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.benefit-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark-color);
}

.benefit-card:hover .benefit-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}