/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Root ── */
:root {
    --primary:       #fdb022;
    --primary-dark:  #f59e0b;
    --primary-light: #fff8e5;
    --black:         #9d0022;
    --dark:          #1d2939;
    --g700: #344054;
    --g500: #667085;
    --g400: #98a2b3;
    --g300: #d0d5dd;
    --g200: #eaecf0;
    --g100: #f2f4f7;
    --g50:  #f9fafb;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 6px 28px rgba(0,0,0,.10);
    --shadow-lg: 0 14px 52px rgba(0,0,0,.15);
    --radius:    18px;
    --t: .25s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; color: var(--dark); overflow-x: hidden; margin: 0; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; }

/* ── NAVBAR ── */
.site-nav {
    position: sticky; top: 0; z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 var(--g200), 0 4px 20px rgba(0,0,0,.05);
    padding: 0 6%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    min-height: 70px;
}
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links {
    display: flex; align-items: center; list-style: none;
    margin: 0; padding: 0; gap: 2px;
}
.nav-links a {
    display: block; padding: 8px 14px;
    font-size: 13.5px; font-weight: 500; color: var(--g700);
    border-radius: 8px; transition: background var(--t), color var(--t); white-space: nowrap;
}
.nav-links a:hover { background: var(--primary-light); color: var(--primary-dark); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    font-size: 22px; color: var(--g700); padding: 6px 8px;
    border-radius: 8px; transition: background var(--t), color var(--t); line-height: 1;
}
.nav-toggle:hover { background: var(--primary-light); color: var(--primary-dark); }


/* ── HERO ── */
.hero {
    position: relative; min-height: 94vh;
    background: url('images/arekere-branch-image.avif') center center / cover no-repeat;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(18,20,29,.92) 0%,
        rgba(18,20,29,.70) 55%,
        rgba(18,20,29,.38) 100%);
}
.hero-inner {
    position: relative; z-index: 1; width: 100%;
    padding: 80px 6%; text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(253,176,34,.14); border: 1px solid rgba(253,176,34,.42);
    color: var(--primary); padding: 6px 18px; border-radius: 22px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .4px;
    margin-bottom: 24px; animation: fadeDown .6s ease both;
}
.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800;
    color: #fff; line-height: 1.15; margin-bottom: 22px;
    animation: fadeUp .65s ease both;
}
.hero-title span { color: var(--primary); }
.hero-sub {
    font-size: 1.08rem; color: rgba(255,255,255,.82);
    line-height: 1.8; margin-bottom: 38px;
    animation: fadeUp .7s ease .08s both;
}
.hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp .75s ease .16s both;
}

/* Hero stats strip */
.hero-stats {
    display: flex; justify-content: center; flex-wrap: wrap;
    margin-top: 64px; border-top: 1px solid rgba(255,255,255,.14);
    padding-top: 40px; gap: 0;
    animation: fadeUp .8s ease .24s both;
}
.hs-item {
    padding: 8px 44px;
    border-right: 1px solid rgba(255,255,255,.14);
    text-align: center;
}
.hs-item:last-child { border-right: none; }
.hs-num   { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hs-label { font-size: 11.5px; color: rgba(255,255,255,.58); margin-top: 6px; letter-spacing: .5px; text-transform: uppercase; }

/* ── BUTTONS ── */
.btn-yellow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--black);
    border: none; border-radius: 26px; padding: 13px 30px;
    font-size: 14.5px; font-weight: 700; cursor: pointer;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-yellow:hover {
    background: var(--primary-dark); color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(253,176,34,.38);
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,.55); border-radius: 26px;
    padding: 12px 28px; font-size: 14.5px; font-weight: 500; cursor: pointer;
    transition: background var(--t), border-color var(--t);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ── SHARED SECTION ── */
