/* === Contact Page Styling === */
body {
    font-family: 'Roboto', sans-serif;
    background: #f4f7fb;
    color: #333;
    line-height: 1.6;
}

/* Main Container */
.contact-container {
    max-width: 1100px;
    margin: 70px auto;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Left Section (Form) */
.contact-left {
    flex: 1.6;
    padding: 40px;
    border-right: 1px solid #eee;
    min-width: 320px;
}

.contact-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d6efd;
}

.contact-left p {
    margin-bottom: 25px;
    color: #555;
    font-size: 15px;
}

/* Form */
.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 6px rgba(13,110,253,0.3);
}

/* Submit Button */
.btn-submit {
    background: #0d6efd;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #084298;
    transform: translateY(-2px);
}

/* Right Section (Office Info) */
.contact-right {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    min-width: 280px;
}

.contact-right h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #0d6efd;
}

.contact-right p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.contact-right b {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}
