
/* ================= BASE ================= */
body {
    font-family: 'Roboto', Arial, sans-serif;
    padding-top: 80px;
    color: #00204c;
    background: #ffffff;
    line-height: 1.7;
}

/* ================= UNIFORM HERO (MATCH ALL PAGES) ================= */
.hero {
    width: 100%;
    min-height: 65vh; /* SAME HEIGHT ACROSS WEBSITE */

    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/request.webp') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #ffffff;
    padding: 0 20px;
}

/* HERO TEXT */
.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;
}

/* ================= QUOTE CARD ================= */
.quote-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    max-width: 850px;
    margin: auto;
}

/* TITLE */
.quote-card h2 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

/* ================= FORM SYSTEM ================= */
.quote-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 2-column layout */
.form-row {
    display: flex;
    gap: 15px;
}

/* inputs in row */
.form-row input,
.form-row select {
    flex: 1;
}

/* ALL INPUT FIELDS */
.quote-card input,
.quote-card select,
.quote-card textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: 0.3s;
}

/* TEXTAREA */
.quote-card textarea {
    height: 120px;
    resize: none;
}

/* FOCUS EFFECT */
.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
    outline: none;
    border-color: #b90c14;
    box-shadow: 0 0 0 2px rgba(185,12,20,0.15);
}

/* ================= BUTTON ================= */
.quote-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;
}

.quote-card button:hover {
    background: #00204c;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .hero {
        min-height: 55vh; /* better mobile fit */
    }
}

@media (max-width: 480px) {
    .quote-card {
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}