/* ═══════════════════════════════════════════
   GSIMS, Hadapsar — Global Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1a3460;
  --navy-light: #243d6e;
  --gold:       #c8922a;
  --gold-light: #e8b96a;
  --gold-pale:  #fdf6e9;
  --white:      #ffffff;
  --off-white:  #f5f3ef;
  --text:       #2a2a2a;
  --text-light: #666666;
  --border:     #e0d9ce;
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 60px rgba(13,31,60,0.18);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-label { display: inline-block; color: var(--gold); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 0.97rem; color: var(--text-light); line-height: 1.75; max-width: 620px; }
.divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }
.divider.center { margin-left: auto; margin-right: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* TOP BAR */
#topbar { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 0.78rem; padding: 7px 0; letter-spacing: 0.03em; }
#topbar .topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px; }
#topbar .tagline { font-family: 'Noto Serif Devanagari', serif; color: var(--gold-light); font-size: 0.85rem; }
#topbar a { color: var(--gold-light); }
#topbar .topbar-right { display: flex; gap: 14px; align-items: center; }
#topbar .topbar-proposed { color: rgba(255,255,255,0.55); font-size: 0.73rem; }
#topbar .topbar-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ERP & LIBRARY LOGIN BUTTONS */
.topbar-login-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 4px;
  font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.18s; white-space: nowrap; text-decoration: none;
}
.erp-btn {
  background: rgba(200,146,42,0.18);
  border: 1px solid rgba(200,146,42,0.45);
  color: var(--gold-light) !important;
}
.erp-btn:hover { background: var(--gold); color: #fff !important; border-color: var(--gold); }
.lib-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8) !important;
}
.lib-btn:hover { background: rgba(255,255,255,0.18); color: #fff !important; }

/* MARQUEE STRIP */
#marquee-strip {
  background: linear-gradient(90deg, #1a3460 0%, #0d1f3c 100%);
  padding: 0; overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 36px; display: flex; align-items: center;
}
.marquee-inner { width: 100%; display: flex; align-items: center; height: 100%; overflow: hidden; }
.marquee-label {
  background: var(--gold); color: #fff;
  padding: 0 16px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  white-space: nowrap; flex-shrink: 0; height: 100%;
  display: flex; align-items: center; border-right: 2px solid rgba(255,255,255,0.15);
}
.marquee-track-wrap { overflow: hidden; flex: 1; height: 100%; display: flex; align-items: center; }
.marquee-track {
  display: flex; align-items: center;
  white-space: nowrap; will-change: transform;
  animation: mq-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; cursor: default; }
@keyframes mq-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}
.mq-item {
  display: inline-flex; align-items: center;
  padding: 0 20px; font-size: 0.8rem;
  color: rgba(255,255,255,0.88); font-weight: 500;
  white-space: nowrap; line-height: 1;
}
.mq-link { color: var(--gold-light) !important; transition: color 0.2s; cursor: pointer; }
.mq-link:hover { color: #fff !important; text-decoration: underline; }
.mq-sep {
  display: inline-block; color: var(--gold);
  opacity: 0.4; font-size: 0.5rem; padding: 0 2px;
  flex-shrink: 0; vertical-align: middle;
}

/* announcement bar removed — messages now in marquee */

/* HEADER */
/* ── HEADER — three-zone layout: logo | nav | actions ── */
#site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
#site-header .header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 0;
}
.logo-area { display: flex; align-items: center; gap: 10px; padding: 4px 0; flex-shrink: 0; margin-right: 12px; text-decoration: none; }
.logo-img { height: 48px; width: auto; flex-shrink: 0; object-fit: contain; display: block; }
/* Logo text hidden on desktop — text is already inside the logo image */
.logo-text { display: none; }
.logo-text .trust { font-size: 0.63rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.logo-text .inst-name { font-family: 'Playfair Display', serif; font-size: 0.84rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.logo-text .short { font-size: 0.68rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }

/* ── Main nav — takes all remaining space, centered ── */
#main-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; flex-wrap: nowrap; }
#main-nav > a,
#main-nav .nav-dropdown > a {
  color: var(--navy); font-size: 0.78rem; font-weight: 500;
  padding: 8px 9px; border-radius: 4px;
  transition: all 0.18s; white-space: nowrap;
  display: flex; align-items: center; cursor: pointer; line-height: 1;
  text-decoration: none;
}
#main-nav > a:hover,
#main-nav > a.active,
#main-nav .nav-dropdown:hover > a { color: var(--gold); background: var(--off-white); }
#main-nav > a.active { font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.6rem; margin-left: 1px; opacity: 0.6; }
.nav-dropdown:hover > a::after { opacity: 1; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); min-width: 260px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); padding: 6px 0; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 18px; font-size: 0.83rem;
  color: var(--text); border-left: 3px solid transparent;
  font-weight: 400; background: none; border-radius: 0; white-space: normal; text-decoration: none;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--gold); border-left-color: var(--gold); }

