:root {
    --brand:       #fdb022;
    --brand-dark:  #e69000;
    --black:       #12141d;
    --gray-800:    #1d2939;
    --gray-700:    #344054;
    --gray-500:    #667085;
    --gray-200:    #eaecf0;
    --gray-100:    #f2f4f7;
    --gray-50:     #f9fafb;
    --white:       #ffffff;
    --red:         #c72027;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; color: var(--gray-800); background: #fff; overflow-x: hidden; line-height: 1.6; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

/* ─── NAVBAR ──────────────────────────────── */
.navbar-site {
    position: sticky; top: 0; z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.08);
    padding: 0 5%;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo img { height: 46px; width: auto; }
.nav-menu { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-menu a {
    font-size: 13.5px; font-weight: 500;
    color: var(--gray-700);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
}
.nav-menu a:hover { color: var(--black); border-color: var(--brand); }
.nav-cta {
    background: var(--brand) !important;
    color: var(--black) !important;
    padding: 8px 18px !important;
    border-radius: 24px !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    transition: background .18s !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gray-700); }
.mobile-nav {
    display: none; flex-direction: column;
    background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.1);
    position: fixed; top: 68px; left: 0; width: 100%; z-index: 999;
    padding: .5rem 5% 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); font-size: 15px; }

/* ─── HERO ───────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    background: url('../images/Aurobindo-Square_1-min.webp') center/cover no-repeat;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(18,20,29,.78) 0%, rgba(18,20,29,.38) 100%);
}
.hero-body {
    position: relative; z-index: 1;
    padding: 4rem 5%;
    max-width: 720px;
}
.hero-badge {
    display: inline-block;
    background: rgba(253,176,34,.15);
    border: 1px solid rgba(253,176,34,.45);
    color: var(--brand);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 30px;
    margin-bottom: 1.2rem;
}
.hero-body h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800; color: #fff;
    line-height: 1.18; margin-bottom: 1rem;
}
.hero-body p { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 1.8rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-brand {
    display: inline-block;
    background: var(--brand); color: var(--black);
    font-weight: 700; font-size: 14px;
    padding: 12px 26px; border-radius: 30px;
    transition: background .18s, transform .15s;
}
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline {
    display: inline-block;
    background: transparent; color: #fff;
    font-weight: 600; font-size: 14px;
    padding: 11px 26px; border-radius: 30px;
    border: 2px solid rgba(255,255,255,.6);
    transition: border-color .18s, background .18s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* ─── SECTIONS ───────────────────────────── */
.section      { padding: 4.5rem 5%; }
.section-alt  { background: var(--gray-50); }
.label { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-dark); margin-bottom: .4rem; }
.sec-title { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; color: var(--black); margin-bottom: .7rem; }
.sec-sub { font-size: 15px; color: var(--gray-500); line-height: 1.8; max-width: 560px; }

/* ─── ABOUT ──────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-text p { font-size: 14.5px; color: var(--gray-700); line-height: 1.85; margin-bottom: .9rem; }
#moreContent { margin-top: .25rem; }
.read-more-btn { background: none; border: none; color: var(--brand-dark); font-weight: 700; font-size: 14px; cursor: pointer; padding: 0; }
.video-box { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.14); aspect-ratio: 16/9; }
.video-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ─── WHY ORCHIDS ────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.why-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.why-icon { width: 52px; height: 52px; margin: 0 auto 1rem; background: #fff8e1; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.why-icon i { font-size: 22px; color: var(--brand-dark); }
.why-card h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: .4rem; }
.why-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ─── FEE STRUCTURE ──────────────────────── */
.fee-card {
    max-width: 660px; margin: 2rem auto 0;
    border: 1px solid var(--gray-200);
    border-radius: 20px; overflow: hidden;
}
.fee-header { background: var(--black); color: #fff; text-align: center; padding: 1.5rem; }
.fee-header h2 { font-size: 1.3rem; font-weight: 700; }
.fee-body { padding: 1.25rem; background: linear-gradient(135deg,rgba(251,232,255,.4) 0%,rgba(209,224,255,.4) 100%); }
.fee-row { display: flex; gap: 8px; margin-bottom: 7px; }
.fee-cell { flex: 1; background: rgba(255,255,255,.8); border-radius: 8px; padding: 9px 14px; font-size: 13.5px; text-align: center; font-weight: 500; color: var(--gray-700); }
.fee-head .fee-cell { font-weight: 700; color: var(--black); background: rgba(255,255,255,.95); }
.fee-notes { padding: .25rem 1.25rem 1.25rem; }
.fee-notes ul { padding-left: 1.1rem; }
.fee-notes li { font-size: 13px; color: var(--gray-500); margin-bottom: .25rem; line-height: 1.65; }

/* ─── PRINCIPAL ──────────────────────────── */
.principal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.principal-img { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.13); }
.principal-img img { width: 100%; height: 100%; object-fit: cover; }
.quote-bar {
    border-left: 4px solid var(--brand);
    background: var(--gray-100);
    border-radius: 0 8px 8px 0;
    padding: 1.1rem 1.3rem;
    font-style: italic; color: var(--gray-800);
    font-size: 1rem; margin: 1.1rem 0;
}
.p-name { font-size: 1.2rem; font-weight: 700; color: var(--black); }
.p-title { font-size: 13.5px; color: var(--gray-500); font-weight: 500; margin-bottom: 1rem; }
.p-bio { font-size: 14px; color: var(--gray-700); line-height: 1.85; }

/* ─── MANDATORY DISCLOSURE ───────────────── */
.disc-title {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 800; text-align: center;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--red);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--brand);
    margin-bottom: 2.5rem;
}
.disc-block { margin-bottom: 2.25rem; }
.disc-block-head {
    background: var(--black); color: #fff;
    font-size: 14px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    padding: .7rem 1.1rem;
    border-radius: 10px 10px 0 0;
}
.disc-table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-top: none; border-radius: 0 0 10px 10px; }
.disc-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.disc-table thead th {
    background: var(--brand); color: var(--black);
    font-weight: 700; padding: 10px 14px;
    text-align: left; white-space: nowrap;
    border-bottom: 2px solid var(--brand-dark);
}
.disc-table tbody tr:nth-child(even) { background: var(--gray-50); }
.disc-table tbody tr:hover { background: #fff8e6; }
.disc-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); vertical-align: middle; }
.disc-table a { color: var(--brand-dark); font-weight: 600; }
.disc-table a:hover { text-decoration: underline; }

/* ─── CONTACT ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; align-items: start; }
.contact-block h4 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 1.2rem; }
.contact-row { display: flex; gap: .75rem; margin-bottom: .9rem; align-items: flex-start; }
.contact-row i { color: var(--brand-dark); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.contact-row p { font-size: 14px; color: var(--gray-700); line-height: 1.65; }
.contact-row a { color: var(--gray-700); font-weight: 600; }
.map-box { border-radius: 18px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.map-box iframe { display: block; width: 100%; height: 330px; border: 0; }

/* ─── FOOTER ─────────────────────────────── */
.site-footer { background: var(--black); padding: 1.5rem 5%; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-inner img { height: 36px; filter: brightness(0) invert(1); opacity: .75; }
.footer-inner p { font-size: 12.5px; color: rgba(255,255,255,.55); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-grid, .principal-grid, .contact-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .hamburger { display: block; }
    .hero { min-height: 75vh; }
    .hero-body { padding: 3rem 5%; }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
}
