/* ===========================================================
   VIKALPAGURU — Stylesheet (v3)
   Warm cream palette · coral-orange accents · deep navy ink
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink:        #1a1f36;
  --ink-soft:   #4a5168;
  --muted:      #858ba3;

  --cream:      #fdfaf4;
  --cream-2:    #f7f1e8;
  --white:      #ffffff;

  --orange:     #ef7d3e;
  --orange-dk:  #d85f1f;
  --coral:      #f4a268;
  --peach:      #fbe3ce;
  --blush:      #f9d4c0;

  --navy:       #22305f;
  --sage:       #6b8e7f;

  --border:     #ecd9c4;
  --border-soft: #f3e6d4;
  --shadow-sm:  0 2px 12px rgba(26, 31, 54, 0.06);
  --shadow:     0 10px 40px rgba(26, 31, 54, 0.08);
  --shadow-lg:  0 24px 70px rgba(26, 31, 54, 0.12);
  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;

  --grad:       linear-gradient(135deg, #ef7d3e 0%, #f4a268 100%);
  --grad-dark:  linear-gradient(135deg, #1a1f36 0%, #2a3258 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  padding-top: 84px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 90;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
p  { color: var(--ink-soft); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* =========================  NAVBAR  ========================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 84px;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { height: 60px; width: auto; object-fit: contain; display: block; }
.logo-fallback { display: flex; align-items: center; gap: 0.55rem; }
.logo-fallback .logo-mark {
  width: 46px; height: 46px;
  background: var(--grad);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; font-weight: 800;
  font-family: 'Fraunces', serif;
  box-shadow: 0 6px 16px rgba(239, 125, 62, 0.32);
}
.logo-fallback .logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink);
}
.logo-fallback .logo-text em { color: var(--orange); font-style: normal; }

.nav-menu { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
  display: flex; align-items: center; gap: 0.3rem;
  cursor: pointer;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--orange-dk); background: var(--peach); }
.nav-menu > li > a .arrow { font-size: 0.62rem; transition: transform 0.2s; opacity: 0.7; }
.nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  min-width: 260px;
  padding: 0.55rem;
  z-index: 100;
}
.nav-menu > li:hover .dropdown { display: block; }
.dropdown a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  font-size: 0.88rem; color: var(--ink-soft);
  transition: all 0.2s;
}
.dropdown a:hover { background: var(--peach); color: var(--orange-dk); }
.dropdown a .icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; background: var(--cream-2);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-call {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink); border: 1.5px solid var(--ink);
  transition: all 0.2s;
}
.btn-call:hover { background: var(--ink); color: white; }
.btn-nav-cta {
  padding: 0.65rem 1.2rem;
  background: var(--grad);
  color: white;
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(239, 125, 62, 0.32);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(239, 125, 62, 0.42); }

.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }

/* =========================  BUTTONS  ========================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad); color: white;
  box-shadow: 0 8px 22px rgba(239, 125, 62, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(239, 125, 62, 0.45); }
.btn-outline { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline:hover { background: white; color: var(--ink); border-color: white; }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: white; }
.btn-white {
  background: white; color: var(--ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.btn-white:hover { transform: translateY(-2px); background: var(--peach); color: var(--orange-dk); }

/* =========================  HERO  ========================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fdfaf4 0%, #fbf4e8 50%, #f9ebd7 100%);
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(239, 125, 62, 0.12), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(244, 162, 104, 0.10), transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 7px; height: 7px; background: #16a34a; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}
.hero-text h1 { margin-bottom: 1.25rem; color: var(--ink); }
.hero-text h1 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: 1.1rem; color: var(--ink-soft);
  margin-bottom: 2rem; max-width: 560px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.hero-stat .label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 0.25rem; }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(26, 31, 54, 0.18);
  aspect-ratio: 4 / 5;
  background: var(--peach);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-accent-dot {
  position: absolute; z-index: 2;
  background: var(--orange);
  width: 140px; height: 140px;
  border-radius: 50%;
  bottom: -30px; left: -30px;
  opacity: 0.92;
  box-shadow: 0 10px 30px rgba(239, 125, 62, 0.4);
}
.hero-accent-square {
  position: absolute; z-index: 2;
  width: 90px; height: 90px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  top: -20px; right: -20px;
  opacity: 0.9;
}
.hero-floating-card {
  position: absolute; z-index: 3;
  bottom: 40px; right: -30px;
  background: white;
  border-radius: 16px;
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.9rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.hero-floating-card .fc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--peach); color: var(--orange-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hero-floating-card .fc-title { font-family: 'Fraunces', serif; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.hero-floating-card .fc-sub { font-size: 0.78rem; color: var(--muted); }

/* =========================  SECTIONS  ========================= */
section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--peach);
  color: var(--orange-dk);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title { color: var(--ink); margin-bottom: 1rem; }
