.contact-section {
    padding: 60px 0 120px;
    background: var(--bg-light);
    min-height: calc(100vh - var(--header-height));
}
.contact-header {
    margin-bottom: 50px;
    text-align: left;
}
.contact-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}
.contact-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: var(--shadow-strong);
}
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.info-icon {
    width: 44px;
    height: 44px;
    background: #fcf9f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}
.info-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}
.info-text p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #eee;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    outline: none;
    transition: all 0.3s;
    background: #fcf9f5;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(216, 70, 31, 0.05);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-header { text-align: center; }
    .contact-subtitle { margin: 0 auto; }
    .contact-title { font-size: 32px; }
}
