/* Современный минималистичный дизайн */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #080808;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-hero {
    width: 100%;
    max-width: 600px;
    padding: 60px 24px;
    text-align: center;
}

/* Заголовок */
.contacts-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d4af37; /* Золотой акцент */
    margin-bottom: 40px;
}

/* Телефон */
.phone-block {
    margin-bottom: 40px;
}

.hero-phone {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -1px;
    transition: opacity 0.2s ease;
}

.hero-phone:hover {
    opacity: 0.8;
}

.work-hours {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #666666;
}

/* Адрес */
.address-block {
    margin-bottom: 48px;
}

.address-main {
    font-size: 20px;
    font-weight: 500;
    color: #eeeeee;
    margin-bottom: 4px;
}

.address-sub {
    font-size: 15px;
    color: #777777;
}

/* Ряд кнопок */
.messengers-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-clean {
    padding: 14px 28px;
    border-radius: 30px; /* Современные скруглённые pill-кнопки */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Фирменный Max */
.btn-max {
    background: #5b36f5;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(91, 54, 245, 0.25);
}

/* Telegram и WhatsApp в стиле стеклянного минимализма */
.btn-tg, .btn-wa {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-clean:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-tg:hover, .btn-wa:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
}

/* Мобильная адаптация */
@media (max-width: 480px) {
    .hero-phone {
        font-size: 32px;
    }
    
    .messengers-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-clean {
        width: 100%;
    }
}