/* ===============================
   HERO SECTION
=================================*/
.contact-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    /*url('/../../schoolPics/hero-students-playing.png');*/
    /*background-size: cover;*/
    /*background-position: center top;*/
    /*padding: 90px 0;*/
    color: #fff;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-hero h1 {
    font-weight: 700;
    font-size: 42px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===============================
   SECTION
=================================*/
.contact-section {
    padding: 70px 0;
    background: #f9f9f9;
}

/* ===============================
   INFO CARD
=================================*/
.contact-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #198754;
}

.contact-info-card p {
    margin-bottom: 12px;
    color: #555;
}

.contact-info-card hr {
    margin: 20px 0;
}

/* ===============================
   FORM CARD
=================================*/
.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-title {
    font-weight: 600;
    margin-bottom: 25px;
    color: #198754;
}

/* ===============================
   INPUT STYLING
=================================*/
.form-control {
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.25);
}

/* ===============================
   BUTTON
=================================*/
.btn-success {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
}