/* Fee Structure badge in nav */
.nav-fee-highlight { border: 1.5px solid var(--gold) !important; color: var(--gold) !important; padding: 5px 10px !important; border-radius: 5px !important; font-weight: 700 !important; font-size: .73rem !important; letter-spacing: .03em; }
.nav-fee-highlight:hover { background: var(--gold) !important; color: var(--white) !important; }

/* ── Action cluster — pinned right ── */
.nav-actions {
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; margin-left: 12px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}
.nav-act-btn {
  font-size: 0.76rem; font-weight: 600; padding: 7px 13px;
  border-radius: 5px; white-space: nowrap; text-decoration: none;
  transition: all 0.18s; line-height: 1; display: inline-flex; align-items: center;
}
.act-grievance {
  color: var(--navy); border: 1.5px solid var(--border);
}
.act-grievance:hover { border-color: var(--navy); background: var(--off-white); }
.act-pay {
  color: var(--navy); border: 1.5px solid var(--navy);
}
.act-pay:hover { background: var(--navy); color: var(--white); }
.act-cta {
  background: var(--gold); color: var(--white) !important; border: 1.5px solid var(--gold);
}
.act-cta:hover { background: var(--navy); border-color: var(--navy); }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* FOOTER */
#site-footer { background: var(--navy); color: rgba(255,255,255,0.72); }
#site-footer .footer-top { padding: 64px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
#site-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; display: block; flex-shrink: 0; filter: brightness(0) invert(1); }
.footer-logo-text .name { font-family: 'Playfair Display', serif; font-size: 0.82rem; color: var(--white); font-weight: 700; line-height: 1.3; }
.footer-logo-text .sub { font-size: 0.7rem; color: var(--gold-light); margin-top: 2px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.75; max-width: 300px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 700; transition: all 0.2s; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: white; }
#site-footer .footer-col h4 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
#site-footer .footer-col ul { list-style: none; }
#site-footer .footer-col ul li { margin-bottom: 9px; }
#site-footer .footer-col ul li a { color: rgba(255,255,255,0.62); font-size: 0.84rem; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
#site-footer .footer-col ul li a::before { content: '›'; color: var(--gold); }
#site-footer .footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 13px; }
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.82rem; line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--gold-light); }
#site-footer .footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
#site-footer .footer-bottom p { font-size: 0.78rem; }
#site-footer .footer-bottom a { color: var(--gold-light); }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(105deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(200,146,42,0.08) 0%, transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; line-height: 1.7; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em; border: none; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #a87420; transform: translateY(-1px); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-mid); }
.btn-outline { border: 2px solid var(--navy) !important; color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,31,60,0.12); border-color: var(--gold); }
.card-body { padding: 24px; }

/* PDF UPLOAD PLACEHOLDER */
.pdf-placeholder { background: var(--gold-pale); border: 2px dashed var(--gold); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; margin: 16px 0; }
.pdf-placeholder .pdf-icon { font-size: 2.4rem; margin-bottom: 12px; }
.pdf-placeholder h4 { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pdf-placeholder p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }
.edit-note { display: inline-block; background: rgba(200,146,42,0.15); border: 1px solid var(--gold); border-radius: 4px; padding: 3px 10px; font-size: 0.72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }

/* INFO TABLE */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.info-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; font-family: 'DM Sans', sans-serif; }
.info-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table tr:nth-child(even) td { background: var(--off-white); }
.info-table tr:hover td { background: var(--gold-pale); }

