 /* ====== Page-specific tweaks scoped to Contact ====== */
#contact-hero {
    background: linear-gradient(0deg, rgba(0,16,80,0.75), rgba(0,16,80,0.75)), 
                url("../assets/coding-924920_1280.jpg") center/cover no-repeat;
    color: #DEEDF1;
    display: flex;
    align-items: center;
    min-height: 60vh;
    position: relative;
}
#contact-hero h1 {
    font: normal normal 600 60px/72px Lexend;
    font-size: 3rem;
    margin: 0;
    color: #DEEDF1;
}
.section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-head h2 {
    margin: 0;
    font: normal normal 500 60px/56px Lexend;
    font-size: 2.25rem;
    color: var(--brand-light-blue);
    white-space: nowrap;
}
.section-head .line {
    flex: 1;
    height: 3px;
    background: var(--brand-light-blue);
}
#contact-main {
    padding: 4rem 0 5rem;
    background: #EAF9FF;
}
.contact-card {
    background: var(--card-bg);
    border-radius: 0.4rem;
    padding: 1.25rem 1.25rem;
    box-shadow: 0 4px 12px var(--card-shadow);
    height: 100%;
}
.contact-card h6 {
    font: normal normal 600 16px/24px Muli;
    color: #082B6D;
    margin-bottom: .25rem;
}
.contact-card p, .contact-card a {
    margin: 0;
    font: normal normal 400 16px/24px Muli;
    color: #1A1A1A;
    text-decoration: none;
}

.btn-meeting {
    color: #ffffff !important;
}

.btn-meeting:hover {
    color: #1A1A1A !important;
}

.form-label {
    font: normal normal 500 14px/20px Lexend;
    color: #082B6D;
}
.form-control, .form-select {
    border-radius: .25rem;
    border: 1px solid #dbe6f4;
    padding: .65rem .75rem;
}
.form-control:focus, .form-select:focus {
    border-color: #23C5FF;
    box-shadow: 0 0 0 .25rem rgba(35,197,255,.15);
}
.btn-send {
    background: transparent linear-gradient(90deg, #23C5FF 0%, #0133D0 100%) 0% 0% no-repeat padding-box;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.6rem 2.0rem;
    border-radius: 0;
    transition: opacity 0.2s;
    font: normal normal 500 16px/20px Lexend;
}
.btn-send:hover { opacity: .85; }
#map {
    min-height: 320px;
    background: #f6fbff;
    border: 1px dashed #bfe9ff;
    border-radius: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a90;
    text-align: center;
    padding: 1rem;
}
@media (max-width: 767.98px) {
    #contact-hero { min-height: 50vh; }
    #contact-hero h1 { font-size: 2rem; line-height: 1.2; }
    .section-head h2 { font-size: 1.6rem; }
}