/* static/main/css/contacts.css */

.contacts-page {
    padding: 1rem 8px;
}

.contacts-title {
    font-size: clamp(1.25rem, 5vw, 2.5rem);
}

.contacts-subtitle {
    font-size: clamp(0.85rem, 3vw, 1.25rem);
}

/* Иконки */
.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Карточки */
.contact-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

/* Отключённые кнопки */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Мобильные */
@media (max-width: 576px) {
    .contacts-page {
        padding: 0.5rem 4px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        line-height: 48px;
    }
    
    .contact-icon i {
        font-size: 1.25rem !important;
    }
    
    .card-title {
        font-size: 0.95rem;
    }
    
    .card-text {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .card-header h5 {
        font-size: 1rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-control {
        font-size: 16px !important;
    }
}

/* Планшеты */
@media (min-width: 577px) and (max-width: 992px) {
    .contact-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

/* Десктоп */
@media (min-width: 993px) {
    .contacts-page {
        padding: 2rem 0;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}