/* ==========================================================================
   Anu Agro Food — Corporate Information Portal
   Agro-food corporate palette adapted from the Bangladesh gov-portal pattern.
   ========================================================================== */

/* ─────────────── 1. CSS VARIABLES & RESET ─────────────── */
:root {
    --green:   #17452f;   /* deep agricultural green — nav, major headings */
    --green2:  #286341;   /* fresh leaf green — accents, links, buttons  */
    --green3:  #3d7a4c;   /* button hover / active green                  */
    --pale:    #edf3e9;   /* fresh leaf tint — subtle backgrounds         */
    --cream:   #faf9f3;   /* warm off-white                               */
    --gold:    #c9a86a;   /* restrained gold / earth-tone accent         */
    --ink:     #1f3025;   /* primary text                                 */
    --muted:   #68766b;   /* secondary text                               */
    --line:    #dce4d9;   /* subtle borders                               */
    --panel:   #ffffff;   /* content panels                               */
    --radius:  3px;       /* restrained corner radius                     */
    --shadow:  0 1px 3px rgba(23,69,47,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    margin: 0;
    font: 400 15px/1.6 "Noto Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* screen-reader-only helper */
.d-none { display: none !important; }
.placeholder-inline { color: var(--muted); font-style: italic; }

/* wrapper: centered, max-width content area */
.wrap { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }

/* utility eyebrow */
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--green2);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

/* ─────────────── 2. TOP UTILITY BAR ─────────────── */
.top {
    background: var(--green);
    color: #eaf1e9;
    font-size: 12px;
    line-height: 1.5;
    padding: 6px 0;
}
.top .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.top .label { font-weight: 700; }
.top .contact-link,
.top .enquiry-link,
.top .social-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.top .contact-link:hover,
.top .enquiry-link:hover,
.top .social-link:hover { color: var(--gold); }
.top .lang-small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}

/* ─────────────── 3. MASTHEAD / HEADER ─────────────── */
header {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}
.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
}
.logo {
    width: 60px;
    height: 60px;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: var(--pale);
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    /* logo is a replaceable placeholder — swap this div for an <img> */
}
.logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-title { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title strong {
    display: block;
    color: var(--green);
    font-size: 23px;
    font-weight: 700;
}
.brand-title small {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* masthead right: search + language */
.masthead-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    overflow: hidden;
}
.search-box input {
    width: 170px;
    border: 0;
    outline: 0;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--ink);
}
.search-box button {
    border: 0;
    background: var(--green);
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}
.lang-select {
    font-size: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 10px;
    background: var(--panel);
    color: var(--ink);
    cursor: pointer;
}

/* ─────────────── 4. MAIN NAVIGATION ─────────────── */
nav {
    background: var(--green);
    border-bottom: 2px solid var(--green2);
}
.navrow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.navrow a,
.navrow .nav-item {
    padding: 13px 15px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-right: 1px solid #ffffff1c;
    display: flex;
    align-items: center;
    transition: background-color .15s;
}
.navrow a:hover,
.navrow .nav-item:hover { background: var(--green2); }
.navrow .nav-item { position: relative; cursor: pointer; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green2);
    min-width: 180px;
    border-top: 1px solid #ffffff20;
    display: none;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 11px;
    border-bottom: 1px solid #ffffff15;
    color: #eaf1e9;
}
.dropdown a:last-child { border-bottom: 0; }
.nav-item:hover .dropdown { display: block; }
.menu-btn {
    display: none;
    background: var(--green);
    color: #fff;
    border: 0;
    padding: 9px 12px;
    margin-left: auto;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

/* ─────────────── 5. NOTICE / ANNOUNCEMENT STRIP ─────────────── */
.notice-strip {
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    padding: 9px 0;
    border-top: 1px solid #f0e9da;
    border-bottom: 1px solid #f0e9da;
}
.notice-strip .wrap { display: flex; align-items: center; gap: 10px; }
.notice-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--green);
    color: #fff;
    padding: 3px 8px;
    border-radius: var(--radius);
    white-space: nowrap;
}
.notice-text { font-weight: 500; }

/* ─────────────── 6. LAYOUT ─────────────── */
.breadcrumb {
    font-size: 11px;
    color: #ffffff;
    padding: 14px 20px;
}

/* two-column homepage: main (left) + sidebar (right) */
.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}
.main-col { min-width: 0; }
.sidebar { min-width: 0; }

/* ─────────────── 7. HERO / BANNER ─────────────── */
.hero {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.hero-image {
    height: 420px;
    background: repeating-linear-gradient(
        135deg,
        #e9efe3 0 10px,
        #e2eadb 10px 20px
    );
    display: grid;
    place-items: center;
    position: relative;
}
.hero-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 35, 21, .84) 0%, rgba(8, 35, 21, .58) 48%, rgba(8, 35, 21, .12) 100%);
}
.hero-image .placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    color: var(--green2);
    padding: 16px;
}
.hero-image .placeholder svg { width: 64px; height: 64px; }
.hero-image .placeholder b {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink);
}
.hero-image .placeholder small { font-size: 11px; color: var(--muted); }

