.contact-page {
    padding: 40px 0 70px;
}

.contact-page-header {
    margin-bottom: 36px;
}

.contact-page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.contact-page-header p {
    color: #666;
    margin: 0;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #e02b27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.contact-info-item a {
    color: #333;
}

.contact-info-item a:hover {
    color: #e02b27;
}

.contact-info-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    min-height: 220px;
    border: 0;
}

.contact-form-desc {
    color: #666;
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: #e02b27;
    box-shadow: 0 0 0 0.15rem rgba(224, 43, 39, 0.15);
}

.contact-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e02b27;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-btn-submit:hover {
    background: #c42420;
    color: #fff;
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 20px;
    }
}
