/* ===== ОСНОВНЫЕ СТИЛИ ===== */

/* Контейнер контактов */
.contacts-list {
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

/* Телефон (первая ссылка) */
.contacts-list > a:first-child {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
    vertical-align: middle;
}

.contacts-list > a:first-child:hover {
    color: #37b44a;
}

/* Социальные иконки (все ссылки кроме первой) */
.contacts-list > a:not(:first-child) {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.contacts-list > a:not(:first-child):hover {
    transform: scale(1.1);
}

.contacts-list img {
    vertical-align: middle;
    border: 0;
}

/* Блок email */
.footer-phone {
    margin: 10px 0 5px 0;
    clear: both;
}

.footer-phone a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-phone a:hover {
    color: #37b44a;
    text-decoration: underline;
}

/* ВРЕМЯ РАБОТЫ (ярко-зеленый) */
.footer-phone strong {
    color: #37b44a !important;
    font-weight: bold;
    margin-left: 5px;
    font-size: 14px;
}

/* Адрес - УМЕНЬШЕН ОТСТУП СНИЗУ */
.footer-address {
    margin: 2px 0 1px 0; /* Было: 8px 0 10px 0 */
}

.footer-address a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.footer-address a:hover {
    color: #37b44a;
    text-decoration: underline;
}

/* Предупреждение о ценах - УМЕНЬШЕН ОТСТУП СВЕРХУ */
.price-notice {
    margin: 1px 0 0 0; /* Было: 12px 0 0 0 */
    padding: 4px 0; /* Было: 8px 0 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-notice__text {
    color: #00a650;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 9pt;
    line-height: 1.4;
    margin: 3px 0; /* Было: 4px 0 */
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 768px) {
    .contacts-list > a:first-child {
        display: block;
        margin-bottom: 8px;
    }
    
    .contacts-list > a:not(:first-child) {
        margin: 0 3px;
    }
    
    .footer-phone {
        margin: 8px 0;
    }
    
    .price-notice__text {
        font-size: 8pt;
    }
}

/* ===== АНИМАЦИИ ===== */

/* Lazy load анимация */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Плавное появление */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contacts-list img {
    animation: fadeIn 0.5s ease;
}

/* Доступность */
.contacts-list > a:focus {
    outline: 2px solid #37b44a;
    outline-offset: 2px;
}

/* Аккордеон */
.footer-menu__title {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-menu__title:hover {
    color: #37b44a;
}

/* Утилитарные классы */
.text-green { color: #37b44a; }
.text-white { color: #ffffff; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }