.contact-wrapper {
    max-width: 1100px;   /* controls width */
    margin: 40px auto;   /* centers horizontally */
    padding: 0 15px;     /* space on mobile */
}
.contact-page {
    padding: 0px 15px;
    margin-top: 30px;
}

.contact-section {
    background-color: #fff;      /* white for form + map card */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-title {
    text-align: center;  /* Centers text horizontally */
    margin: -20px 0 20px; /* Top & bottom spacing */
    font-size: 1.6em;      /* Optional: make it more prominent */
    font-weight: 600;
}
.contact-title::after {
    content: "";
    display: block;
    margin: 10px auto 0;       /* Space between text and line */
    width: 100px;               /* Underline width */
    border-bottom: 3px solid #ff5a00; /* Change to your header accent color */
}

.form-container {
    flex: 1;
}

.map-container {
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.modern-form .form-control {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: all 0.3s;
}

.modern-form .form-control:focus {
    border-color: #ff5a00;
    box-shadow: 0 0 10px rgba(255,90,0,0.2);
    outline: none;
}

.btn-modern {
    background-color: #ff5a00;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
}

.btn-modern:hover {
    background-color: #e04e00;
}

.note {
    font-size: 0.9em;
    color: #666;
}
.section-title {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    border-bottom: 3px solid #ff5a00;
    margin: 10px auto 0;
}
@media (max-width: 991px) {
    .contact-section {
        flex-direction: column;
    }
    .map-container {
        min-height: 300px;
        margin-top: 30px;
    }
}