/* =====================================================================
   US-Bangla Medical College & Hospital
   Flat solid palette sampled from the crest:
     blue #1768b3 (primary) · green #23b44c (accent) · red #eb1f29
   Manrope headings · Source Sans 3 body
   ===================================================================== */

:root {
  --white: #ffffff;

  /* Primary — the crest blue */
  --brand: #1768b3;
  --brand-dark: #10517f;
  --brand-soft: #e9f2fa;
  --brand-light: #8ec4ee;

  /* Secondary — the crest green, deepened for contrast */
  --accent: #1d9b45;
  --accent-dark: #15753a;
  --accent-soft: #e9f6ed;
  --accent-light: #5ecb7e;

  --ink: #0b2239;
  --ink-deep: #071a2c;
  --slate: #5b6c82;
  --mist: #f3f8fc;
  --line: #e2eaf3;
  --line-strong: #c3d4e6;
  --placeholder: #566a80;

  --font-head: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  --top-bar: 42px;
  --header-nav: 78px;
  --container: 1180px;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --sec-py: 44px;

  --sh-sm: 0 2px 10px rgba(11, 34, 57, 0.06);
  --sh: 0 10px 30px rgba(11, 34, 57, 0.08);
  --sh-lg: 0 24px 60px rgba(11, 34, 57, 0.14);

  --t: 0.22s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
}

strong { color: var(--ink); font-weight: 600; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.sec { padding: var(--sec-py) 0; }
.sec-mist { background: var(--mist); }

.brand-name-short { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}

.btn i { font-size: 12px; }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(23, 104, 179, 0.24);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 104, 179, 0.3);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.btn-full { width: 100%; }

/* ===== SECTION HEADINGS ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.chip-accent {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.chip-accent::before { background: var(--accent); }

.chip-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.chip-light::before { background: var(--brand-light); }

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-head-center {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head h2,
.section-head-center h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  margin-top: 12px;
}

.section-head p,
.section-head-center p {
  font-size: 15.5px;
  margin-top: 11px;
}

.text-accent { color: var(--brand); }

.section-cta {
  text-align: center;
  margin-top: 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(11, 34, 57, 0.05);
}

.top-bar {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.top-bar-inner {
  min-height: var(--top-bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 9px 0;
}

.top-bar-info,
.top-bar-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
}

.top-bar-info li,
.top-bar-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.top-bar-info i { color: var(--brand-light); font-size: 11px; }

.top-bar-highlights li {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-highlights i { color: var(--accent-light); font-size: 11px; }

.top-bar-info a:hover { color: var(--white); }

.main-nav {
  min-height: var(--header-nav);
  display: flex;
  align-items: center;
  background: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 5px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.018em;
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--brand-dark);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 13px;
  border-radius: 100px;
  transition: background var(--t), color var(--t);
}

.nav-menu a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.nav-cta {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mist);
  border: 1px solid var(--line);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(7, 26, 44, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 320;
}

body.nav-open .side-counselling-tab,
body.nav-open .floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  padding: 44px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-bg-scrim {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 412px;
  gap: 44px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 30px 22px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 40px rgba(11, 34, 57, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-left h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  max-width: 620px;
  color: var(--ink);
}

.hero-left h1 .text-accent { color: var(--brand-dark); }

.hero-left h1 .hero-name-full { display: block; }
.hero-left h1 .hero-name-short { display: none; }

.hero-lead {
  font-size: 16px;
  max-width: 560px;
  color: var(--ink);
}

.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
  width: 100%;
  max-width: 560px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.hero-checks i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: 9px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  background: #25d366;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
  transition: transform var(--t), box-shadow var(--t);
}

.hero-wa:hover { transform: translateY(-2px); }
.hero-wa i { font-size: 17px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
  width: 100%;
  max-width: 560px;
  margin-top: 4px;
}

.hero-trust span:first-child {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.hero-trust ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-trust li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 13px;
}

.hero-mobile-cta { display: none; width: 100%; }

.hero .form-card {
  box-shadow: 0 24px 60px rgba(11, 34, 57, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.75);
}

/* ===== LEAD FORM CARD ===== */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-card-head {
  background: var(--ink);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.form-card-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--brand);
}

.form-head-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
}

.form-card-head-text { min-width: 0; }

.form-card-head h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.form-card-head p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 3px;
}

.lead-form { padding: 22px 24px 24px; }

