/* components/contacts/contacts.css */
.contacts-page-wrapper {
    background-color: #fff;
    padding-top: 72px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.contacts-section {
    width: 100%;
    padding: 60px 0;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contacts-info h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}
.contacts-info h1 span {
    color: #ca8a04;
}
.contacts-info p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}
.info-items {
    margin-bottom: 40px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}
.info-item:hover {
    border-color: #fde047;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.info-icon {
    width: 48px;
    height: 48px;
    background: #ffd633;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
}
.info-item span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.info-item strong {
    font-size: 18px;
    font-weight: 800;
}
.social-box p {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
}
.social-links-row {
    display: flex;
    gap: 12px;
}
.social-circle {
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0f172a;
    transition: all 0.3s ease;
}
.social-circle:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    transform: translateY(-3px);
}
.contacts-form-container {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
}
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-group label {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, 
.form-group textarea {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
    background: #fcfcfd;
    color: #0f172a;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #ca8a04;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(254, 240, 138, 0.3);
}
.reply-choice-group {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}
.reply-btn {
    flex: 1 1 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 0;
    cursor: pointer;
    font-weight: 700;
    color: #64748b;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.reply-btn.active {
    background: #fcd34d;
    color: #000;
    border-color: #fcd34d;
    box-shadow: none;
}
.reply-btn:hover:not(.active) {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
}
.submit-btn-yellow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fcd34d;
    color: #000;
    font-weight: 800;
    font-size: 16px;
    border-radius: 12px;
    padding: 18px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}
.submit-btn-yellow:hover {
    background: #fbbf24;
}
.submit-btn-yellow:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}
.submit-btn-yellow.success {
    background: #10b981;
    color: #fff;
}
@media (max-width: 968px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contacts-info {
        text-align: center;
    }
    .social-links-row {
        justify-content: center;
    }
    .info-item {
        text-align: left;
    }
}
@media (max-width: 480px) {
    .contacts-form-container {
        padding: 24px;
    }
    .reply-choice-group {
        flex-direction: column;
        gap: 8px;
    }
}