
.contact-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-name {
    font-size: 28px;
    font-weight: 800;
    color: #C92127;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-info h3 {
    font-size: 20px;
    color: #444;
    margin-bottom: 10px;
}

.sub-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.5;
}

.info-details p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.map-container {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.contact-form-box h2 {
    font-size: 22px;
    color: #C92127;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #DDD;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #C92127;
}

.btn-submit {
    width: 100%;
    background-color: #C92127;
    color: white;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: #A7171C;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}