.form-field { margin-bottom: 13px; }

.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.form-field input::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

/* Firefox dims placeholders by default */
.form-field input::-moz-placeholder { color: var(--placeholder); opacity: 1; }

/* Match the select's "State*" prompt to the other placeholders until a state is picked */
.form-field select:invalid { color: var(--placeholder); }
.form-field select option { color: var(--ink); }
.form-field select option[value=""] { color: var(--placeholder); }

.form-field input:hover,
.form-field select:hover { border-color: #a9c2da; }

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 104, 179, 0.12);
}

.form-field input.is-invalid,
.form-field.has-error input,
.form-field.has-error select {
  border-color: #e0483c;
  background: #fdf2f1;
}

.phone-field {
  display: flex;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}

.phone-field:hover { border-color: #a9c2da; }

.phone-field:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(23, 104, 179, 0.12);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  background: var(--mist);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-right: 1.5px solid var(--line-strong);
}

.phone-prefix img { width: 19px; border-radius: 2px; }

.phone-field input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.has-error .phone-field { border-color: #e0483c; }

.field-error {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: #d63d31;
  margin-top: 4px;
  min-height: 14px;
  line-height: 1.3;
}

.form-error {
  color: #d63d31;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-consent {
  font-size: 11.5px;
  color: var(--slate);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ===== FACTS STRIP (overlaps hero) ===== */
.facts-strip {
  margin-top: -76px;
  position: relative;
  z-index: 3;
  padding-bottom: var(--sec-py);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.fact-item {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background var(--t);
}

.fact-item:last-child { border-right: none; }
.fact-item:hover { background: var(--mist); }

.fact-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: background var(--t), color var(--t), transform var(--t);
}

.fact-item:nth-child(even) .fact-icon {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.fact-item:hover .fact-icon {
  transform: translateY(-3px) scale(1.06);
}

.fact-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.fact-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 5px;
  line-height: 1.4;
}

/* ===== APPROVALS STRIP ===== */
.approvals {
  padding: 20px 0;
  background: var(--ink-deep);
}

.approvals-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
  flex-wrap: wrap;
}

.approvals-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.45);
}

.approvals-list {
  display: flex;
  align-items: center;
  gap: 12px 26px;
  flex-wrap: wrap;
}

.approvals-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.approvals-list i {
  color: var(--brand-light);
  font-size: 13px;
}

/* ===== ABOUT ===== */
.about-row {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-media { position: relative; }

.about-media-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.about-media-main img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -18px -18px 40px 40px;
  border-radius: var(--r-xl);
  background: var(--brand);
  opacity: 0.13;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -26px;
  left: -22px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
}

.about-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.about-badge span {
  font-size: 12px;
  color: var(--slate);
}

.about-text h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin: 18px 0 18px;
}

.about-text p { margin-bottom: 16px; }

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin: 26px 0;
}

.spec-row {
  background: var(--white);
  padding: 14px 18px;
}

.spec-row dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.spec-row dd {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 3px;
  line-height: 1.35;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  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: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
  transition: background var(--t), color var(--t);
}

.why-card:nth-child(3n + 2) .why-icon {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.why-card:hover .why-icon {
  background: var(--brand);
  color: var(--white);
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ===== COMPARE (Why Bangladesh) ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.compare-card {
  border-radius: var(--r-lg);
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.compare-card.is-highlight {
  background: var(--ink);
  border-color: transparent;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}

.compare-card.is-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
}

.compare-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.is-highlight .compare-head { border-bottom-color: rgba(255, 255, 255, 0.16); }

.compare-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--mist);
  color: var(--slate);
}

.is-highlight .compare-head-icon {
  background: var(--brand);
  color: var(--white);
}

.compare-head h3 { font-size: 1.15rem; }
.is-highlight .compare-head h3 { color: var(--white); }

.compare-head span {
  font-size: 12px;
  color: var(--slate);
}

.is-highlight .compare-head span { color: rgba(255, 255, 255, 0.6); }

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.is-highlight .compare-list li { color: rgba(255, 255, 255, 0.86); }

.compare-list i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8px;
  margin-top: 3px;
}

.compare-list .ico-no {
  background: #fde8e6;
  color: #d63d31;
}

.compare-list .ico-yes {
  background: rgba(94, 203, 126, 0.18);
  color: var(--accent-light);
}

/* ===== FEES ===== */
.fees-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.fees-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fee-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
}