/* ACCORDION */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.accordion-header { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--white); font-weight: 600; font-size: 0.92rem; color: var(--navy); transition: background 0.2s; }
.accordion-header:hover { background: var(--off-white); }
.accordion-header.open { background: var(--navy); color: var(--white); }
.accordion-header .acc-icon { transition: transform 0.3s; flex-shrink: 0; }
.accordion-header.open .acc-icon { transform: rotate(45deg); color: var(--gold-light); }
.accordion-body { display: none; padding: 20px; background: var(--off-white); font-size: 0.9rem; line-height: 1.75; }
.accordion-body.open { display: block; }

/* NOTICE BOX */
.notice-box { background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; font-size: 0.88rem; line-height: 1.7; color: var(--text); }
.notice-box strong { color: var(--navy); }
.notice-box.info { border-left-color: var(--navy-mid); background: #eef2f8; }

/* ─── WHATSAPP WIDGET ─────────────────────────────── */
#wa-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; font-family: 'DM Sans', sans-serif; }

/* Floating trigger button */
#wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
#wa-btn:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
#wa-btn svg { width: 32px; height: 32px; fill: #fff; }

/* Pulse ring */
#wa-btn::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 3px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 1; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

/* Badge — notification dot */
#wa-badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e53935; border: 2px solid #fff;
  font-size: 0.6rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: wa-bounce 1.5s ease infinite;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

/* Popup panel */
#wa-popup {
  position: absolute; bottom: 76px; right: 0;
  width: 320px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  transform: scale(0.85) translateY(16px);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
#wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1; pointer-events: all;
}

