/* style.css - ПОЛНАЯ РАБОЧАЯ ВЕРСИЯ */
:root {
    --accent-color: #ffd700;
    --accent-dark: #e6b800;
    --dark-bg: #1e2b3a;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --bg-light: #e6f3ff;
    --white: #ffffff;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Эффект мерцающих разрядов */
.lightning-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 25%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 215, 0, 0.1) 20px, rgba(255, 215, 0, 0.1) 40px);
    animation: lightning 4s infinite;
}

@keyframes lightning {
    0%, 95% { opacity: 0.15; }
    96% { opacity: 0.8; }
    97% { opacity: 0.2; }
    98% { opacity: 0.9; }
    99% { opacity: 0.2; }
    100% { opacity: 0.15; }
}

/* Шапка */
.header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
}

.logo i {
    margin-right: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 40px;
    transition: all 0.3s;
    white-space: nowrap;
}

.phone-link:hover {
    background: var(--accent-color);
    color: #000000;
}

/* Социальные иконки в шапке - оригинальные цвета */
.social-header {
    display: flex;
    gap: 10px;
}

.social-icon {
    font-size: 24px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: transparent;
}

/* Viber - оригинальный цвет */
.social-icon .fa-viber {
    color: #7360f2; /* Оригинальный цвет Viber */
}

/* Instagram - оригинальный цвет */
.social-icon .fa-instagram {
    color: #e4405f; /* Оригинальный цвет Instagram */
}

/* При наведении - жёлтый (как на всём сайте) */
.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover .fa-viber,
.social-icon:hover .fa-instagram {
    color: var(--accent-color); /* Жёлтый при наведении */
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .social-header {
        justify-content: center;
    }
}
/* Герой */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1a24 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
    z-index: 5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 36px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.hero-features span {
    font-size: 18px;
}

.hero-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #000000;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Преимущества */
.features {
    padding: 70px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.feature-icon {
    font-size: 52px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Услуги */
.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 50px;
}

.services-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-bg);
    border-left: 6px solid var(--accent-color);
    padding-left: 20px;
}

.category-title i {
    color: var(--accent-color);
    margin-right: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.service-item.special {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(to right, rgba(255, 215, 0, 0.05), white);
}

.service-item.important {
    border: 2px solid var(--accent-color);
    background: rgba(255, 215, 0, 0.05);
}

.service-icon {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item h4 {
    font-si
}
.footer-contacts {
    display: flex;
    gap: 20px;
}

.footer-contacts a {
    font-size: 28px;
    transition: all 0.3s;
}

/* ===== ПОЛНЫЙ КОД ДЛЯ ФУТЕРА ===== */
/* Копируйте всё содержимое этого файла в ваш CSS */

:root {
    --accent-color: #ffd700;        /* Желтый акцент */
    --viber-color: #7360f2;          /* Оригинальный Viber */
    --instagram-color: #e4405f;       /* Оригинальный Instagram */
    --text-dark: #1a1a1a;             /* Темный текст */
    --text-soft: #333333;              /* Мягкий темный */
    --white-transparent: rgba(255, 255, 255, 0.95);
}

/* ===== ОСНОВНЫЕ СТИЛИ ФУТЕРА ===== */
.footer {
    background: #f8f8f8;              /* Светлый фон всего футера */
    padding: 40px 20px 20px;
    font-family: 'Arial', sans-serif;
}

/* Контейнер для контента */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== БЛОК "ОБО МНЕ" ===== */
.footer-about {
    background: var(--white-transparent);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-about h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
    line-height: 1.2;
}

.footer-about .highlight {
    color: #b8860b;                   /* Темно-желтый для акцентов */
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Список преимуществ */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ===== КОНТАКТЫ С ПОДЛОЖКОЙ ===== */
.footer-contacts-wrapper {
    background: var(--white-transparent);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-contacts {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contacts a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Иконки */
.footer-contacts a i {
    font-size: 28px;
    width: 32px;
    text-align: center;
}

/* Оригинальные цвета иконок */
.footer-contacts a .fa-phone-alt {
    color: var(--accent-color);
}

.footer-contacts a .fa-viber {
    color: var(--viber-color);
}

.footer-contacts a .fa-instagram {
    color: var(--instagram-color);
}

/* Текст рядом с иконками */
.footer-contacts a span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Эффект при наведении */
.footer-contacts a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fafafa;
}

/* ЦВЕТА ИКОНОК НЕ МЕНЯЮТСЯ ПРИ НАВЕДЕНИИ */
.footer-contacts a:hover .fa-phone-alt,
.footer-contacts a:hover .fa-viber,
.footer-contacts a:hover .fa-instagram {
    color: inherit;  /* Сохраняем оригинальные цвета */
}

/* ===== ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ ===== */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
}

.footer-email i {
    font-size: 18px;
    color: #0066cc;
}

.footer-email:hover {
    background: white;
    text-decoration: underline;
}

/* ===== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ ===== */
@media (max-width: 992px) {
    .footer-about h3 {
        font-size: 24px;
    }
    
    .footer-contacts a {
        min-width: 180px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-about {
        padding: 20px;
    }
    
    .footer-about h3 {
        font-size: 22px;
        padding-left: 15px;
        margin-bottom: 15px;
    }
    
    .footer-about p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .benefits-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    /* Контакты вертикально на мобильных */
    .footer-contacts {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-contacts a {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 15px;
    }
    
    .footer-contacts a i {
        font-size: 24px;
    }
    
    .footer-contacts a span {
        font-size: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-email {
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-about h3 {
        font-size: 20px;
    }
    
    .footer-about .highlight {
        font-size: 16px;
    }
    
    .footer-about p {
        font-size: 14px;
    }
    
    .footer-contacts-wrapper {
        padding: 15px;
    }
    
    .footer-contacts a {
        padding: 12px;
    }
    
    .footer-contacts a i {
        font-size: 22px;
    }
    
    .footer-contacts a span {
        font-size: 14px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

/* ===== ТЕМНАЯ ТЕМА (если нужна) ===== */
@media (prefers-color-scheme: dark) {
    .footer {
        background: #2a2a2a;
    }
    
    .footer-about,
    .footer-contacts-wrapper,
    .footer-contacts a,
    .footer-email {
        background: rgba(40, 40, 40, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .footer-about h3,
    .footer-contacts a span,
    .footer-copyright {
        color: #f0f0f0;
    }
    
    .footer-about p,
    .benefits-list li {
        color: #ccc;
    }
    
    .footer-email {
        color: #66b0ff;
    }
    
    .footer-email i {
        color: #66b0ff;
    }
}