.section-title em { color: var(--orange); font-style: italic; font-variation-settings: "opsz" 144; }
.section-sub { color: var(--ink-soft); max-width: 680px; margin: 0 auto; }

.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}
.service-card .card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  background: var(--cream-2);
}
.service-card:hover .card-img { transform: scale(1.05); }
.service-card .card-body { padding: 1.75rem; }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
  background: var(--peach); color: var(--orange-dk);
}
.service-card h3 { margin-bottom: 0.55rem; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1rem; }
.svc-arrow {
  color: var(--orange); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.service-card:hover .svc-arrow { gap: 0.6rem; }

/* =========================  WHY — split 4 | image | 4  ========================= */
.why-section { background: var(--cream-2); }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
}
.why-col { display: flex; flex-direction: column; gap: 1.1rem; }
.why-col .why-feat { background: white; }
.why-feat {
  display: flex; gap: 1rem;
  padding: 1.3rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: all 0.25s;
  flex: 1;
}
.why-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--coral); }
.feat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--peach);
  color: var(--orange-dk);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-feat h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.why-feat p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; }

.why-center-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--peach);
  min-height: 500px;
}
.why-center-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.why-center-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 31, 54, 0.7) 100%);
  pointer-events: none;
}
.why-center-caption {
  position: absolute; z-index: 2;
  bottom: 30px; left: 30px; right: 30px;
  color: white;
}
.why-center-caption .big {
  font-family: 'Fraunces', serif;
  font-size: 3rem; font-weight: 800;
  line-height: 1; color: var(--orange);
}
.why-center-caption .lbl { font-size: 0.9rem; margin-top: 0.4rem; opacity: 0.95; }

/* Classic 2-col why-grid (used in subpages) */
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--peach);
}
.why-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-stat-badge {
  position: absolute;
  bottom: 30px; right: 30px;
  background: white;
  padding: 1.3rem 1.6rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.why-stat-badge .big { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 700; color: var(--orange); line-height: 1; }
.why-stat-badge .lbl { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* =========================  HOW  ========================= */
.how-section { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.steps.steps-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.steps.steps-6 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  position: relative;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--coral); }
.step-num {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem; font-weight: 800;
  margin-bottom: 1.2rem;
  font-family: 'Fraunces', serif;
  box-shadow: 0 8px 20px rgba(239, 125, 62, 0.36);
}
.step h3 { margin-bottom: 0.55rem; }
.step p { color: var(--ink-soft); font-size: 0.93rem; }

/* =========================  ODL SECTION — image + text  ========================= */
.odl-section { background: var(--white); }
.odl-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.odl-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--peach);
}
.odl-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.odl-img-badge {
  position: absolute; bottom: 30px; left: 30px;
  background: white; color: var(--ink);
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.odl-img-badge .n { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.odl-img-badge .l { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.3rem; }
.odl-text h2 em { color: var(--orange); font-style: italic; }
.univ-logos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.univ-logos-lg { gap: 0.8rem; }
.univ-chip {
  background: white;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.univ-logos-lg .univ-chip { padding: 0.65rem 1.3rem; font-size: 0.88rem; }

.odl-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 3rem auto 0;
}
.odl-highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.odl-highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--coral); }
.odl-highlight-num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.odl-highlight-label { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.5rem; }