/* Popup header */
.wa-header {
  background: #075e54;
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
}
.wa-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #128c7e; border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.wa-header-text .wa-name {
  font-size: 0.92rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.wa-header-text .wa-status {
  font-size: 0.72rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 5px; margin-top: 3px;
}
.wa-status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #25d366;
  flex-shrink: 0;
}
.wa-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1.3rem;
  line-height: 1; padding: 4px; transition: color 0.2s;
}
.wa-close:hover { color: #fff; }

/* Chat bubble area */
.wa-body {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8b89a' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 16px 14px 8px;
}
.wa-bubble {
  background: #fff; border-radius: 0 10px 10px 10px;
  padding: 12px 14px; max-width: 88%; box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  position: relative; margin-bottom: 6px;
}
.wa-bubble::before {
  content: ''; position: absolute; top: 0; left: -8px;
  border: 8px solid transparent;
  border-top: 0; border-right-color: #fff;
  border-top-color: #fff;
  width: 0; height: 0;
}
.wa-bubble p { font-size: 0.85rem; color: #303030; line-height: 1.55; margin: 0 0 4px; }
.wa-bubble p:last-child { margin-bottom: 0; }
.wa-bubble .wa-time { font-size: 0.62rem; color: #999; float: right; margin-top: 4px; margin-left: 10px; }

/* Quick reply chips */
.wa-chips { padding: 8px 14px 14px; background: #e5ddd5; display: flex; flex-wrap: wrap; gap: 7px; }
.wa-chip {
  background: #fff; border: 1.5px solid #25d366; border-radius: 20px;
  padding: 6px 13px; font-size: 0.77rem; font-weight: 600;
  color: #075e54; cursor: pointer; transition: all 0.18s;
  white-space: nowrap;
}
.wa-chip:hover { background: #25d366; color: #fff; }

/* CTA button */
.wa-cta {
  background: #25d366; border: none; width: 100%;
  padding: 14px; font-size: 0.9rem; font-weight: 700;
  color: #fff; cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s; font-family: 'DM Sans', sans-serif;
}
.wa-cta:hover { background: #1da851; }
.wa-cta svg { width: 18px; height: 18px; fill: #fff; }

/* Office hours footer */
.wa-footer {
  background: #f0f0f0; padding: 8px 14px;
  font-size: 0.68rem; color: #888; text-align: center;
  border-top: 1px solid #ddd; min-height: 32px;
}
.wa-back-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.75rem; font-weight: 600; color: #075e54;
  padding: 4px 8px; font-family: inherit;
}
.wa-back-btn:hover { color: #25d366; }

/* ── Capture form inside widget ── */
.wa-capture-inner {
  padding: 14px 16px 16px;
  background: #f0fdf4;
  border-top: 1px solid #d1fae5;
}
.wa-capture-title {
  font-size: 0.78rem; font-weight: 700; color: #065f46;
  margin-bottom: 12px;
}
.wa-capture-field { margin-bottom: 9px; }
.wa-capture-field label {
  display: block; font-size: 0.67rem; font-weight: 700;
  color: #555; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.wa-capture-field input {
  width: 100%; padding: 8px 10px; border: 1.5px solid #a7f3d0;
  border-radius: 6px; font-family: inherit; font-size: 0.82rem;
  background: #fff; box-sizing: border-box;
}
.wa-capture-field input:focus { outline: none; border-color: #25d366; }
.wa-cap-submit {
  background: #25d366; color: #fff; border: none;
  border-radius: 6px; padding: 9px 18px;
  font-size: 0.83rem; font-weight: 700; cursor: pointer;
  font-family: inherit; flex: 1; transition: background .18s;
}
.wa-cap-submit:hover { background: #1da851; }
.wa-cap-skip {
  background: none; color: #888; border: 1.5px solid #ddd;
  border-radius: 6px; padding: 9px 14px;
  font-size: 0.8rem; cursor: pointer; font-family: inherit;
  transition: all .18s;
}
.wa-cap-skip:hover { border-color: #aaa; color: #555; }

/* Reply area — user bubble (right) + bot reply (left) */
#wa-reply-area { padding: 8px 14px; background: #e5ddd5; }
.wa-user-bubble {
  display: flex; justify-content: flex-end; margin-bottom: 8px;
}
.wa-user-bubble span {
  background: #dcf8c6; border-radius: 10px 0 10px 10px;
  padding: 8px 12px; font-size: 0.81rem; font-weight: 600;
  color: #303030; max-width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.wa-reply-bubble {
  background: #fff; border-radius: 0 10px 10px 10px;
  padding: 12px 14px; max-width: 92%;
  box-shadow: 0 1px 3px rgba(0,0,0,.12); position: relative;
  margin-bottom: 8px;
}
.wa-reply-bubble::before {
  content: ''; position: absolute; top: 0; left: -8px;
  border: 8px solid transparent;
  border-top: 0; border-right-color: #fff; border-top-color: #fff;
  width: 0; height: 0;
}
.wa-reply-bubble p {
  font-size: 0.82rem; color: #303030; line-height: 1.6; margin: 0 0 3px;
}
.wa-reply-bubble p:last-of-type { margin-bottom: 8px; }
.wa-reply-bubble .wa-time {
  font-size: 0.6rem; color: #999; float: right; margin-top: 2px; margin-left: 8px;
}
.wa-reply-link {
  display: block; margin-top: 10px; margin-bottom: 4px;
  background: #e8f5e9; border: 1.5px solid #25d366;
  color: #075e54; border-radius: 8px;
  padding: 8px 12px; font-size: 0.8rem; font-weight: 700;
  text-decoration: none; text-align: center;
  transition: background .18s;
}
.wa-reply-link:hover { background: #25d366; color: #fff; }

/* "Still have questions?" escalation row */
.wa-still-help {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 8px 2px 4px;
}
.wa-still-help span { font-size: 0.73rem; color: #666; }
.wa-escalate {
  background: #25d366; border: none; border-radius: 16px;
  color: #fff; font-size: 0.74rem; font-weight: 700;
  padding: 6px 13px; cursor: pointer; font-family: inherit;
  white-space: nowrap; transition: background .18s;
}
.wa-escalate:hover { background: #1da851; }

@media (max-width: 380px) {
  #wa-widget { bottom: 16px; right: 16px; }
  #wa-popup { width: calc(100vw - 32px); right: 0; }
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  #site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
/* ── Touch dropdown open state ── */
[data-dropdown].dd-open > .dropdown-menu { display: block; }

/* ── Nav scale-down: progressively tighten until hamburger at 860px ── */
@media (max-width: 1100px) and (min-width: 861px) {
  #main-nav > a,
  #main-nav .nav-dropdown > a { font-size: 0.72rem; padding: 8px 7px; }
  .nav-act-btn { font-size: 0.70rem; padding: 6px 9px; }
  .nav-actions { gap: 4px; padding-left: 8px; margin-left: 4px; }
  .logo-img { height: 44px; }
}
@media (max-width: 960px) and (min-width: 861px) {
  #main-nav > a,
  #main-nav .nav-dropdown > a { font-size: 0.68rem; padding: 7px 6px; }
  .nav-act-btn { font-size: 0.67rem; padding: 5px 7px; }
  .nav-actions { gap: 3px; padding-left: 6px; margin-left: 3px; }
  .logo-img { height: 40px; }
  #topbar .topbar-proposed { display: none; }
}

@media (max-width: 860px) {
  /* ── Topbar ── */
  #topbar .topbar-proposed { display: none; }
  #topbar .topbar-sep      { display: none; }
  .erp-btn                 { display: none; }
  .lib-btn                 { display: none; }
  #topbar .topbar-inner    { justify-content: space-between; }

  /* ── Marquee ── */
  .marquee-label { display: none; }

  /* ── Header ── */
  #site-header { position: sticky; top: 0; }
  #site-header .header-inner { padding: 0 16px; }

  /* ── Hide desktop nav and action cluster, show hamburger ── */
  #main-nav    { display: none; }
  .nav-actions { display: none; }
  .hamburger   { display: flex; }

  /* ── Hamburger animation ── */
  .hamburger span { transition: transform .25s ease, opacity .25s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Mobile nav drawer ── */
  #main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 10px 16px 4px;
    box-shadow: var(--shadow-md); z-index: 99;
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .logo-text { display: block; }
  #main-nav.open > a,
  #main-nav.open .nav-dropdown > a {
    width: 100%; border-radius: 4px;
    font-size: .88rem; padding: 10px 12px;
  }
  #main-nav.open .nav-dropdown { flex-direction: column; align-items: stretch; }
  #main-nav.open .dropdown-menu {
    position: static; box-shadow: none; border: none;
    padding: 2px 0 4px 14px; display: block;
    border-left: 2px solid var(--border); margin: 2px 0 4px 10px;
  }
  #main-nav.open .nav-dropdown > a::after { content: ' ▾'; opacity: .5; }
  #main-nav.open .nav-fee-highlight {
    border: none !important; background: var(--gold-pale, #fdf6e9) !important;
    color: var(--gold) !important; padding: 10px 12px !important;
    font-size: .88rem !important; border-radius: 4px !important;
  }

  /* ── Action buttons inside mobile drawer ── */
  .nav-actions.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: static; box-shadow: none;
    border-top: 1px solid var(--border); margin: 0 -16px; padding: 10px 16px 14px;
  }
  #main-nav.open + .nav-actions.mobile-open { display: flex; }
  .nav-actions.mobile-open .nav-act-btn {
    padding: 10px 12px; font-size: .88rem; border-radius: 4px;
    text-align: center; justify-content: center;
  }
  .nav-actions.mobile-open .act-cta { margin-top: 2px; }

  #site-footer .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .page-hero { padding: 48px 0 40px; }
  #topbar .tagline { display: none; }
  #topbar .topbar-inner { justify-content: flex-end; }
}


/* MBA THEME */
/* ═══════════════════════════════════════════════════════════
   WEBSITE THEME: MBA / Management School
   Applied by SETUP.php — do not edit manually.
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy:       #1c1c1e;
  --navy-mid:   #2d2d30;
  --gold:       #b87333;
  --gold-light: #d4944a;
}
.btn-primary { background: #b87333; }
.btn-primary:hover { filter: brightness(0.88); }
.hero-slide::before { background: linear-gradient(100deg,#1c1c1edd 0%,#1c1c1e88 55%,#1c1c1e33 100%); }
.badge { border-radius: 4px; }
.section-badge { background: #fdf6ee; color: #1c1c1e; border-left: 3px solid #b87333; }
.nav-link.active, .nav-link:hover { color: #b87333; }