.hero-caption {
    background: rgba(23,71,47,.85);
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
}

.hero-copy {
    position: absolute;
    z-index: 1;
    inset: 0;
    max-width: 720px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-copy .eyebrow { color: #f1d69b; margin-bottom: 12px; }
.hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.6px;
}
.hero p { color: #fff; max-width: 690px; margin: 0 0 18px; font-size: 15px; }
.hero .btn.secondary { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.hero .btn.secondary:hover { background: rgba(255,255,255,.2); }
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

/* ─────────────── 8. WELCOME SECTION ─────────────── */
.welcome {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 24px;
}
.welcome .eyebrow { margin-bottom: 14px; }
.welcome h2 {
    font-size: 28px;
    line-height: 1.15;
    color: var(--green);
    margin-bottom: 12px;
}
.welcome p { color: var(--muted); max-width: 690px; margin: 0 0 18px; }
.welcome .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Homepage value feature — balances the main column beside the leadership list. */
.home-showcase {
    display: grid;
    grid-template-columns: minmax(190px, .85fr) 1.15fr;
    min-height: 360px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.showcase-image { position: relative; min-height: 250px; }
.showcase-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 35, 21, .78), transparent 55%);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; }
.showcase-image span {
    position: absolute;
    z-index: 1;
    left: 20px;
    bottom: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.showcase-content { padding: 30px; background: linear-gradient(135deg, #fff 0%, var(--pale) 100%); }
.showcase-content .eyebrow { margin-bottom: 10px; }
.showcase-content h2 { color: var(--green); font-size: 25px; line-height: 1.2; margin: 0 0 12px; }
.showcase-content > p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0 0 18px; }
.showcase-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.showcase-points div { border-left: 3px solid var(--gold); padding: 2px 7px; }
.showcase-points strong { display: block; color: var(--green); font-size: 11px; }
.showcase-points span { display: block; color: var(--muted); font-size: 10px; line-height: 1.35; margin-top: 3px; }
.text-link { color: var(--green2); font-size: 12px; font-weight: 700; }
.text-link:hover { text-decoration: underline; }

/* ─────────────── 9. SIDEBAR ─────────────── */
.sidebox {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}
.sidehead {
    background: var(--green);
    color: #fff;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    border-bottom: 1px solid var(--green2);
}

/* ─────────────── 10. LEADERSHIP CARDS ─────────────── */
.leadership-message-list {
    /* Two complete cards with 250px portraits are visible; remaining messages scroll. */
    height: 800px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--green2) var(--pale);
}
.leadership-message-list::-webkit-scrollbar { width: 8px; }
.leadership-message-list::-webkit-scrollbar-track { background: var(--pale); }
.leadership-message-list::-webkit-scrollbar-thumb { background: var(--green2); border-radius: 8px; }
.leader {
    min-height: 385px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
}
.leader:last-child { border-bottom: 0; }
.portrait {
    height: 100%;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    object-fit: cover;
    object-position: center top;
    background: var(--pale);
    margin-bottom: 10px;
}
.leader-text b {
    font-size: 12px;
    color: var(--green);
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}
.leader-text small {
    font-size: 10px;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}
.leader-excerpt {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.leader-text a {
    font-size: 11px;
    color: var(--green2);
    font-weight: 700;
}
.leader-text a:hover { text-decoration: underline; }

/* ─────────────── 11. QUICK LINKS ─────────────── */
.side-links a {
    display: block;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    color: var(--ink);
    position: relative;
}
.side-links a:last-child { border-bottom: 0; }
.side-links a::after {
    content: "›";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green2);
    font-weight: 700;
}
.side-links a:hover { background: var(--pale); color: var(--green); }

/* business enquiry card */
.enquiry-card { padding: 16px; }
.enquiry-card p { font-size: 12px; color: var(--muted); margin: 0 0 12px; }

/* ─────────────── 12. BUTTONS ─────────────── */
.btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius);
    border: 1px solid var(--green);
    cursor: pointer;
    transition: background-color .15s, transform .05s;
    letter-spacing: .3px;
}
.btn:hover { background: var(--green2); border-color: var(--green2); }
.btn:active { transform: translateY(1px); }
.btn.secondary {
    background: var(--panel);
    color: var(--green);
    border: 1px solid var(--green);
}
.btn.secondary:hover {
    background: var(--pale);
}
.btn.outline {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.btn.outline:hover {
    background: var(--green);
    color: #fff;
}
.btn-small {
    font-size: 11px;
    padding: 8px 14px;
}

/* ─────────────── 13. SECTIONS ─────────────── */
.section { padding: 44px 0; }
.section.alt {
    background: var(--cream);
    border-block: 1px solid #edf0e9;
}
.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}
.section-title h2 {
    font-size: 28px;
    line-height: 1.15;
    color: var(--green);
    margin: 0;
}
.section-title p {
    font-size: 12px;
    color: var(--muted);
    max-width: 460px;
    margin: 0;
    text-align: right;
}
.section-inner { max-width: none; }

