/* Page header */
.contact-header {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-bottom: 1px solid #fed7aa;
    padding: 48px 0 36px;
}

.contact-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Main content */
.contact-content {
    padding: 48px 0 64px;
}

.contact-content .container {
    max-width: 760px;
}

/* Sections */
.contact-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-section--last {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Contact cards */
.contact-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 24px;
    text-decoration: none;
    flex: 1;
    min-width: 200px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.1);
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    background: #fff7ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.contact-card-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Info block */
.info-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
}

.info-block p {
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 4px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.contact-cards + .info-block {
    margin-top: 12px;
}

.info-block--notice {
    background: #fffbeb;
    border-color: #fde68a;
}

.info-block--notice p {
    color: #78350f;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-content {
        padding: 32px 0 48px;
    }

    .contact-cards {
        flex-direction: column;
    }
}