/* Programs grid (used on ODL subpage) — compact cards without images */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.program-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: all 0.25s;
}
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--coral); }
.program-card .p-title {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.program-card .p-dur {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  color: var(--orange-dk);
  background: var(--peach);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.program-card .p-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* =========================  TESTIMONIALS  ========================= */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.testi-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 5rem; color: var(--peach);
  line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.7;
}
.testi-author { display: flex; align-items: center; gap: 0.9rem; padding-top: 1.25rem; border-top: 1px solid var(--border-soft); }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad);
  color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  font-family: 'Fraunces', serif;
}
.testi-name { font-weight: 600; color: var(--ink); font-size: 0.96rem; }
.testi-role { font-size: 0.82rem; color: var(--muted); }

/* =========================  PRICING  ========================= */
.pricing-section { background: var(--cream-2); }
.pricing-tabs {
  display: inline-flex;
  background: white;
  padding: 0.4rem;
  border-radius: 100px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.pricing-tab {
  padding: 0.6rem 1.7rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-size: 0.9rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.pricing-tab.active { background: var(--grad); color: white; box-shadow: 0 6px 16px rgba(239, 125, 62, 0.34); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
  max-width: 1040px;
  margin-left: auto; margin-right: auto;
}
.price-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured {
  background: var(--grad-dark);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(239, 125, 62, 0.4);
}
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; font-family: 'Fraunces', serif; color: var(--ink); }
.price-card.featured .price-name { color: white; }
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem; font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.price-card.featured .price-amount { color: white; }
.price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.4rem; }
.price-card.featured .price-note { color: rgba(255,255,255,0.7); }
.price-features { list-style: none; margin-bottom: 1.7rem; padding: 0; }
.price-feature {
  padding: 0.5rem 0; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.price-feature::before {
  content: '✓'; display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--peach); color: var(--orange-dk);
  border-radius: 50%;
  font-size: 0.72rem; font-weight: 700;
}
.price-card.featured .price-feature::before {
  background: rgba(255,255,255,0.18); color: white;
}

/* =========================  CONTACT & LOCATION  ========================= */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; gap: 1.2rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.contact-item:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--peach); color: var(--orange-dk);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-label { font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; font-size: 0.92rem; }
.contact-value { color: var(--ink-soft); font-size: 0.92rem; }
.contact-value a { color: var(--orange-dk); font-weight: 500; }
.contact-value a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* =========================  CTA & PAGE HERO  ========================= */
.cta-section {
  background: var(--grad-dark);
  color: white;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(239, 125, 62, 0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(244, 162, 104, 0.16), transparent 50%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section h2 em { color: var(--orange); font-style: italic; }
.cta-section p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.page-hero {
  position: relative;
  padding: 90px 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfaf4 0%, #fbf4e8 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(239, 125, 62, 0.14), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(244, 162, 104, 0.12), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero h1 em { color: var(--orange); font-style: italic; }
.page-hero p { color: var(--ink-soft); max-width: 680px; margin: 0 auto 1.5rem; font-size: 1.1rem; }
.breadcrumb { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; }
.breadcrumb a { color: var(--orange-dk); font-weight: 500; }

.page-hero-img {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
  background: var(--peach);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* =========================  FOOTER  ========================= */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.footer-wordmark em { color: var(--orange); font-style: normal; }
.footer-brand p { color: rgba(255, 255, 255, 0.62); font-size: 0.92rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 1rem;
  color: white;
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 { color: white; margin-bottom: 1.3rem; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.45);
}

/* =========================  WHATSAPP FAB  ========================= */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: transform 0.2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-fab:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.28), 0 0 0 16px rgba(37, 211, 102, 0.06); }
}

/* =========================  MODAL  ========================= */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26, 31, 54, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.25s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  max-width: 470px; width: 100%;
  position: relative;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-soft);
  font-size: 1rem;
}
.modal-close:hover { background: var(--cream-2); }
.modal-title { margin-bottom: 0.5rem; }
.modal-sub { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.5rem; }