.fee-card.is-total {
  background: var(--ink);
  border-color: transparent;
  box-shadow: var(--sh);
}

.fee-card span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--slate);
}

.fee-card.is-total span { color: rgba(255, 255, 255, 0.6); }

.fee-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.fee-card.is-total strong { color: var(--white); }

.fee-card small {
  display: block;
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 6px;
  line-height: 1.5;
}

.fee-card.is-total small { color: rgba(255, 255, 255, 0.65); }

.fee-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fee-table thead th {
  background: var(--mist);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.fee-table tbody td {
  padding: 15px 22px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:hover { background: var(--mist); }

.fee-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.fee-table td:last-child,
.fee-table th:last-child {
  text-align: right;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--brand-dark);
}

.fee-table tfoot td {
  padding: 17px 22px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
}

.fee-table tfoot td:last-child { color: var(--brand-light); }

.fees-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px 18px;
  background: var(--accent-soft);
  border-radius: var(--r);
  font-size: 13px;
  line-height: 1.6;
}

.fees-note i {
  color: var(--accent-dark);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== ELIGIBILITY & DOCUMENTS ===== */
.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.elig-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--sh-sm);
}

.elig-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.elig-card-head i {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.elig-card:nth-child(2) .elig-card-head i {
  background: var(--accent);
}

.elig-card-head h3 { font-size: 1.18rem; }

.elig-card-head span {
  font-size: 12.5px;
  color: var(--slate);
}

.elig-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 13px;
  border-bottom: 1px dashed var(--line);
}

.elig-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.elig-list i {
  flex-shrink: 0;
  color: var(--brand);
  font-size: 12px;
  margin-top: 5px;
}

.elig-card:nth-child(2) .elig-list i { color: var(--accent); }

/* ===== COURSE PHASES ===== */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.phase-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  transition: transform var(--t), box-shadow var(--t);
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}

.phase-year {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.phase-card:nth-child(even) .phase-year {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.phase-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.phase-card p {
  font-size: 13.5px;
  line-height: 1.65;
}

.phase-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 26px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mist);
  z-index: 0;
}

.phase-num {
  position: absolute;
  right: 22px;
  top: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  z-index: 1;
}

/* ===== ADMISSION PROCESS (timeline) ===== */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 68px;
  max-width: 980px;
  margin: 0 auto;
}

.steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  transform: translateX(-50%);
  border-left: 2px dashed var(--line);
}

.step {
  position: relative;
  padding: 0 0 26px;
}

.step:nth-child(odd) { grid-column: 1; text-align: right; }
.step:nth-child(even) { grid-column: 2; margin-top: 56px; }

.step-num {
  position: absolute;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
}

.step:nth-child(odd) .step-num { right: -60px; }
.step:nth-child(even) .step-num { left: -60px; }

.step:hover .step-num {
  background: var(--brand);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(23, 104, 179, 0.32);
}

.step-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  transition: transform var(--t), box-shadow var(--t);
}

.step:hover .step-body {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}

.step-body h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  transition: gap var(--t);
}

.step-link:hover { gap: 12px; }
.step-link i { font-size: 10px; }

/* ===== STATS ===== */
.stats-section {
  background: var(--ink);
  padding: 42px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  text-align: center;
  transition: transform var(--t), background var(--t);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--brand-light);
  margin-bottom: 16px;
  display: block;
}

.stat-card:nth-child(even) i { color: var(--accent-light); }

.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.022em;
}

.stat-card span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 8px;
}

/* ===== CAMPUS FACILITIES ===== */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.campus-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
  border-color: var(--brand);
}

.campus-card i {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--mist);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.campus-card:nth-child(even) i { color: var(--accent-dark); }

.campus-card h3 { font-size: 0.98rem; }

.campus-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0;
  box-shadow: var(--sh-sm);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: rgba(7, 26, 44, 0.85);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { overflow: hidden; }

.testimonial-slider { overflow: hidden; }

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonialScroll 46s linear infinite;
  padding: 6px 0 18px;
}

.testimonial-track:hover { animation-play-state: paused; }

.testimonial-card {
  flex: 0 0 370px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
  position: relative;
}

.testimonial-quote-mark {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-head);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--brand-soft);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 12px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
  position: relative;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-top img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-top h3 {
  font-size: 14.5px;
  font-weight: 600;
}

.testimonial-top p {
  font-size: 12px;
  color: var(--slate);
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 44px;
  align-items: start;
}

