
/* ================= BASE ================= */
body {
    font-family: 'Roboto', Arial, sans-serif;
    padding-top: 80px;
    color: #00204c;
    background: #ffffff;
    line-height: 1.7;
}

/* ================= UNIFORM HERO (ALL PAGES SAME HEIGHT) ================= */
.hero {
    width: 100%;
    min-height: 65vh; /* SAME ACROSS WEBSITE */
    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/contact.webp') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #ffffff;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* ================= SECTION SPACING (UNIFIED) ================= */
.section-padding {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* ================= CONTACT CARD ================= */
.contact-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    max-width: 700px;
    margin: auto;
}

.contact-card h2 {
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.contact-card p {
    color: #5a6f8f;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem; /* FIXED (removed space error) */
}

/* ================= FORM ================= */
.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;

    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem; /* FIXED */

    transition: 0.3s;
}
/* Gap below phone field */
.iti {
    width: 100%;
    margin-bottom: 14px;
}

/* textarea */
.contact-card textarea {
    height: 130px;
    resize: none;
}

/* focus effect */
.contact-card input:focus,
.contact-card textarea:focus {
    border-color: #b90c14;
    outline: none;
    box-shadow: 0 0 0 2px rgba(185,12,20,0.1);
}

/* ================= BUTTON ================= */
.contact-card button {
    background: #b90c14;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.contact-card button:hover {
    background: #00204c;
}

/* ================= ALERT ================= */
.alert-success {
    display: none;
    background: #e6f4ea;
    color: #1e7e34;
    padding: 10px 12px;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

