/* ============================================================
   ABOUT US PAGE — NFA
   File: assets/css/about-us.css
   ============================================================ */

/* ─────────────────────────────────────────
   RESET page-level defaults that theme injects
───────────────────────────────────────── */
body.page-template-page-about-us {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Hide default WordPress/theme page title if it shows */
body.page-template-page-about-us .entry-title,
body.page-template-page-about-us .page-title,
body.page-template-page-about-us h1.page-title {
    display: none !important;
}

/* ─────────────────────────────────────────
   BANNER — dark navy
───────────────────────────────────────── */
.about-banner {
    background-color: #0a1f3c !important;
    padding: 70px 20px 0 !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.about-banner__container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.about-banner__title {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 20px !important;
    line-height: 1.15 !important;
    text-align: center !important;
}

.about-banner__subtitle {
    font-size: 16px !important;
    color: #c8d6e8 !important;
    margin: 0 auto 40px !important;
    line-height: 1.7 !important;
    max-width: 700px !important;
    text-align: center !important;
}

/* ─────────────────────────────────────────
   FORM BAR — blue strip inside banner
───────────────────────────────────────── */
.about-banner__form-wrap {
    background-color: #1a3a6b !important;
    border-radius: 8px 8px 0 0 !important;
    padding: 20px 24px !important;
    margin: 0 auto !important;
    max-width: 1140px !important;
}

.about-banner__form {
    margin: 0 !important;
    padding: 0 !important;
}

.about-banner__form-fields {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    align-items: center !important;
}

.about-banner__input,
.about-banner__select {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    height: 48px !important;
    border: 1px solid #dde3ec !important;
    border-radius: 4px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    color: #333333 !important;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
}

/* Dropdown arrow for select */
.about-banner__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 32px !important;
}

.about-banner__input:focus,
.about-banner__select:focus {
    border-color: #e5581e !important;
    box-shadow: 0 0 0 2px rgba(229, 88, 30, 0.15) !important;
}

.about-banner__btn {
    flex: 0 0 auto !important;
    height: 48px !important;
    padding: 0 28px !important;
    background-color: #e5581e !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    line-height: 48px !important;
    display: inline-block !important;
}

.about-banner__btn:hover {
    background-color: #c94c18 !important;
}

/* ─────────────────────────────────────────
   ABOUT CONTENT — two-column rows
───────────────────────────────────────── */
.about-content {
    background-color: #ffffff !important;
    padding: 0 20px 60px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.about-content__container {
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Each row: LEFT (icon+title) | RIGHT (description) */
.about-content__item {
    display: grid !important;
    grid-template-columns: 320px 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    padding: 40px 0 !important;
    border-bottom: 1px solid #e4e9f0 !important;
    margin: 0 !important;
}

.about-content__item:first-child {
    padding-top: 50px !important;
}

.about-content__item:last-child {
    border-bottom: none !important;
}

/* LEFT: icon + title side by side */
.about-content__left {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
}

/* Icon wrapper */
.about-content__icon {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin-top: 3px !important;
}

.about-content__icon-img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    display: block !important;
}

.about-content__icon-placeholder {
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    background: #e8edf5 !important;
    border-radius: 50% !important;
}

/* Title */
.about-content__title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0a1f3c !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

/* RIGHT: description */
.about-content__desc {
    font-size: 15px !important;
    color: #4a5568 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    padding-top: 4px !important;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
    .about-content__item {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 768px) {
    .about-banner__title {
        font-size: 32px !important;
    }

    .about-banner__subtitle {
        font-size: 14px !important;
    }

    .about-banner__form-fields {
        flex-wrap: wrap !important;
    }

    .about-banner__input,
    .about-banner__select {
        flex: 1 1 calc(50% - 5px) !important;
    }

    .about-banner__btn {
        width: 100% !important;
    }

    .about-content__title {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .about-banner__input,
    .about-banner__select {
        flex: 1 1 100% !important;
    }
}