/* HBPL shared theme – matches index.html */
:root {
    --navy: #0a2d6e;
    --gold: #f5a800;
    --green: #2db84b;
    --light-gray: #f4f6fb;
    --white: #ffffff;
    --text: #222b45;
    --muted: #6b7a99;
    --border: #e3e8f0;
    --shadow: 0 4px 24px rgba(10,45,110,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; -webkit-tap-highlight-color: transparent; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: #fff;
    box-shadow: 0 2px 12px rgba(10,45,110,0.07); position: sticky; top: 0; z-index: 100;
}
.hamburger { background: none; border: none; cursor: pointer; min-width: 44px; min-height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--navy); margin: 4px 0; border-radius: 2px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; max-width: 70%; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nav-logo .logo-fallback {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 50%, var(--gold) 50%);
    display: none; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.65rem; color: #fff;
}
.nav-logo .brand { line-height: 1.15; min-width: 0; }
.nav-logo .brand b { font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--navy); letter-spacing: 0.5px; }
.nav-logo .brand span { display: block; font-size: 0.55rem; color: var(--muted); font-weight: 600; letter-spacing: 0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-logo .brand .tagline { font-size: 0.55rem; color: var(--green); font-style: italic; font-weight: 600; }
.btn-apply {
    background: var(--gold); color: var(--navy);
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.75rem;
    border: none; border-radius: 6px; padding: 10px 14px; cursor: pointer; letter-spacing: 0.5px;
    transition: background 0.2s; white-space: nowrap; min-height: 40px; display: inline-flex; align-items: center;
}
.btn-apply:hover { background: #e59700; }

#mobileMenu { position: fixed; inset: 0; z-index: 200; background: #fff; overflow: auto; display: none; }
#mobileMenu.open { display: block; }
#mobileMenu .menu-head { padding: 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
#mobileMenu a { display: block; padding: 16px 24px; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--navy); min-height: 44px; }
#mobileMenu a.active { background: var(--light-gray); color: var(--green); }
#mobileMenu .menu-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; min-width: 44px; min-height: 44px; color: var(--navy); }

.breadcrumb { background: var(--light-gray); border-bottom: 1px solid var(--border); padding: 10px 16px; }
.breadcrumb-inner { max-width: 72rem; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .current { color: var(--navy); font-weight: 700; }

.section-label {
    text-align: center; font-family: 'Poppins', sans-serif; font-size: 0.72rem;
    font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 18px;
}
.section-label.left { text-align: left; margin-bottom: 12px; }
.section-divider { height: 6px; background: var(--light-gray); }

.page-hero {
    background: linear-gradient(135deg, #e8f0fb 0%, #fff 60%, #e6f9ee 100%);
    padding: 32px 16px;
}
.page-hero-inner { max-width: 72rem; margin: 0 auto; }
.page-hero h1 {
    font-family: 'Poppins', sans-serif; font-size: 1.75rem; line-height: 1.2;
    color: var(--navy); font-weight: 800;
}
.page-hero h1 span { color: var(--green); }
.page-hero .lead { font-size: 0.85rem; color: var(--navy); font-weight: 700; margin-top: 8px; }
.page-hero p { font-size: 0.78rem; color: var(--muted); margin-top: 10px; line-height: 1.65; }
.page-hero-layout { display: flex; flex-direction: column; gap: 20px; }
.page-hero-img { border-radius: 14px; box-shadow: var(--shadow); max-height: 280px; width: 100%; object-fit: cover; }

.page-section { padding: 32px 16px; }
.page-section.gray { background: var(--light-gray); }
.page-section .wrap { max-width: 72rem; margin: 0 auto; }
.page-section .wrap.narrow { max-width: 48rem; }

.alert-box {
    background: #fffbeb; border: 1.5px solid #fde68a; border-radius: 14px;
    padding: 16px; margin-bottom: 20px;
}
.alert-box strong { font-family: 'Poppins', sans-serif; color: #92400e; font-size: 0.82rem; display: block; margin-bottom: 6px; }
.alert-box p { font-size: 0.75rem; color: var(--text); line-height: 1.55; }

.disclaimer-bar { background: var(--light-gray); padding: 12px 16px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.disclaimer-bar p { font-size: 0.68rem; color: var(--text); text-align: center; max-width: 48rem; margin: 0 auto; line-height: 1.5; }

.card {
    background: var(--white); border-radius: 14px; padding: 18px;
    border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.card h2, .card h3 {
    font-family: 'Poppins', sans-serif; color: var(--navy); font-weight: 700;
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.card h2 { font-size: 1rem; }
.card h3 { font-size: 0.9rem; }
.card h2 i, .card h3 i { color: var(--green); }
.card p, .card li { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.card ul { list-style: none; margin-top: 8px; }
.card ul li { display: flex; gap: 8px; margin-bottom: 6px; }
.card ul li::before { content: '•'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.help-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.help-item {
    display: flex; gap: 12px; align-items: flex-start; padding: 14px;
    background: var(--white); border: 1.5px solid var(--border); border-radius: 14px;
    box-shadow: var(--shadow); transition: border-color 0.2s, transform 0.2s;
}
.help-item:hover { border-color: rgba(45,184,75,0.4); transform: translateY(-2px); }
.help-icon {
    width: 40px; height: 40px; border-radius: 12px; background: #e6f9ee;
    color: var(--green); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.help-item b { display: block; font-size: 0.78rem; color: var(--navy); font-weight: 700; }
.help-item small { font-size: 0.68rem; color: var(--muted); line-height: 1.4; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.hbpl-form label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; margin-top: 12px; }
.hbpl-form label:first-of-type { margin-top: 0; }
.hbpl-form input, .hbpl-form select, .hbpl-form textarea {
    width: 100%; padding: 12px; border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 16px; font-family: inherit; background: #fff; resize: vertical;
}
.hbpl-form input:focus, .hbpl-form select:focus, .hbpl-form textarea:focus {
    outline: none; border-color: var(--green); box-shadow: 0 0 0 2px rgba(45,184,75,0.2);
}
.consent-label { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; cursor: pointer; font-size: 0.68rem; color: var(--muted); line-height: 1.5; }
.consent-label input { width: auto; margin-top: 3px; flex-shrink: 0; }
.consent-label a { color: var(--green); text-decoration: underline; }
.btn-submit {
    width: 100%; margin-top: 16px; padding: 14px; background: var(--green); color: #fff;
    border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: 0.88rem; cursor: pointer; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: #25a340; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-primary-inline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; background: var(--gold); color: var(--navy);
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem;
    border: none; border-radius: 8px; cursor: pointer; min-height: 48px;
}
.btn-primary-inline:hover { background: #e59700; }
.btn-outline-inline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; background: transparent; color: var(--navy);
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem;
    border: 2px solid var(--navy); border-radius: 8px; min-height: 48px;
}
.btn-outline-inline:hover { background: var(--navy); color: #fff; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
.info-card { overflow: hidden; padding: 0; }
.info-card img { width: 100%; height: 160px; object-fit: cover; }
.info-card .body { padding: 18px; }
.info-card .body h3 { margin-bottom: 14px; }
.info-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.75rem; color: var(--muted); margin-bottom: 10px; }
.info-row i { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.info-row a:hover { color: var(--green); }

.leader-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.leader-card { overflow: hidden; padding: 0; }
.leader-head { background: linear-gradient(135deg, var(--navy) 0%, #153d8a 100%); padding: 16px 18px; color: #fff; }
.leader-head h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; margin: 0; color: #fff; }
.leader-head p { font-size: 0.72rem; color: rgba(255,255,255,0.85); margin-top: 4px; }
.leader-head .badge { font-size: 0.65rem; color: var(--gold); font-weight: 700; margin-top: 8px; display: block; }
.leader-body { padding: 18px; }
.leader-body p { font-size: 0.75rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.leader-body p:last-child { margin-bottom: 0; }

.cta-box {
    text-align: center; background: linear-gradient(135deg, #e8f0fb 0%, var(--light-gray) 100%);
    border: 1.5px solid var(--border); border-radius: 16px; padding: 24px 18px; margin-top: 24px;
}
.cta-box h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.cta-box p { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.content-block { margin-bottom: 28px; }
.content-block h2 {
    font-family: 'Poppins', sans-serif; font-size: 1.05rem; color: var(--navy); font-weight: 700;
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.content-block h2 i { color: var(--green); }
.content-block p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }

.detail-list { list-style: none; }
.detail-list li { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.detail-list strong { color: var(--navy); min-width: 110px; }

footer { background: var(--navy); padding: 24px 16px 20px; }
.footer-inner { max-width: 72rem; margin: 0 auto; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.72rem; line-height: 1.4; }
.contact-row .cicon { font-size: 1rem; flex-shrink: 0; }
.contact-row a:hover { text-decoration: underline; }
.footer-links-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.footer-links-row a { font-size: 0.68rem; color: rgba(255,255,255,0.7); }
.footer-links-row a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom small { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { font-size: 0.6rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: #fff; }

.whatsapp-fab {
    position: fixed; bottom: 20px; right: 16px; width: 52px; height: 52px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999; transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

.form-badges { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.68rem; color: var(--muted); margin: 10px 0; }
.form-badges span { display: flex; align-items: center; gap: 4px; }
.form-badges i { color: var(--green); }

@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    .form-grid-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
    .help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    nav { padding: 14px 24px; }
    .nav-logo { flex: none; justify-content: flex-start; max-width: none; }
    .nav-logo .brand b { font-size: 1.1rem; }
    .nav-logo .brand span { font-size: 0.62rem; }
    .btn-apply { font-size: 0.82rem; padding: 10px 20px; }
    .page-hero { padding: 40px 24px; }
    .page-hero h1 { font-size: 2.1rem; }
    .page-hero-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
    .page-section { padding: 40px 24px; }
    .contact-layout { grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: start; }
    .info-card.sticky { position: sticky; top: 88px; }
    .leader-grid { grid-template-columns: 1fr 1fr; }
    .help-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
    input, select, textarea, button { font-size: 16px !important; }
}