.faq-aside .section-head { margin-bottom: 28px; }

.faq-help {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-sm);
}

.faq-help h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.faq-help p {
  font-size: 13.5px;
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-item.is-open {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(23, 104, 179, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t);
}

.faq-q:hover { color: var(--brand-dark); }

.faq-q i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  transition: transform var(--t), background var(--t), color var(--t);
}

.faq-item.is-open .faq-q i {
  transform: rotate(45deg);
  background: var(--brand);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.is-open .faq-a { max-height: 420px; }

.faq-a p {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.72;
}

/* ===== CTA ===== */
.cta-section { padding: 0 0 var(--sec-py); }

.cta-inner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--brand);
}

.cta-text {
  position: relative;
  max-width: 620px;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  margin: 16px 0 12px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 0 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.footer-brand span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  transition: background var(--t), color var(--t);
}

.footer-social a:hover {
  background: var(--brand);
  color: var(--white);
  border-color: transparent;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.footer-contact i {
  color: var(--brand-light);
  font-size: 12px;
  flex-shrink: 0;
}

.footer-contact a:hover { color: var(--white); }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 0;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px 0 14px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

/* ===== POPUP ===== */
.form-popup {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.form-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.form-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 44, 0.82);
  backdrop-filter: blur(4px);
}

.form-popup-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 424px;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.25s ease;
}

.form-popup.is-open .form-popup-dialog { transform: none; }

.form-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: var(--sh);
  z-index: 3;
  transition: background var(--t), color var(--t), transform var(--t);
}

.form-popup-close:hover {
  background: var(--brand);
  color: var(--white);
  transform: rotate(90deg);
}

body.popup-open,
body.nav-open,
html.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* ===== SIDE TAB + FLOATING ===== */
.side-counselling-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 350;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 0 14px 14px 0;
  padding: 16px 10px;
  cursor: pointer;
  box-shadow: 4px 0 20px rgba(11, 34, 57, 0.24);
  transition: transform var(--t), box-shadow var(--t), opacity 0.2s ease, visibility 0.2s ease;
}

.side-counselling-tab:hover {
  transform: translateY(-50%) translateX(3px);
  box-shadow: 6px 0 26px rgba(11, 34, 57, 0.3);
}

.side-tab-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.side-counselling-tab i { font-size: 17px; }

.side-tab-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(11, 34, 57, 0.26);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(11, 34, 57, 0.32);
}

.floating-btn i { font-size: 22px; color: var(--white); }

.floating-phone { background: var(--brand); }
.floating-wa { background: #25d366; }
.floating-wa i { font-size: 26px; }

/* ===== THANK YOU ===== */
.thankyou-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  position: relative;
  overflow-x: hidden;
}

.thankyou-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--brand);
}

.thankyou-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  position: relative;
  z-index: 1;
}

.thankyou-card {
  width: 100%;
  max-width: 540px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 44px 36px 34px;
  text-align: center;
}

.thankyou-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  border-radius: 24px;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(23, 104, 179, 0.32);
}

.thankyou-card h1 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  margin: 16px 0 14px;
}

.thankyou-lead {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.thankyou-steps {
  text-align: left;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.thankyou-steps li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  line-height: 1.55;
}

.thankyou-steps i {
  color: var(--brand);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.thankyou-actions > * { flex: 1; }

.thankyou-btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}

.thankyou-btn-wa:hover { transform: translateY(-2px); }

.thankyou-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t), gap var(--t);
}

.thankyou-home:hover { color: var(--brand-dark); gap: 13px; }

.thankyou-footer {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.thankyou-footer p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 1200px) {
  :root { --sec-py: 40px; }

  .nav-menu a { padding: 9px 9px; font-size: 12.5px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 370px; gap: 36px; }
  .brand-name { font-size: 1.1rem; }
  .footer-contact { justify-content: flex-end; }
}