/* =========================  FORMS  ========================= */
.counsel-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(239, 125, 62, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-message { padding: 0.85rem 1rem; border-radius: 12px; font-size: 0.9rem; }
.form-message-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }

/* =========================  ANIMATIONS  ========================= */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================  RESPONSIVE  ========================= */
@media (max-width: 1024px) {
  .why-grid, .hero-content, .location-grid, .contact-grid, .odl-layout {
    grid-template-columns: 1fr; gap: 2.5rem;
  }
  .why-split { grid-template-columns: 1fr; }
  .why-center-image { min-height: 320px; aspect-ratio: 4/3; }
  .steps { grid-template-columns: 1fr; }
  .hero-image-wrap, .why-image-wrap, .odl-img-wrap { aspect-ratio: 16/11; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  body { padding-top: 72px; }
  .nav-inner { height: 72px; padding: 0 1rem; }
  .nav-logo-img { height: 46px; }
  .nav-menu {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0;
    background: white; padding: 1.25rem;
    flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-soft);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 0.75rem 1rem; width: 100%; }
  .dropdown {
    display: block; position: static;
    box-shadow: none; border: none;
    padding-left: 1rem; min-width: auto;
    background: transparent;
  }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 0 70px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-floating-card { display: none; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .container { padding: 0 1.25rem; }
  section { padding: 60px 0; }
  .page-hero { padding: 70px 0 50px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .wa-fab { width: 54px; height: 54px; right: 18px; bottom: 18px; font-size: 1.6rem; }
}


a.program-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

    a.program-card:hover {
        text-decoration: none;
        color: inherit;
    }



/* =======================  UNIVERSITY BADGE SLIDER  ======================= */
.univ-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.univ-slider-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: univ-scroll 45s linear infinite;
}

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

.univ-slide {
    flex-shrink: 0;
}

.univ-slide-inner {
    background: white;
    border: 1px solid #ecd9c4;
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(26, 31, 54, 0.06);
    min-width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .univ-slide-inner:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 40px rgba(26, 31, 54, 0.08);
        border-color: #f4a268;
    }

/* Badge card — uses per-university gradient from inline --c1, --c2 */
.univ-badge {
    position: relative;
    flex-direction: column;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--c1, #1a1f36) 0%, var(--c2, #0d1122) 100%);
    color: white !important;
    padding: 1.2rem 1.6rem;
}

    .univ-badge::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 80px;
        height: 80px;
        background: rgba(255,255,255,0.10);
        border-radius: 50%;
        pointer-events: none;
    }

    .univ-badge::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: -20px;
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        pointer-events: none;
    }

    .univ-badge .abbr {
        position: relative;
        z-index: 1;
        display: block;
        font-family: 'Fraunces', Georgia, serif;
        font-weight: 800;
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        line-height: 1;
        white-space: nowrap;
        color: white;
    }

    .univ-badge .full {
        position: relative;
        z-index: 1;
        display: block;
        margin-top: 0.3rem;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 0.72rem;
        opacity: 0.92;
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
        color: white;
    }

@keyframes univ-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .univ-slide-inner {
        min-width: 170px;
        height: 90px;
    }

    .univ-badge {
        padding: 0.9rem 1.2rem;
    }

        .univ-badge .abbr {
            font-size: 1.15rem;
        }

        .univ-badge .full {
            font-size: 0.66rem;
        }
}s