/* ─────────────── 14. PRODUCT CARDS ─────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform .15s, box-shadow .15s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23,69,47,.08);
}
.card-img {
    height: 155px;
    background: var(--pale);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-img .placeholder { padding: 12px; }
.card-img .price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}
.card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card h3 {
    font-size: 16px;
    color: var(--green);
    margin: 0 0 6px;
    font-weight: 700;
}
.card .desc {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 10px;
    flex: 1;
    line-height: 1.5;
}
.card-specs {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 12px;
}
.card-specs .pack { color: var(--ink); font-weight: 600; }
.card-specs .price { color: var(--green2); font-weight: 700; }
.card-actions {
    display: flex;
    gap: 8px;
}
.card-actions .btn { flex: 1; }
.card-actions .btn-details {
    background: var(--cream);
    color: var(--green);
    border: 1px solid var(--line);
}
.card-actions .btn-details:hover {
    background: var(--pale);
}
.card-actions .btn-enquire-card {
    background: var(--green2);
    color: #fff;
}
.card-actions .btn-enquire-card:hover {
    background: var(--green3);
}

/* form-note helper (used for disclaimers under product / contact forms) */
.form-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 16px;
}


/* ─────────────── 15. PRODUCT DETAIL MODAL ─────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--panel);
    border-radius: var(--radius);
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: 0;
    font-size: 22px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-title { font-size: 22px; color: var(--green); margin: 0 0 8px; font-weight: 700; }
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
    padding: 28px;
}
.modal-img {
    height: 220px;
    background: var(--pale);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    border: 1px dashed var(--line);
}
.modal-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.modal-img .placeholder { padding: 12px; }
.modal-body h3 {
    font-size: 22px;
    color: var(--green);
    margin: 0 0 8px;
}
.modal-body .modal-price {
    font-size: 18px;
    color: var(--green2);
    font-weight: 700;
    margin: 0 0 8px;
}
.modal-body .modal-pack {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 14px;
}
.modal-body .modal-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 18px;
}
.modal-body .modal-spec-list {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 18px;
}
.modal-body .modal-spec-list b { color: var(--ink); }
.modal-actions { display: flex; gap: 12px; margin-top: 18px; }
.modal-actions .btn-enquire-modal {
    background: var(--green2);
    color: #fff;
}
.modal-actions .btn-enquire-modal:hover {
    background: var(--green3);
}

/* ─────────────── 16. CONTENT BOXES ─────────────── */
.content-box {
    border: 1px solid var(--line);
    padding: 22px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.content-box h3 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 19px;
}
.content-box p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.content-box p:last-child { margin-bottom: 0; }
.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}
.value {
    background: var(--pale);
    padding: 11px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    border-radius: var(--radius);
}
.value::before { content: "✓ "; color: var(--green2); }

/* ─────────────── 17. TWO-COLUMN LAYOUTS ─────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.about-photo {
    min-height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px dashed var(--line);
    background: var(--pale);
    display: grid;
    place-items: center;
    height: 100%;
}
.about-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-photo .placeholder { padding: 12px; }
.full-width-mobile .two-col { grid-template-columns: 1fr; }

/* ─────────────── 18. ORGOGRAM ─────────────── */
.org {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.org-node {
    border: 1px solid #aabca8;
    background: var(--pale);
    padding: 11px 22px;
    text-align: center;
    min-width: 190px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    border-radius: var(--radius);
}
.org-line {
    width: 2px;
    height: 20px;
    background: #aabca8;
}
.org-branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 620px;
    margin-top: 10px;
}
.org-branches .org-node { min-width: 0; }

/* ─────────────── 19. TABLES ─────────────── */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow-y: hidden;
}
table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}
th {
    background: var(--green);
    color: #fff;
    text-align: left;
    padding: 12px;
    font-weight: 700;
}
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
tr:last-child td { border-bottom: 0; }