@media (max-width: 1024px) {
  .top-bar { display: none; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.is-open {
    display: flex;
    position: fixed;
    top: var(--site-header-h, 78px);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 8px 20px calc(28px + env(safe-area-inset-bottom, 0px));
    box-shadow: var(--sh);
    z-index: 300;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.is-open a {
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
  }

  .nav-menu.is-open li:last-child a { border-bottom: none; }

  .hero {
    background: var(--white);
    padding: 34px 0 80px;
  }

  .hero-bg,
  .hero-bg-scrim { display: none; }

  .hero-left {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-left h1, .hero-lead { max-width: 100%; }
  .hero-left h1 .hero-name-full { display: none; }
  .hero-left h1 .hero-name-short { display: block; }
  .hero-checks { max-width: 520px; text-align: left; }
  .hero-trust { justify-content: center; }
  .hero-trust ul { justify-content: center; }
  .form-card { max-width: 480px; margin-inline: auto; }

  .facts-strip { margin-top: -56px; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .fact-item:nth-child(3) { border-right: none; }
  .fact-item:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }

  .about-row { grid-template-columns: 1fr; gap: 52px; }
  .about-media { order: -1; max-width: 520px; }
  .about-media::before { inset: -14px -14px 30px 30px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .fees-layout { grid-template-columns: 1fr; }
  .fees-summary { flex-direction: row; }
  .fees-summary > * { flex: 1; }
  .elig-grid { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { padding: 44px 36px; }
  .cta-actions { flex-direction: row; width: 100%; }
  .cta-actions > * { flex: 1; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .gallery-grid .gallery-item {
    grid-column: auto;
    grid-row: auto;
  }

  .steps { grid-template-columns: 1fr; gap: 0; max-width: 560px; }
  .steps::before { left: 26px; transform: none; }
  .step:nth-child(odd),
  .step:nth-child(even) {
    grid-column: 1;
    text-align: left;
    margin-top: 0;
    padding-left: 74px;
    padding-bottom: 26px;
  }
  .step:nth-child(odd) .step-num,
  .step:nth-child(even) .step-num { left: 0; right: auto; }
}

@media (max-width: 768px) {
  :root {
    --sec-py: 32px;
    --header-nav: 68px;
  }

  body { font-size: 14.5px; }

  .container { width: min(var(--container), calc(100% - 28px)); }

  .site-footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }

  .brand-name-full { display: none; }
  .brand-name-short { display: block; font-size: 0.98rem; line-height: 1.25; }
  .brand-sub { font-size: 0.55rem; letter-spacing: 0.08em; }
  .brand-mark { width: 44px; height: 44px; border-radius: 12px; }
  .brand-logo { min-width: 0; flex: 1; }

  .hero { padding: 28px 0 40px; }
  .hero-left { gap: 18px; }
  .hero-left h1 { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .hero-lead { font-size: 14.5px; }
  .hero-checks { grid-template-columns: 1fr; gap: 10px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions > * { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-form-desktop { display: none; }
  .hero-mobile-cta { display: inline-flex; }

  .facts-strip {
    margin-top: 0;
    padding-top: var(--sec-py);
  }

  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-item {
    padding: 20px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .fact-item:nth-child(even) { border-right: none; }
  .fact-item:nth-child(5) {
    grid-column: span 2;
    border-right: none;
    border-bottom: none;
  }
  .fact-icon { width: 40px; height: 40px; margin-bottom: 10px; font-size: 0.95rem; }
  .fact-val { font-size: 1.2rem; }
  .fact-label { font-size: 11.5px; }

  .approvals { padding: 20px 0; }
  .approvals-inner { gap: 12px 22px; }
  .approvals-list { gap: 10px 18px; justify-content: center; }
  .approvals-list li { font-size: 12.5px; }

  .section-head, .section-head-center { margin-bottom: 20px; }
  .section-head h2, .section-head-center h2 { font-size: clamp(1.4rem, 5.6vw, 1.85rem); margin-top: 14px; }
  .section-head p, .section-head-center p { font-size: 14.5px; margin-top: 12px; }
  .section-cta { margin-top: 22px; }
  .section-cta .btn, .about-actions .btn { width: 100%; }
  .about-actions { flex-direction: column; }

  .about-media { max-width: 100%; }
  .about-media-main { border-radius: var(--r-lg); }
  .about-media-main img { aspect-ratio: 16/11; }
  .about-media::before { display: none; }
  .about-badge {
    position: static;
    margin-top: 16px;
    padding: 14px 16px;
  }
  .about-badge strong { font-size: 1.15rem; }
  .spec-list { grid-template-columns: 1fr; margin: 20px 0; }
  .spec-row { padding: 12px 16px; }

  .why-grid, .phase-grid, .campus-grid, .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 26px 22px; }
  .why-icon { width: 50px; height: 50px; margin-bottom: 16px; font-size: 1.2rem; }

  .compare-card { padding: 26px 22px; }
  .compare-head { gap: 12px; padding-bottom: 16px; margin-bottom: 18px; }

  .fees-summary { flex-direction: column; }
  .fee-card { padding: 18px 20px; }
  .fee-card strong { font-size: 1.65rem; }
  .fee-table-wrap { border-radius: var(--r); }
  .fee-table thead th,
  .fee-table tbody td,
  .fee-table tfoot td { padding: 12px 14px; font-size: 12.5px; }
  .fee-table td:last-child,
  .fee-table th:last-child { white-space: nowrap; }

  .elig-card { padding: 26px 22px; }
  .elig-card-head { gap: 12px; margin-bottom: 18px; }
  .elig-card-head i { width: 44px; height: 44px; border-radius: 13px; }

  .stats-section { padding: 48px 0; }
  .stat-card { padding: 24px 20px; }
  .stat-card strong { font-size: 2rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; gap: 14px; }
  .gallery-item { border-radius: var(--r); }

  .testimonial-card { flex: 0 0 min(310px, calc(100vw - 48px)); padding: 24px 22px; }
  .testimonial-track { gap: 14px; }

  .faq-q { font-size: 13.5px; padding: 16px 18px; gap: 12px; }
  .faq-a p { padding: 0 18px 16px; font-size: 13.5px; }
  .faq-item.is-open .faq-a { max-height: 520px; }

  .cta-inner {
    padding: 34px 24px;
    border-radius: var(--r-lg);
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-actions { flex-direction: column; }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 16px;
    gap: 14px;
  }

  .footer-contact {
    justify-content: center;
    gap: 10px 18px;
  }

  .footer-social { justify-content: center; }
  .footer-disclaimer { padding: 12px 0; font-size: 11px; }
  .footer-bottom { padding: 10px 0 12px; }

  .form-popup { padding: 16px; }
  .form-popup-dialog {
    max-width: 100%;
    max-height: 90dvh;
    overflow-y: auto;
    border-radius: var(--r-lg);
  }
  .form-popup-close { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 13px; }
  .form-popup .form-card-head { padding: 18px; padding-right: 56px; }
  .form-popup .lead-form { padding: 18px; }

  .form-field input, .form-field select { font-size: 16px; }
  .form-head-logo { width: 40px; height: 40px; }

  .side-counselling-tab { padding: 12px 8px; border-radius: 0 10px 10px 0; }
  .side-tab-inner { gap: 9px; }
  .side-tab-text { font-size: 10px; letter-spacing: 0.1em; }
  .side-counselling-tab i { font-size: 14px; }

  .floating-contact {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .floating-btn { width: 50px; height: 50px; }
  .floating-btn i { font-size: 19px; }
  .floating-wa i { font-size: 23px; }

  .thankyou-card { padding: 32px 22px 26px; border-radius: var(--r-lg); }
  .thankyou-icon { width: 62px; height: 62px; font-size: 25px; border-radius: 20px; }
  .thankyou-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { width: min(var(--container), calc(100% - 24px)); }

  .brand-name-short { font-size: 0.9rem; }
  .btn { padding: 13px 22px; font-size: 13.5px; }
  .chip { font-size: 10.5px; padding: 6px 13px 6px 10px; }

  .facts-grid { grid-template-columns: 1fr; }
  .fact-item {
    border-right: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 15px 18px;
  }
  .fact-icon { margin: 0; flex-shrink: 0; }
  .fact-item:nth-child(5) { grid-column: auto; }
  .fact-item:last-child { border-bottom: none; }

  .why-card, .compare-card, .elig-card, .phase-card { padding: 22px 18px; }
  .fee-card strong { font-size: 1.45rem; }
  .testimonial-card { flex: 0 0 calc(100vw - 40px); }
  .step:nth-child(odd), .step:nth-child(even) { padding-left: 62px; }
  .step-num { width: 44px; height: 44px; font-size: 0.9rem; }
  .steps::before { left: 22px; }
  .step-body { padding: 20px 18px; }
  .floating-btn { width: 46px; height: 46px; }
}

@media (max-width: 360px) {
  .hero-left h1 { font-size: 1.35rem; }
  .side-tab-text { font-size: 9px; letter-spacing: 0.06em; }
  .side-tab-inner { gap: 7px; }
  .thankyou-card h1 { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .testimonial-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