.sec       { padding: 80px 6%; }
.sec-white { background: #fff; }
.sec-gray  { background: var(--g50); }
.inner { max-width: 1160px; margin: 0 auto; }
.center { text-align: center; }
.center .sec-line { margin-left: auto; margin-right: auto; }
.center .sec-sub  { margin-left: auto; margin-right: auto; }

.sec-tag {
    display: inline-block; background: var(--primary-light); color: #b45309;
    padding: 5px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 700; letter-spacing: .5px;
    margin-bottom: 10px; text-transform: uppercase;
}
.sec-title {
    font-size: clamp(1.6rem, 2.8vw, 2.25rem); font-weight: 800;
    color: var(--black); line-height: 1.2; margin-top: 4px; margin-bottom: 14px;
}
.sec-line { width: 48px; height: 4px; background: var(--primary); border-radius: 2px; margin-bottom: 26px; }
.sec-sub  { font-size: 1rem; color: var(--g500); line-height: 1.8; max-width: 600px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size: 15.5px; color: var(--g700); line-height: 1.85; margin-bottom: 16px; }
.video-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrap iframe { width: 100%; height: 340px; display: block; border: none; }

/* ── WHY ORCHIDS ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    background: #fff; border: 1px solid var(--g200); border-radius: var(--radius);
    padding: 28px 24px; position: relative; overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(253,176,34,.16);
    border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.why-icon {
    width: 50px; height: 50px; background: var(--primary-light); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
    transition: background var(--t), transform var(--t);
}
.why-card:hover .why-icon { background: var(--primary); transform: scale(1.08); }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--black); margin: 0; }
.why-card p  { font-size: 13.5px; color: var(--g500); line-height: 1.7; margin: 0; }

/* ── FEE STRUCTURE ── */
.fee-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fee-table-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--g200); box-shadow: var(--shadow-md);
}
.fee-table-card table { width: 100%; border-collapse: collapse; }
.fee-table-card thead th {
    background: var(--black) !important; color: #fff !important;
    padding: 16px 22px; font-size: 13.5px; font-weight: 700;
    text-align: left; border: none !important;
}
.fee-table-card tbody td {
    padding: 13px 22px; font-size: 14px;
    border-bottom: 1px solid var(--g200) !important;
    border-left: none !important; border-right: none !important; border-top: none !important;
    color: var(--dark); transition: background var(--t);
}
.fee-table-card tbody tr:nth-child(even) { background: #fafbfd; }
.fee-table-card tbody tr:hover { background: var(--primary-light); }
.fee-amount { font-weight: 700; color: var(--black); }
.fee-info {
    background: linear-gradient(145deg, #fffbee 0%, #fff0c0 100%);
    border: 1px solid rgba(253,176,34,.35); border-radius: 20px; padding: 36px;
}
.fee-info h4 { font-size: 1.15rem; font-weight: 800; color: var(--black); margin-bottom: 24px; }
.fi-row {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 18px; font-size: 14.5px; color: var(--g700); line-height: 1.68;
}
.fi-row i   { color: #b45309; margin-top: 3px; flex-shrink: 0; }
.fi-row a   { color: var(--black); font-weight: 600; }

/* ── ADMISSION CARDS ── */
.adm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.adm-card {
    background: #fff; border: 1px solid var(--g200); border-radius: 22px;
    padding: 40px 30px; text-align: center; position: relative; overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}
.adm-step {
    position: absolute; top: 16px; right: 20px;
    font-size: 3.8rem; font-weight: 900; line-height: 1;
    pointer-events: none; user-select: none; opacity: .25;
}
.adm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Per-card backgrounds */
.adm-grid .adm-card:nth-child(1) {
    background: linear-gradient(145deg, #fff8e5 0%, #fef0c7 100%);
    border-color: rgba(253,176,34,.35);
}
.adm-grid .adm-card:nth-child(1) .adm-step { color: #f59e0b; }
.adm-grid .adm-card:nth-child(2) {
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(59,130,246,.25);
}
.adm-grid .adm-card:nth-child(2) .adm-step { color: #3b82f6; }
.adm-grid .adm-card:nth-child(3) {
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: rgba(22,163,74,.25);
}
.adm-grid .adm-card:nth-child(3) .adm-step { color: #16a34a; }

.adm-icon {
    width: 72px; height: 72px; margin: 0 auto 22px;
    background: rgba(255,255,255,.7); border-radius: 50%; padding: 16px;
    transition: background var(--t), transform var(--t);
}
.adm-card:hover .adm-icon { background: var(--primary); transform: scale(1.08); }
.adm-icon img { width: 100%; height: 100%; object-fit: contain; }
.adm-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.adm-card p  { font-size: 14px; color: var(--g700); line-height: 1.7; margin-bottom: 28px; }
.adm-btn {
    display: inline-block; padding: 12px 26px;
    background: var(--black); color: #fff; border-radius: 26px;
    font-size: 14px; font-weight: 600;
    transition: background var(--t), transform var(--t);
}
.adm-btn:hover { background: var(--primary); color: var(--black); transform: translateY(-1px); }

/* ── TRUST BANNER ── */
.trust-wrap { max-width: 1100px; margin: 0 auto; }
.trust-card {
    background: radial-gradient(ellipse at 28% 50%, rgba(70,65,40,.55) 0%, transparent 68%), #12141d;
    border-radius: 28px; padding: 60px 64px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 52px; align-items: center; position: relative; overflow: hidden;
}
.trust-glow {
    position: absolute; top: -80px; right: -80px;
    width: 360px; height: 260px;
    background: rgba(255,220,50,.18); border-radius: 50%;
    filter: blur(100px); pointer-events: none;
}
.trust-heading { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.22; }
.trust-para   { color: var(--g400); font-size: 15px; line-height: 1.8; }
.trust-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ts-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    transition: background var(--t), border-color var(--t);
}
.ts-card:hover { background: rgba(255,255,255,.08); border-color: rgba(253,176,34,.35); }
.ts-num  { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.ts-name { font-size: 12.5px; color: var(--g400); margin-top: 3px; }
.ts-icon {
    width: 48px; height: 52px; flex-shrink: 0; opacity: .7;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* ── MANDATORY DISCLOSURE ── */
.disc-title {
    font-size: 1.7rem; font-weight: 800; color: #c72027;
    text-transform: uppercase; text-align: center; letter-spacing: .5px; margin-bottom: 44px;
}
.disc-label {
    font-size: .88rem; font-weight: 700; color: var(--black);
    text-transform: uppercase; letter-spacing: .5px;
    padding-bottom: 10px; border-bottom: 3px solid var(--primary); margin: 40px 0 18px;
}
.disc-scroll { overflow-x: auto; border-radius: 14px; margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.disc-table {
    width: 100%; border-collapse: collapse; background: #fff;
    font-size: 13.5px; min-width: 500px;
}
.disc-table thead th {
    background: var(--black) !important; color: #fff !important;
    padding: 14px 18px; text-align: left; font-weight: 700;
    border: none !important;
}
.disc-table tbody td {
    padding: 12px 18px; color: var(--dark);
    border-bottom: 1px solid var(--g200) !important;
    border-left: none !important; border-right: none !important; border-top: none !important;
    vertical-align: top; line-height: 1.65;
}
.disc-table thead th:first-child,
.disc-table tbody td:first-child { text-align: center; }
.disc-table tbody tr:hover { background: #fafbfc; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.ci-icon {
    width: 48px; height: 48px; background: var(--primary-light); border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: #b45309; font-size: 18px; flex-shrink: 0;
    transition: background var(--t), color var(--t);
}
.ci-item:hover .ci-icon { background: var(--primary); color: var(--black); }
.ci-text strong {
    display: block; font-size: 12px; font-weight: 700; color: var(--g500);
    margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px;
}
.ci-text p, .ci-text a { font-size: 15px; color: var(--dark); line-height: 1.72; font-weight: 500; }
.ci-text a:hover { color: var(--primary-dark); }
.map-card { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-card iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 32px 6%; }
.footer-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 13px; color: #fff; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 13px; color: #fff; transition: color var(--t); }
.footer-nav a:hover { color: var(--primary); }

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .about-grid   { grid-template-columns: 1fr; gap: 40px; }
    .fee-layout   { grid-template-columns: 1fr; }
    .trust-card   { grid-template-columns: 1fr; padding: 44px; gap: 36px; }
    .adm-grid     { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .sec          { padding: 64px 6%; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; align-items: stretch; gap: 2px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 10px 20px 18px;
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
        border-top: 1px solid var(--g200);
    }
    .site-nav { position: relative; }
    .site-nav.nav-open .nav-links { display: flex; }
    .nav-links a { padding: 12px 14px; font-size: 15px; }
    .hs-item { padding: 8px 24px; }
    .adm-grid { max-width: 100%; }
}
@media (max-width: 640px) {
    .hero       { min-height: 100svh; }
    .hero-title { font-size: 1.82rem; }
    .why-grid   { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .sec { padding: 52px 4%; }
    .trust-card { padding: 28px 22px; }
    .ts-card { padding: 14px; }
    .ts-num  { font-size: 1.3rem; }
    .ts-icon { width: 36px; height: 40px; }
    .hs-item { padding: 6px 18px; }
    .hs-num  { font-size: 1.5rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
    .trust-card    { padding: 20px 14px; gap: 20px; }
    .trust-heading { font-size: 1.5rem; }
    .trust-stats   { gap: 10px; }
    .ts-card  { padding: 10px; gap: 6px; }
    .ts-num   { font-size: 1.1rem; }
    .ts-name  { font-size: 11px; }
    .ts-icon  { display: none; }
    .hero-stats { display: none; }
}
