.contact-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

/* Info cards */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #003366;
    color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}
.contact-card h5 {
    color: #003366;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-card p {
    color: #555;
    margin: 0;
    line-height: 1.7;
}
.contact-card a {
    color: #003366;
    text-decoration: none;
}
.contact-card a:hover {
    text-decoration: underline;
}

/* Form wrap */
.contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.section-title {
    color: #003366;
    border-left: 5px solid #ffcc00;
    padding-left: 15px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 24px;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0,51,102,.12);
}

.btn-send {
    background: #003366;
    color: #ffcc00;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.btn-send:hover {
    background: #002244;
    transform: translateY(-1px);
}

/* Map */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Office hours */
.office-hours {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.office-hours h5 {
    color: #003366;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}
.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.office-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}
.office-hours ul li:last-child {
    border-bottom: none;
}
.office-hours ul li span:first-child {
    font-weight: 600;
    color: #333;
}