/* ─────────────── 20. SOCIAL / VIDEO ─────────────── */
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: background-color .15s;
}
.social a:hover { background: var(--pale); }
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}
.video-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.video-box .video-placeholder {
    height: 150px;
    background: var(--cream);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.video-box .video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-play {
    position: absolute;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding-left: 3px;
    border-radius: 50%;
    background: rgba(23, 69, 47, .88);
    color: #fff;
    font-size: 18px;
}
.video-meta { padding: 12px; }
.video-meta h4 { font-size: 14px; color: var(--green); margin: 0 0 4px; }
.video-meta p { font-size: 12px; color: var(--muted); margin: 0; }

/* ─────────────── 21. CONTACT ─────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
    align-items: start;
}
.contact-info {
    background: var(--green);
    color: #eaf1e9;
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info h3 {
    font-size: 22px;
    margin: 0 0 12px;
    color: #fff;
}
.contact-info p { font-size: 12px; color: #d8e4d7; margin: 0 0 16px; }
.contact-info .detail {
    padding: 11px 0;
    border-top: 1px solid #ffffff25;
    font-size: 12px;
}
.contact-info .detail b { color: #fff; }
.contact-info .detail strong { color: #fff; }

/* ─────────────── 22. FORM ─────────────── */
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    border: 1px solid var(--line);
    padding: 22px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form .full { grid-column: 1 / -1; }
.form label {
    font-size: 11px;
    font-weight: 700;
    color: #526355;
    display: block;
    margin-bottom: 5px;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--ink);
}
.form textarea { height: 100px; resize: vertical; }
.form .note {
    font-size: 10px;
    color: var(--muted);
    margin-top: 6px;
}
.form .error-msg {
    color: #c0392b;
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    display: block;
}
.form input.invalid,
.form textarea.invalid,
.form select.invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 2px rgba(192,57,43,.08);
}

/* ─────────────── 23. LEADERSHIP MESSAGE SECTIONS ─────────────── */
.leadership-section {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.leadership-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 22px;
    align-items: start;
}
.leader-portrait {
    width: 150px;
    height: 200px;
    margin: 0 auto;
    border: 1px dashed var(--line);
    border-radius: 6px;
    background: var(--pale);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
    font-size: 10px;
}
.leader-portrait .placeholder { padding: 8px; }
.leader-portrait > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.leader-detail h3 {
    font-size: 20px;
    color: var(--green);
    margin: 0 0 4px;
}
.leader-detail .designation {
    font-size: 13px;
    color: var(--green2);
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.leader-detail .message {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.7;
    margin: 0;
}
.leader-detail .placeholder-note {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
    font-style: italic;
}

/* ─────────────── 24. FOOTER ─────────────── */
footer {
    background: #123522;
    color: #dce8dc;
    padding: 30px 0;
    font-size: 11px;
    border-top: 2px solid var(--gold);
}
.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.foot-brand { display: flex; flex-direction: column; gap: 6px; }
.foot-brand b { color: #fff; font-size: 15px; }
.footnav { display: flex; gap: 15px; flex-wrap: wrap; }
.footnav a { color: #c8dac7; }
.footnav a:hover { color: var(--gold); }
.notice { font-size: 10px; color: #a9bca9; margin-top: 14px; }
.copyright { margin-top: 12px; }

/* ─────────────── 25. RESPONSIVE ─────────────── */
@media (max-width: 980px) {
    .layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .org-branches { grid-template-columns: 1fr; }
    .section-title { display: block; }
    .section-title p { text-align: left; margin-top: 8px; }
    .modal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .head { padding: 14px 0; }
    .brand { gap: 10px; }
    .brand-title strong { font-size: 19px; }
    .logo { width: 48px; height: 48px; font-size: 22px; }
    .masthead-tools { display: none; }
    .menu-btn { display: block; }
    .navrow {
        display: none;
        flex-direction: column;
        align-items: stretch;
    }
    .navrow.open { display: flex; }
    .navrow a,
    .navrow .nav-item {
        border-bottom: 1px solid #ffffff20;
        padding: 11px 14px;
    }
    .dropdown { position: static; border: 0; background: var(--green); display: none; }
    .nav-item.open .dropdown { display: block; }
    .hero-image { height: 460px; }
    .hero-copy { padding: 20px; }
    .hero h1 { font-size: 26px; }
    .cards { grid-template-columns: 1fr; }
    .home-showcase { grid-template-columns: 1fr; }
    .showcase-image { height: 250px; }
    .section { padding: 32px 0; }
    .section-title h2 { font-size: 24px; }
    .leadership-grid { grid-template-columns: 1fr; }
    .leadership-section { padding: 24px; }
    .form { grid-template-columns: 1fr; }
    .foot { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
    .top .wrap { flex-direction: column; gap: 6px; text-align: center; }
    .hero-copy { padding: 16px; }
    .hero h1 { font-size: 22px; }
    .showcase-content { padding: 22px; }
    .showcase-points { grid-template-columns: 1fr; gap: 10px; }
    .leader { grid-template-columns: 60px 1fr; gap: 10px; }
    .logo { width: 44px; height: 44px; }
}
