@charset "utf-8";
/* CSS Document */

  :root {
    --navy: #0F4C81;
    --navy-dark: #0A3561;
    --navy-mid: #0D4170;
    --navy-light: #1A6DB5;
    --gold: #F5A623;
    --gold-light: #FFC040;
    --gold-dark: #D4881A;
    --white: #FFFFFF;
    --off-white: #F8F9FB;
    --gray-50: #F1F3F7;
    --gray-100: #E4E8EF;
    --gray-400: #9BA5B4;
    --gray-600: #5A6575;
    --gray-800: #1E2633;
    --text: #1A2332;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 12px rgba(15,76,129,0.08);
    --shadow-md: 0 8px 32px rgba(15,76,129,0.14);
    --shadow-lg: 0 20px 60px rgba(15,76,129,0.18);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── UTILITY ─────────────────────────────────── */
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 100px 0; }
  .section-sm { padding: 64px 0; }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.12); color: var(--gold-dark);
    font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
    margin-bottom: 20px;
  }
  .tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
  h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
  h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text); }
  p { line-height: 1.75; color: var(--gray-600); }
  a { text-decoration: none; color: inherit; }

  /* ─── BUTTONS ─────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
    padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none; white-space: nowrap;
  }
  .btn-primary { background: var(--gold); color: var(--navy-dark); box-shadow: 0 4px 20px rgba(245,166,35,0.35); }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
  .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
  .btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
  .btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn svg { width: 18px; height: 18px; flex-shrink: 0; }


  /* ─── FULLSCREEN IMAGE SLIDER (NEW HERO) ─────── */
  #slider-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  /* Each slide */
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
  }
  .slide.active { opacity: 1; z-index: 2; }

  /* Slide background – rich gradient scenes */
  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s ease-out;
  }
  .slide.active .slide-bg { transform: scale(1); }

  .slide-1-bg { background: url(../img/slide-1-1.png), linear-gradient(135deg,#2D1A5A 0%,#5A3BA5 40%,#3D2880 70%,#1A0A3A 100%); }

  .slide-2-bg { background: url(../img/slide-2.png), linear-gradient(135deg,#0A3820 0%,#1A6B40 40%,#0F5A30 70%,#082815 100%); }

  .slide-3-bg { background: url(../img/slide-3.png),linear-gradient(135deg,#2D1A5A 0%,#5A3BA5 40%,#3D2880 70%,#1A0A3A 100%); }

  .slide-4-bg { background: url(../img/slide-4.png),linear-gradient(135deg,#5A1A1A 0%,#9B3535 40%,#7A2020 70%,#3A0A0A 100%); }

  /* Geometric decorative shapes per slide */
  .slide-deco {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .slide-deco::before {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    top: -150px; right: -150px;
  }
  .slide-deco::after {
    content: ''; position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    bottom: -100px; left: -100px;
  }

  /* Dark gradient overlay for text readability */
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.45) 50%,
      rgba(0,0,0,0.15) 100%
    );
    z-index: 2;
  }

  /* Grid texture */
  .slide-grid {
    position: absolute; inset: 0; z-index: 3;
    opacity: 0.035;
    background-image:
      linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  /* Slide content */
  .slide-content {
    position: absolute; inset: 0; z-index: 10;
    display: flex; align-items: center;
    padding: 0 24px; padding-top: 140px; padding-bottom: 96px;
  }
  .slide-content-inner {
    max-width: 1180px; margin: 0 auto; width: 100%;
  }
  .slide-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.35);
    color: var(--gold-light); padding: 7px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
  }
  .slide.active .slide-tag { opacity: 1; transform: translateY(0); }

  .slide-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 900; color: white; line-height: 1.08;
    margin-bottom: 20px; max-width: 700px;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
  }
  .slide.active .slide-headline { opacity: 1; transform: translateY(0); }
  .slide-headline span { color: var(--gold); }

  .slide-sub {
    font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.75;
    max-width: 540px; margin-bottom: 34px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s 0.7s ease, transform 0.7s 0.7s ease;
  }
  .slide.active .slide-sub { opacity: 1; transform: translateY(0); }

  .slide-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease;
  }
  .slide.active .slide-btns { opacity: 1; transform: translateY(0); }

  /* Slide number indicator */
  .slide-number {
    position: absolute; bottom: 48px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 6px;
    z-index: 20;
  }
  .slide-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); cursor: pointer;
    transition: all 0.3s ease;
  }
  .slide-dot.active {
    background: var(--gold);
    width: 28px; border-radius: 4px;
  }

  /* Prev / Next arrows */
  .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 20; width: 52px; height: 52px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; backdrop-filter: blur(10px);
    transition: all 0.25s ease; color: white; font-size: 20px;
  }
  .slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-50%) scale(1.08); }
  .slider-prev { left: 28px; }
  .slider-next { right: 28px; }

  /* Progress bar */
  .slider-progress {
    position: absolute; bottom: 0; left: 0; height: 3px;
    background: var(--gold); z-index: 20;
    width: 0%; transition: width linear;
  }

  /* Right side floating stats panel */
  .slide-stats-panel {
    position: absolute; right: 48px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 12px;
    z-index: 15;
    opacity: 0; transform: translateY(-50%) translateX(20px);
    transition: opacity 0.7s 1.1s ease, transform 0.7s 1.1s ease;
  }
  .slide.active .slide-stats-panel { opacity: 1; transform: translateY(-50%) translateX(0); }
  .stat-pill {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 14px;
    padding: 14px 18px; text-align: center; min-width: 120px;
  }
  .stat-pill .sp-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); }
  .stat-pill .sp-lbl { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 3px; }

  @media (max-width: 768px) {
    .slide-stats-panel { display: none; }
    .slider-arrow { width: 40px; height: 40px; font-size: 16px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
    .slide-headline { font-size: clamp(2rem, 6vw, 2.8rem); }
  }

  /* ─── NAVBAR ─────────────────────────────────── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 24px;
    transition: all 0.3s ease;
  }
  #navbar .nav-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0;
    transition: padding 0.3s ease;
  }
  #navbar.scrolled {
    background: rgba(15,76,129,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  }
  #navbar.scrolled .nav-inner { padding: 14px 0; }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo-icon {
    width: 42px; height: 42px; background: var(--gold);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 900; font-size: 18px; color: var(--navy-dark);
  }
  .nav-logo-text { color: var(--white); }
  .nav-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; line-height: 1.2; }
  .nav-logo-text span { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 400; letter-spacing: 0.5px; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .wa-btn {
    display: flex; align-items: center; gap: 8px;
    background: #25D366; color: white;
    padding: 10px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    transition: all 0.25s;
  }
  .wa-btn:hover { background: #1fb958; transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

  /* ─── HERO ────────────────────────────────────── */
  #hero {
    min-height: auto;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, #1A5FA5 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center; padding-top: 80px; padding-bottom: 80px;
  }
  .hero-grid-bg {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.12; pointer-events: none;
  }
  .hero-orb-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
  .hero-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; opacity: 0.07; }
  .hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .hero-left {}
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9); padding: 8px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 500; margin-bottom: 28px; backdrop-filter: blur(10px);
  }
  .hero-badge .dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
  .hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--white); font-weight: 900;
    line-height: 1.1; margin-bottom: 24px;
  }
  .hero-headline .gold { color: var(--gold); display: block; }
  .hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.8;
    margin-bottom: 36px; max-width: 520px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
  .hero-stats { display: flex; gap: 36px; }
  .hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
  .hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }

  /* Hero right - visual card */
  .hero-right { position: relative; }
  .hero-card {
    background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 24px;
    padding: 32px; position: relative; overflow: hidden;
  }
  .hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
  .hero-card-title { color: white; font-weight: 600; font-size: 15px; }
  .live-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(74,222,128,0.15); color: #4ADE80;
    padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
  }
  .live-badge .dot { width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; animation: pulse 1.5s infinite; }
  .savings-display {
    text-align: center; padding: 24px 0; margin-bottom: 20px;
    border-radius: var(--radius-sm); background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25);
  }
  .savings-display .amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); }
  .savings-display .label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }
  .cost-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
  .cost-item { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 16px; }
  .cost-item .country { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
  .cost-item .cost { font-size: 1.4rem; font-weight: 700; color: white; font-family: 'Playfair Display', serif; }
  .cost-item.georgia .cost { color: var(--gold); }
  .cost-item .note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }
  .recognition-badges { display: flex; gap: 8px; flex-wrap: wrap; }
  .rec-badge {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8); padding: 6px 12px; border-radius: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  }

  /* floating mini cards */
  .float-card {
    position: absolute; background: white; border-radius: 14px;
    padding: 12px 16px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
  }
  .float-card-1 { top: -20px; right: -20px; }
  .float-card-2 { bottom: -20px; left: -20px; }
  .float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
  .float-text strong { display: block; font-size: 13px; color: var(--text); font-weight: 700; }
  .float-text span { font-size: 11px; color: var(--gray-400); }

  /* ─── TRUST STRIP ─────────────────────────────── */
  #trust-strip { background: var(--navy-dark); padding: 28px 0; }
  .trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 12px; }
  .trust-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,166,35,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; }
  .trust-text strong { display: block; color: white; font-size: 14px; font-weight: 600; }
  .trust-text span { font-size: 12px; color: rgba(255,255,255,0.5); }
  .trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

  /* ─── WHY CHOOSE — NEXT LEVEL ────────────────── */
  #why-choose {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
  }

  /* Animated background grid */
  #why-choose::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
  }

  /* Ambient glow orbs */
  .why-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.07;
  }
  .why-orb-1 { width: 600px; height: 600px; top: -200px; right: -200px; }
  .why-orb-2 { width: 400px; height: 400px; bottom: -150px; left: -150px; opacity: 0.05; }

  /* Section header — white version */
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
  .section-header p { font-size: 17px; margin-top: 16px; }
  .section-header-dark h2 { color: white; }
  .section-header-dark p { color: rgba(255,255,255,0.6); }

  /* ── New bento-style grid ── */
  .why-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    z-index: 2;
  }

  .why-bento-card {
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  }
  .why-bento-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.4); }

  /* Card 1 — large left feature */
  .wbc-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 2;
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
  }
  /* Card 2 — top right tall */
  .wbc-2 {
    grid-column: 6 / 10;
    grid-row: 1 / 2;
    background: linear-gradient(145deg, rgba(245,166,35,0.18) 0%, rgba(245,166,35,0.06) 100%);
    border: 1px solid rgba(245,166,35,0.25);
  }
  /* Card 3 — top far right */
  .wbc-3 {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
    background: linear-gradient(145deg, rgba(15,76,129,0.8) 0%, rgba(26,109,181,0.6) 100%);
    border: 1px solid rgba(255,255,255,0.1);
  }
  /* Card 4 — bottom left wide metric */
  .wbc-4 {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #0A2A4A 0%, #0F4C81 100%);
    border: 1px solid rgba(245,166,35,0.2);
  }
  /* Card 5 — bottom middle */
  .wbc-5 {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
  }
  /* Card 6 — bottom right CTA */
  .wbc-6 {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
    background: linear-gradient(145deg, var(--gold-dark), var(--gold));
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Card content elements */
  .wbc-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
  }
  .wbc-1 .wbc-icon { background: rgba(245,166,35,0.15); }
  .wbc-2 .wbc-icon { background: rgba(245,166,35,0.2); }
  .wbc-3 .wbc-icon { background: rgba(255,255,255,0.12); }
  .wbc-5 .wbc-icon { background: rgba(245,166,35,0.12); }

  .wbc-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 8px;
    display: block;
  }
  .wbc-1 .wbc-num, .wbc-5 .wbc-num { color: var(--gold); }
  .wbc-2 .wbc-num { color: var(--gold-light); }
  .wbc-3 .wbc-num { color: rgba(255,255,255,0.5); }

  .wbc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: white;
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .wbc-6 .wbc-title { color: var(--navy-dark); font-size: 1.6rem; }

  .wbc-body {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
  }
  .wbc-6 .wbc-body { color: rgba(15,53,97,0.8); font-size: 15px; }

  /* Decorative large number watermark */
  .wbc-watermark {
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .wbc-4 .wbc-watermark { color: rgba(245,166,35,0.1); }

  /* Big metric display (card 4) */
  .wbc-metric {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin: 16px 0;
  }
  .wbc-metric-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .wbc-metric-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .wbc-metric-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }

  /* Progress bar (card 4) */
  .wbc-progress-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .wbc-progress-item {}
  .wbc-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 5px;
  }
  .wbc-progress-label span:last-child { color: var(--gold); font-weight: 600; }
  .wbc-progress-track {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
  }
  .wbc-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
  }
  .wbc-progress-fill.animated { transform: scaleX(1); }

  /* Pill tags (card 1) */
  .wbc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }
  .wbc-tag-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
  }

  /* Country flags row (card 3) */
  .wbc-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .wbc-flag {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 18px;
    transition: transform 0.2s;
  }
  .wbc-flag:hover { transform: scale(1.2); }

  /* Feature list (card 5) */
  .wbc-feature-list {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .wbc-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
  }
  .wbc-check {
    width: 20px; height: 20px;
    border-radius: 6px;
    background: rgba(245,166,35,0.2);
    border: 1px solid rgba(245,166,35,0.35);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    color: var(--gold);
  }

  /* CTA card arrow */
  .wbc-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-dark);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 50px;
    margin-top: 24px;
    transition: all 0.25s;
    text-decoration: none;
    width: fit-content;
  }
  .wbc-arrow-btn:hover { background: var(--navy); transform: translateX(4px); }
  .wbc-arrow-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: transform 0.25s;
  }
  .wbc-arrow-btn:hover .wbc-arrow-icon { transform: translateX(4px); }

  @media (max-width: 1024px) {
    .why-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .wbc-1, .wbc-2, .wbc-3, .wbc-4, .wbc-5, .wbc-6 { grid-column: auto; grid-row: auto; }
    .wbc-1 { grid-column: 1 / 3; }
  }
  @media (max-width: 768px) {
    .why-bento { grid-template-columns: 1fr; }
    .wbc-1 { grid-column: 1; }
    .wbc-metric-num { font-size: 2.8rem; }
    #why-choose { padding: 80px 0; }
  }

  /* ─── PROGRAMS ────────────────────────────────── */
  #programs { background: white; }
  .programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .program-card {
    border-radius: var(--radius); overflow: hidden; position: relative;
    min-height: 240px; display: flex; align-items: flex-end; cursor: pointer;
    transition: transform 0.35s ease;
  }
  .program-card:hover { transform: scale(1.02); }
  .program-card.featured { grid-column: 1 / -1; min-height: 360px; }
  .prog-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .prog-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,30,60,0.95) 0%, rgba(10,30,60,0.4) 60%, transparent 100%);
  }
  .prog-content { position: relative; z-index: 2; padding: 28px; width: 100%; }
  .prog-tag { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
  .prog-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white; margin-bottom: 8px; }
  .program-card.featured .prog-title { font-size: 2rem; }
  .prog-meta { display: flex; gap: 16px; margin-top: 12px; }
  .prog-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.75); }
  .prog-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%; background: var(--gold);
    color: var(--navy-dark); margin-top: 16px; transition: transform 0.25s;
  }
  .program-card:hover .prog-arrow { transform: translate(4px,-4px); }

  /* fake bg gradients */
  .bg-medicine { background: url(../img/mbbs.jpg), linear-gradient(135deg, #0A2E5A 0%, #1A5FA5 100%); }
  .bg-engineering { background: url(../img/it.jpg), linear-gradient(135deg, #0A3830 0%, #0D6B50 100%); }
  .bg-business { background: url(../img/business.jpg), linear-gradient(135deg, #2D1A5A 0%, #5A3BA5 100%); }
  .bg-nursing { background: url(../img/all-sub.jpg), linear-gradient(135deg, #5A1A1A 0%, #A54040 100%); }

  /* ─── UNIVERSITIES ────────────────────────────── */
  #universities { background: var(--off-white); }
  .uni-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
  .uni-card {
    background: white; border-radius: var(--radius); padding: 0;
    border: 1px solid var(--gray-100); transition: all 0.35s ease;
    position: relative; overflow: hidden; display: flex; flex-direction: column;
  }
  .uni-card:hover { box-shadow: 0 20px 60px rgba(15,76,129,0.14); transform: translateY(-6px); border-color: rgba(15,76,129,0.2); }

  /* coloured top strip per university */
  .uni-header {
    padding: 24px 24px 20px;
    position: relative;
  }
  .uni-logo {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 900;
    color: white; margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  .uni-type-tag {
    position: absolute; top: 20px; right: 20px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
  }
  .uni-card h3 { font-size: 1rem; margin-bottom: 0; color: var(--text); line-height: 1.3; }

  .uni-body {
    padding: 0 24px 16px;
    flex: 1;
  }
  .uni-desc { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; margin-top: 10px; }

  .uni-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
  .badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
  .badge-who { background: rgba(15,76,129,0.09); color: var(--navy); }
  .badge-nmc { background: rgba(245,166,35,0.15); color: var(--gold-dark); }
  .badge-eng { background: rgba(16,185,129,0.1); color: #059669; }
  .badge-qs  { background: rgba(139,92,246,0.1); color: #7C3AED; }
  .badge-us  { background: rgba(239,68,68,0.1); color: #DC2626; }

  .uni-stats {
    display: flex; gap: 0; border-top: 1px solid var(--gray-100);
  }
  .uni-stat {
    flex: 1; padding: 12px 14px; text-align: center;
    border-right: 1px solid var(--gray-100);
  }
  .uni-stat:last-child { border-right: none; }
  .uni-stat .num { font-weight: 700; font-size: 14px; color: var(--text); }
  .uni-stat .lbl { font-size: 10px; color: var(--gray-400); margin-top: 2px; }

  /* ─── COMPARISON TEASER ───────────────────────── */
  #comparison {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative; overflow: hidden;
  }
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .compare-table-wrap { position: relative; }
  .compare-table {
    background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
    overflow: hidden;
  }
  .ct-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: rgba(255,255,255,0.05); padding: 14px 20px; gap: 8px; }
  .ct-header span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); text-align: center; letter-spacing: 0.5px; }
  .ct-header span:first-child { text-align: left; }
  .ct-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 16px 20px; gap: 8px; border-top: 1px solid rgba(255,255,255,0.07); align-items: center; }
  .ct-row:hover { background: rgba(255,255,255,0.04); }
  .ct-label { font-size: 13px; color: rgba(255,255,255,0.75); }
  .ct-val { text-align: center; font-weight: 700; font-size: 14px; }
  .ct-val.georgia { color: var(--gold); }
  .ct-val.bad { color: rgba(255,255,255,0.4); font-size: 12px; }
  .savings-call { margin-top: 20px; padding: 20px; background: rgba(245,166,35,0.1); border-radius: var(--radius-sm); border: 1px solid rgba(245,166,35,0.2); display: flex; align-items: center; gap: 16px; }
  .savings-call .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); }
  .savings-call .desc { font-size: 13px; color: rgba(255,255,255,0.7); }
  .compare-left h2 { color: white; }
  .compare-left p { color: rgba(255,255,255,0.7); margin: 16px 0 28px; font-size: 17px; }

  /* ─── TESTIMONIALS ────────────────────────────── */
  #testimonials { background: white; }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .testi-card {
    background: var(--off-white); border-radius: var(--radius);
    padding: 28px; border: 1px solid var(--gray-100);
    transition: all 0.3s ease; position: relative;
  }
  .testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); background: white; }
  .testi-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); opacity: 0.2; position: absolute; top: 10px; right: 20px; line-height: 1; }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 14px; line-height: 1.8; margin-bottom: 20px; color: var(--gray-600); }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; color: white;
  }
  .author-info strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
  .author-info span { font-size: 12px; color: var(--gray-400); }
  .author-flag { margin-left: auto; font-size: 22px; }

  /* ─── ADVISORS ────────────────────────────────── */
  #advisors { background: var(--off-white); }
  .advisors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .advisor-card {
    background: white; border-radius: var(--radius); padding: 28px 20px;
    text-align: center; border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
  }
  .advisor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
  .advisor-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: white;
    border: 3px solid var(--gold); position: relative;
  }
  .advisor-flag { position: absolute; bottom: -2px; right: -2px; font-size: 16px; }
  .advisor-card h4 { font-size: 1rem; margin-bottom: 6px; }
  .advisor-role { font-size: 12px; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
  .advisor-card p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
  .advisor-link { font-size: 13px; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 6px; justify-content: center; }

  /* ─── PROCESS ─────────────────────────────────── */
  #process { background: white; }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--navy));
    z-index: 0;
  }
  .step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: white; border: 3px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;
    color: var(--navy); margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  .step:hover .step-num { background: var(--navy); color: white; border-color: var(--navy); transform: scale(1.1); }
  .step h4 { font-size: 0.95rem; margin-bottom: 8px; }
  .step p { font-size: 12px; }

  /* Scoped override: prevents later, unrelated .step-num rules (services
     journey list, application timeline) from bleeding into this section
     and knocking the numbered badge out of flow / over the text below. */
  #process .step-num {
    position: static;
    width: 72px; height: 72px; border-radius: 50%;
    background: white; border: 3px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;
    line-height: 1;
    color: var(--navy); margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  #process .step:hover .step-num { background: var(--navy); color: white; border-color: var(--navy); transform: scale(1.1); }

  /* ─── STUDENT LIFE ────────────────────────────── */
  #student-life { background: var(--navy-dark); position: relative; overflow: hidden; }
  .life-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .life-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; }
  .life-photo {
    border-radius: var(--radius-sm); overflow: hidden;
    background-size: cover; background-position: center;
    position: relative;
  }
  .life-photo.tall { grid-row: 1 / 3; }
  .life-photo-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; padding: 16px;
    background: linear-gradient(to top, rgba(10,30,60,0.8) 0%, transparent 60%);
  }
  .life-photo-label { color: white; font-size: 13px; font-weight: 600; }
  .tbilisi-bg { background: url(../img/ti-u.png), linear-gradient(135deg, #1A4A6B, #2D7D9A); }
  .campus-bg { background: url(../img/life.png),linear-gradient(135deg, #1A3A1A, #2D6B3A); }
  .food-bg { background: url(../img/food.png), linear-gradient(135deg, #4A2D1A, #8B4A2D); }
  .life-right h2 { color: white; margin-bottom: 20px; }
  .life-right p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 17px; }
  .life-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .life-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 20px; }
  .life-stat .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); }
  .life-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

  /* ─── FAQ ─────────────────────────────────────── */
  #faq { background: var(--off-white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-item {
    background: white; border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100); overflow: hidden;
    transition: box-shadow 0.25s;
  }
  .faq-item:hover { box-shadow: var(--shadow-sm); }
  .faq-q {
    padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    user-select: none;
  }
  .faq-q .icon { font-size: 20px; color: var(--navy); flex-shrink: 0; transition: transform 0.3s; }
  .faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
  .faq-a p { padding-bottom: 20px; font-size: 14px; border-top: 1px solid var(--gray-100); padding-top: 14px; }
  .faq-item.open .faq-a { max-height: 200px; }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }

  /* ─── FINAL CTA ───────────────────────────────── */
  #final-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    position: relative; overflow: hidden;
  }
  #final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: 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='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
  .cta-inner h2 { color: var(--navy-dark); font-size: clamp(2rem, 4vw, 3rem); }
  .cta-inner p { color: rgba(15,53,97,0.8); font-size: 18px; margin: 16px 0 36px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-dark { background: var(--navy-dark); color: white; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
  .btn-dark:hover { background: var(--navy); transform: translateY(-2px); }
  .btn-wa-cta { background: #25D366; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  .btn-wa-cta:hover { background: #1fb958; transform: translateY(-2px); }

  /* ─── FOOTER ──────────────────────────────────── */
  #footer { background: var(--gray-800); padding: 64px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 16px 0 24px; }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 0; }
  .footer-logo .icon { width: 42px; height: 42px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 18px; color: var(--navy-dark); }
  .footer-logo .text strong { color: white; font-family: 'Playfair Display', serif; font-size: 15px; display: block; }
  .footer-logo .text span { font-size: 11px; color: rgba(255,255,255,0.4); }
  .social-links { display: flex; gap: 10px; }
  .social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.6); transition: all 0.25s; }
  .social-link:hover { background: var(--gold); color: var(--navy-dark); }
  .footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
  .footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p, .footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.35); }
  .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

  /* ─── STICKY MOBILE CTA ───────────────────────── */
  #sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    display: none; padding: 12px 16px;
    background: white; box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  }
  .sticky-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .sticky-cta-inner .btn { width: 100%; justify-content: center; padding: 14px 16px; font-size: 14px; border-radius: var(--radius-sm); }

  /* ─── WHATSAPP FLOAT ──────────────────────────── */
  #wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 998;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    animation: bounce-float 3s ease-in-out infinite;
  }
  #wa-float:hover { transform: scale(1.1); background: #1fb958; }
  @keyframes bounce-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  #wa-float svg { width: 28px; height: 28px; fill: white; }

  /* ─── MOBILE NAV MENU ─────────────────────────── */
  /* (styles defined in the bottom MOBILE block) */

  /* ─── ABOUT SECTION ──────────────────────────── */
  #about {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
  }
  
  
  .page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: url(../img/about-logo.png), linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 50%, var(--navy) 100%); 
  overflow: hidden;
}
  
  #about::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  #about::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,76,129,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .about-left {}
  .about-headline {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    color: var(--text);
    margin-bottom: 6px;
  }
  .about-headline span { color: var(--navy); }
  .about-sub-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--navy-light);
    margin-bottom: 28px;
    line-height: 1.5;
  }
  .about-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 20px;
  }
  .about-body strong { color: var(--text); font-weight: 600; }
  .about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 36px;
  }
  .about-value-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: white;
    border: 1.5px solid var(--gray-100);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
  }
  .about-value-pill:hover {
    border-color: var(--gold);
    background: rgba(245,166,35,0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.15);
  }
  .about-value-pill .pill-icon { font-size: 15px; }
  .about-right {
    position: relative;
  }
  .about-visual {
    background: var(--navy-dark);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .about-visual::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .about-visual-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
  }
  .about-visual h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 16px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
  }
  .about-visual h3 span { color: var(--gold); }
  .about-visual-body {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }
  .about-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .about-stat-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
  }
  .about-stat-box .asb-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
  }
  .about-stat-box .asb-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    display: block;
    line-height: 1.4;
  }
  .about-founder-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .about-founder-avatars {
    display: flex;
  }
  .founder-av {
    width: 42px; height: 42px; border-radius: 50%;
    border: 2.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 900; color: white;
    margin-left: -10px;
  }
  .founder-av:first-child { margin-left: 0; }
  .founder-av:nth-child(1) { background: linear-gradient(135deg,#0F4C81,#1A6DB5); }
  .founder-av:nth-child(2) { background: linear-gradient(135deg,#1A6B40,#2D9B60); }
  .founder-av:nth-child(3) { background: linear-gradient(135deg,#7A2D1A,#B55A3A); }
  .founder-av:nth-child(4) { background: linear-gradient(135deg,#4A2D7A,#7A50B5); }
  .about-founder-text strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 3px;
  }
  .about-founder-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
  }
  .about-flags {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .about-flag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
  }

  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-right { max-width: 560px; }
  }
  @media (max-width: 768px) {
    .about-stat-row { grid-template-columns: 1fr 1fr; }
    .about-values { gap: 8px; }
  }

  /* ─── ANIMATIONS ──────────────────────────────── */
  .fade-up { opacity: 0; transform: translateY(40px); }
  .fade-in { opacity: 0; }
  .counter-num { display: inline; }

  /* ─── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .why-bento { grid-template-columns: 1fr 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .program-card.featured { min-height: 260px; }
    .uni-grid { grid-template-columns: 1fr 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .advisors-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 24px; }
    .process-steps::before { display: none; }
  }

  @media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links { display: none; }
    .nav-cta .btn { display: none; }
    .hamburger { display: flex; }
    .why-bento { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .life-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    #sticky-cta { display: block; }
    #wa-float { bottom: 90px; }
    .uni-grid { grid-template-columns: 1fr; }
    .advisors-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-strip-inner { justify-content: center; }
    .trust-divider { display: none; }
    .compare-grid { gap: 36px; }
  }

  /* ─── BACK TO TOP BUTTON ──────────────────────── */
  #back-to-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 997;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(15,76,129,0.25);
  }
  #back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  #back-to-top:hover {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 6px 24px rgba(245,166,35,0.4);
    transform: translateY(-3px) scale(1.08);
  }
  #back-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
  }
  #back-to-top:hover svg {
    transform: translateY(-2px);
  }
  /* Tooltip */
  #back-to-top::after {
    content: 'Back to Top';
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
  }
  #back-to-top:hover::after {
    opacity: 1;
  }
  @media (max-width: 768px) {
    #back-to-top {
      bottom: 156px;
      right: 16px;
      width: 42px;
      height: 42px;
    }
    #back-to-top::after { display: none; }
  }


  /* ═══════════════════════════════════════════════
     ENQUIRY MODAL — Georgian Universities
  ═══════════════════════════════════════════════ */

  /* Overlay */
  #gu-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8, 20, 45, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  #gu-modal-overlay.open {
    opacity: 1; visibility: visible;
  }

  /* Modal box */
  #gu-modal {
    background: white;
    border-radius: 20px;
    width: 100%; max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 32px 80px rgba(8,20,45,0.35);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
  }
  #gu-modal-overlay.open #gu-modal {
    transform: translateY(0) scale(1);
  }

  /* Scrollbar inside modal */
  #gu-modal::-webkit-scrollbar { width: 4px; }
  #gu-modal::-webkit-scrollbar-track { background: transparent; }
  #gu-modal::-webkit-scrollbar-thumb { background: var(--gray-100); border-radius: 4px; }

  /* Header */
  .gum-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 28px 32px 24px;
    position: relative;
  }
  .gum-header::before {
    content: '';
    position: absolute; inset: 0; border-radius: 20px 20px 0 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .gum-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: white; font-size: 18px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
  }
  .gum-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

  .gum-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.35);
    color: var(--gold-light); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 50px; margin-bottom: 12px;
  }
  .gum-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: white; margin: 0 0 6px; line-height: 1.2;
  }
  .gum-subtitle {
    font-size: 13px; color: rgba(255,255,255,0.65); margin: 0;
  }

  /* Trust strip */
  .gum-trust {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .gum-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: rgba(255,255,255,0.6);
  }
  .gum-trust-item span.dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* Purpose selector pills */
  .gum-body { padding: 28px 32px; }
  .gum-field-label {
    display: block; font-size: 12px; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase;
    color: var(--gray-500); margin-bottom: 10px;
  }
  .gum-purpose-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 24px;
  }
  .gum-purpose-btn {
    display: flex; align-items: center; gap: 9px;
    border: 1.5px solid var(--gray-100); border-radius: 10px;
    background: white; padding: 10px 14px;
    cursor: pointer; transition: all 0.2s ease;
    text-align: left; font-family: inherit;
  }
  .gum-purpose-btn:hover {
    border-color: var(--navy); background: rgba(15,76,129,0.04);
  }
  .gum-purpose-btn.selected {
    border-color: var(--navy); background: rgba(15,76,129,0.07);
    box-shadow: 0 0 0 3px rgba(15,76,129,0.12);
  }
  .gum-purpose-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--off-white); display: flex;
    align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
    transition: background 0.2s;
  }
  .gum-purpose-btn.selected .gum-purpose-icon {
    background: rgba(15,76,129,0.1);
  }
  .gum-purpose-text { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.25; }
  .gum-purpose-sub  { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

  /* Divider */
  .gum-divider {
    height: 1px; background: var(--gray-100);
    margin: 8px 0 24px;
  }

  /* Form fields */
  .gum-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .gum-row.full { grid-template-columns: 1fr; }
  .gum-field { display: flex; flex-direction: column; gap: 6px; }
  .gum-field label {
    font-size: 12px; font-weight: 600; color: var(--gray-600);
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .gum-field label .req { color: #e53e3e; margin-left: 2px; }
  .gum-input, .gum-select, .gum-textarea {
    border: 1.5px solid var(--gray-100);
    border-radius: 10px; padding: 11px 14px;
    font-family: inherit; font-size: 14px; color: var(--text);
    background: white; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%; box-sizing: border-box;
  }
  .gum-input:focus, .gum-select:focus, .gum-textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
  }
  .gum-input.error, .gum-select.error, .gum-textarea.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
  }
  .gum-textarea { resize: vertical; min-height: 80px; max-height: 160px; }
  .gum-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

  /* Honeypot */
  .gum-hp { display: none !important; visibility: hidden; }

  /* Consent */
  .gum-consent {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 20px; margin-top: 4px;
  }
  .gum-consent input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 1px; cursor: pointer; accent-color: var(--navy);
  }
  .gum-consent label {
    font-size: 12px; color: var(--gray-500); line-height: 1.6; cursor: pointer;
  }
  .gum-consent a { color: var(--navy); text-decoration: underline; }

  /* Submit button */
  .gum-submit {
    width: 100%; padding: 15px 24px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: white; border: none; border-radius: 12px;
    font-family: 'DM Sans', inherit; font-size: 16px; font-weight: 700;
    cursor: pointer; position: relative; overflow: hidden;
    transition: all 0.3s ease; letter-spacing: 0.3px;
  }
  .gum-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15,76,129,0.35);
  }
  .gum-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
  .gum-submit .spinner {
    display: none; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white; border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  }
  .gum-submit.loading .spinner { display: block; }
  .gum-submit.loading .btn-text { opacity: 0.7; }
  @keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

  /* OR divider */
  .gum-or {
    display: flex; align-items: center; gap: 12px;
    margin: 16px 0; color: var(--gray-400); font-size: 12px;
  }
  .gum-or::before, .gum-or::after {
    content: ''; flex: 1; height: 1px; background: var(--gray-100);
  }

  /* WhatsApp alt */
  .gum-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 13px 20px;
    background: #25D366; color: white;
    border: none; border-radius: 12px;
    font-family: inherit; font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .gum-wa:hover { background: #1fb958; transform: translateY(-2px); }

  /* Toast states */
  .gum-toast {
    display: none; border-radius: 10px;
    padding: 14px 18px; font-size: 14px; font-weight: 500;
    margin-bottom: 16px; line-height: 1.5;
  }
  .gum-toast.success {
    display: block; background: #f0fff4;
    border: 1px solid #9ae6b4; color: #276749;
  }
  .gum-toast.error {
    display: block; background: #fff5f5;
    border: 1px solid #feb2b2; color: #9b2c2c;
  }

  /* Selected purpose label in header */
  .gum-selected-purpose {
    display: none; margin-top: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--gold-light); font-size: 12px; font-weight: 600;
    padding: 5px 12px; border-radius: 50px; width: fit-content;
  }
  .gum-selected-purpose.visible { display: inline-block; }

  /* Mobile */
  @media (max-width: 600px) {
    .gum-header { padding: 24px 20px 20px; }
    .gum-body   { padding: 20px; }
    .gum-row    { grid-template-columns: 1fr; }
    .gum-purpose-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .gum-purpose-text { font-size: 12px; }
    .gum-purpose-sub  { display: none; }
    #gu-modal { border-radius: 16px; }
  }
  
  
  
  /* =========================================
   FAQ SECTION
========================================= */

.faq-section {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  padding: 34px;
  border-radius: 24px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--navy-dark);
  line-height: 1.4;
}

.faq-item p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 15px;
}

/* =========================================
   CTA SECTION
========================================= */

.admissions-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
    var(--navy-dark) 0%,
    var(--navy) 45%,
    var(--navy-light) 100%);
}

.admissions-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-box .tag {
  background: rgba(245,166,35,0.14);
  color: var(--gold-light);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.cta-box p {
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 17px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--white);
  color: var(--navy-dark);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #081C34;
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  max-width: 220px;
  margin-bottom: 22px;
}

.footer-about p {
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  transition: all 0.25s ease;
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .faq-item,
  .cta-box {
    padding: 0;
  }

  .cta-box h2 {
    font-size: 2.4rem;
  }

  .cta-btns {
    flex-direction: column;
  }

  .btn-white,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }

}


/* ─── PAGE HERO ─────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: url(../img/universities-bg.png),linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 50%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);
  background-size:60px 60px; opacity:0.03;
}
.page-hero-orb { position:absolute; border-radius:50%; pointer-events:none; }
.page-hero-orb-1 { width:500px; height:500px; background:radial-gradient(circle,rgba(245,166,35,0.12) 0%,transparent 70%); top:-150px; right:-100px; }
.page-hero-orb-2 { width:350px; height:350px; background:radial-gradient(circle,rgba(26,109,181,0.2) 0%,transparent 70%); bottom:-80px; left:-80px; }
.page-hero-inner { position:relative; z-index:2; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(255,255,255,0.5); margin-bottom:24px; }
.breadcrumb a { color:rgba(255,255,255,0.5); transition:color 0.2s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:rgba(255,255,255,0.3); }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2.4rem,5vw,3.8rem); font-weight:900; color:white; line-height:1.1; margin-bottom:20px; max-width:760px; }
.page-hero h1 span { color:var(--gold); }
.page-hero-desc { font-size:18px; color:rgba(255,255,255,0.78); line-height:1.75; max-width:620px; margin-bottom:36px; }

/* Filter tabs */
.uni-filter-row { display:flex; gap:10px; flex-wrap:wrap; margin-top:32px; }
.uni-filter-btn {
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 18px; border-radius:50px;
  border:1.5px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.07);
  color:rgba(255,255,255,0.75);
  font-family:'DM Sans',sans-serif; font-size:13px; font-weight:600;
  cursor:pointer; transition:all 0.25s ease; text-decoration:none;
}
.uni-filter-btn:hover, .uni-filter-btn.active { background:var(--gold); border-color:var(--gold); color:var(--navy-dark); }

/* ─── QUICK STATS STRIP ─────────────── */
.quick-stats { padding:50px 0; background:white; border-bottom:1px solid var(--gray-100); }
.quick-stats-row { display:grid; grid-template-columns:repeat(5,1fr); gap:32px; }
.qs-item { text-align:center; }
.qs-num { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:900; color:var(--navy); display:block; line-height:1; }
.qs-lbl { font-size:13px; color:var(--gray-400); margin-top:6px; display:block; }

/* ─── UNIVERSITY CARDS ───────────────── */
.unis-section { padding:100px 0; background:var(--off-white); }

.uni-full-card {
  background:white; border-radius:24px;
  border:1px solid var(--gray-100); overflow:hidden;
  margin-bottom:32px; transition:all 0.3s ease;
  box-shadow:var(--shadow-sm);
}
.uni-full-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }

.uni-full-inner {
  display:grid; grid-template-columns:340px 1fr;
}

/* Left panel */
.uni-panel-left {
  padding:40px 36px;
  display:flex; flex-direction:column;
  border-right:1px solid var(--gray-100);
}
.uni-logo-wrap {
  width:100%; aspect-ratio:16/7;
  background:var(--off-white); border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; overflow:hidden; position:relative;
  border:1px solid var(--gray-100);
}
.uni-logo-wrap img { max-width:80%; max-height:60%; object-fit:contain; }
.uni-logo-placeholder {
  width:70px; height:70px; border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  font-size:32px;
}
.uni-type-badge {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:700; padding:5px 12px;
  border-radius:50px; margin-bottom:14px; width:fit-content;
}
.uni-full-name {
  font-family:'Playfair Display',serif;
  font-size:1.3rem; color:var(--text); line-height:1.25; margin-bottom:16px;
}
.uni-location {
  display:flex; align-items:center; gap:7px;
  font-size:13px; color:var(--gray-600); margin-bottom:12px;
}
.uni-founded {
  display:flex; align-items:center; gap:7px;
  font-size:13px; color:var(--gray-600); margin-bottom:20px;
}
.uni-key-stats {
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px; margin-top:auto;
}
.uks-box {
  background:var(--off-white); border-radius:12px;
  padding:12px 14px; border:1px solid var(--gray-100);
}
.uks-val { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:var(--navy); display:block; line-height:1; }
.uks-lbl { font-size:11px; color:var(--gray-400); margin-top:4px; display:block; }

/* Right panel */
.uni-panel-right { padding:40px 40px; }
.uni-panel-right h3 {
  font-family:'Playfair Display',serif;
  font-size:1.5rem; color:var(--text); margin-bottom:16px;
}
.uni-desc-full {
  font-size:14px; color:var(--gray-600); line-height:1.8;
  margin-bottom:24px;
}
.uni-badges-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.uni-badge {
  display:inline-flex; align-items:center; gap:5px;
  font-size:12px; font-weight:700; padding:5px 12px;
  border-radius:50px;
}
.ub-who { background:rgba(5,150,105,0.1); color:#047857; }
.ub-nmc { background:rgba(15,76,129,0.1); color:var(--navy); }
.ub-qs  { background:rgba(124,58,237,0.1); color:#7C3AED; }
.ub-eng { background:rgba(245,166,35,0.12); color:var(--gold-dark); }
.ub-us  { background:rgba(37,99,235,0.1); color:#2563EB; }
.ub-gray { background:var(--gray-50); color:var(--gray-600); }

/* Programs offered */
.uni-programs-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:10px; margin-bottom:28px;
}
.uni-prog-pill {
  background:var(--off-white); border:1px solid var(--gray-100);
  border-radius:10px; padding:10px 14px;
  font-size:13px; font-weight:600; color:var(--text);
  display:flex; align-items:center; gap:7px;
}
.uni-prog-pill span { font-size:16px; }

/* Highlights list */
.uni-highlights { display:flex; flex-direction:column; gap:8px; margin-bottom:28px; }
.uni-highlight {
  display:flex; align-items:flex-start; gap:10px;
  font-size:13px; color:var(--gray-600); line-height:1.5;
}
.uni-highlight::before { content:'✓'; color:var(--navy); font-weight:700; font-size:13px; flex-shrink:0; margin-top:1px; }

.uni-card-footer {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:24px; border-top:1px solid var(--gray-100);
  flex-wrap:wrap; gap:14px;
}
.uni-price-block { display:flex; align-items:baseline; gap:6px; }
.uni-price { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:900; color:var(--navy); }
.uni-price-lbl { font-size:13px; color:var(--gray-400); }
.uni-card-btns { display:flex; gap:10px; flex-wrap:wrap; }

/* ─── COMPARISON TABLE ───────────────── */
.compare-section { padding:100px 0; background:white; }
.compare-full-table {
  margin-top:56px; border-radius:20px; overflow:hidden;
  box-shadow:var(--shadow-md); border:1px solid var(--gray-100);
  overflow-x:auto;
}
.cft-wrap { min-width:900px; }
.cft-head {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  background:var(--navy-dark); padding:16px 24px;
}
.cft-head span { font-size:12px; font-weight:700; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.6px; }
.cft-head span:first-child { color:rgba(255,255,255,0.4); }
.cft-row {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding:16px 24px; align-items:center;
  border-bottom:1px solid var(--gray-100);
  transition:background 0.2s;
}
.cft-row:last-child { border-bottom:none; }
.cft-row:hover { background:var(--off-white); }
.cft-uni { display:flex; align-items:center; gap:12px; }
.cft-uni-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.cft-uni-name { font-weight:700; color:var(--text); font-size:13px; line-height:1.3; }
.cft-uni-sub  { font-size:11px; color:var(--gray-400); }
.cft-cell { font-size:13px; color:var(--gray-600); font-weight:500; }
.cft-cell.good { color:#047857; font-weight:700; }
.cft-cell.highlight { color:var(--navy); font-weight:700; }
.cft-pill {
  display:inline-block; font-size:11px; font-weight:700;
  padding:3px 9px; border-radius:50px;
}
.pill-green { background:rgba(5,150,105,0.1); color:#047857; }
.pill-blue  { background:rgba(15,76,129,0.1); color:var(--navy); }
.pill-gold  { background:rgba(245,166,35,0.12); color:var(--gold-dark); }

/* ─── WHY GEORGIA SECTION ────────────── */
.why-georgia { padding:100px 0; background:var(--off-white); }
.why-georgia-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.why-georgia-visual {
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));
  border-radius:24px; padding:40px; position:relative; overflow:hidden;
}
.why-georgia-visual::before {
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,1) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);
  background-size:40px 40px; opacity:0.04;
}
.why-geo-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; position:relative; z-index:1; }
.why-geo-stat {
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1);
  border-radius:16px; padding:20px;
}
.why-geo-num { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:900; color:var(--gold); display:block; }
.why-geo-lbl { font-size:13px; color:rgba(255,255,255,0.6); margin-top:4px; display:block; }
.why-geo-caption {
  margin-top:20px; text-align:center; position:relative; z-index:1;
  font-family:'Playfair Display',serif; font-size:1.1rem; color:white; line-height:1.4;
}
.why-reasons { display:flex; flex-direction:column; gap:16px; margin-top:32px; }
.why-reason {
  display:flex; align-items:flex-start; gap:14px;
  padding:18px 20px; background:white; border-radius:14px;
  border:1px solid var(--gray-100); transition:all 0.25s ease;
}
.why-reason:hover { box-shadow:var(--shadow-md); transform:translateX(6px); }
.why-reason-icon { width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; background:var(--off-white); }
.why-reason h4 { font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700; color:var(--text); margin-bottom:4px; }
.why-reason p  { font-size:13px; color:var(--gray-600); line-height:1.55; }

/* ─── TESTIMONIALS STRIP ─────────────── */
.uni-testi-section { padding:80px 0; background:white; }
.uni-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.uni-testi-card {
  background:var(--off-white); border-radius:20px;
  padding:28px; border:1px solid var(--gray-100);
  transition:all 0.3s ease;
}
.uni-testi-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); background:white; }
.uni-testi-stars { color:var(--gold); font-size:15px; margin-bottom:14px; }
.uni-testi-text { font-size:14px; color:var(--gray-600); line-height:1.75; margin-bottom:20px; font-style:italic; }
.uni-testi-author { display:flex; align-items:center; gap:12px; }
.uni-testi-av {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  display:flex; align-items:center; justify-content:center;
  color:white; font-weight:700; font-size:16px; flex-shrink:0;
}
.uni-testi-info strong { display:block; font-size:14px; color:var(--text); }
.uni-testi-info span  { font-size:12px; color:var(--gray-400); }
.uni-testi-flag { margin-left:auto; font-size:20px; }

/* ─── FAQ ────────────────────────────── */
.uni-faq-section { padding:100px 0; background:var(--off-white); }
.uni-faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:48px; }
.uni-faq-item { background:white; border-radius:16px; border:1px solid var(--gray-100); overflow:hidden; }
.uni-faq-q {
  width:100%; text-align:left; background:none; border:none;
  padding:20px 24px; display:flex; justify-content:space-between; align-items:center; gap:16px;
  cursor:pointer; font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700;
  color:var(--text); transition:color 0.2s;
}
.uni-faq-q:hover { color:var(--navy); }
.uni-faq-item.open .uni-faq-q { color:var(--navy); }
.uni-faq-icon {
  width:28px; height:28px; border-radius:50%; flex-shrink:0;
  background:var(--off-white); display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:400; transition:all 0.3s ease; color:var(--gray-600);
}
.uni-faq-item.open .uni-faq-icon { background:var(--navy); color:white; transform:rotate(45deg); }
.uni-faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s ease; padding:0 24px; }
.uni-faq-item.open .uni-faq-a { max-height:300px; padding:0 24px 20px; }
.uni-faq-a p { font-size:14px; color:var(--gray-600); line-height:1.75; }

/* ─── CTA SECTION ───────────────────── */
.uni-cta-section {
  padding:100px 0;
  background:linear-gradient(135deg,#0A3561 0%,#1A5A9B 50%,#0F4C81 100%);
  position:relative; overflow:hidden; text-align:center;
}
.uni-cta-section::before {
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,1) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);
  background-size:60px 60px; opacity:0.03;
}
.uni-cta-inner { position:relative; z-index:2; max-width:640px; margin:0 auto; }
.uni-cta-inner h2 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,2.8rem); color:white; margin-bottom:18px; }
.uni-cta-inner h2 span { color:var(--gold); }
.uni-cta-inner p { font-size:17px; color:rgba(255,255,255,0.72); line-height:1.75; margin-bottom:36px; }
.uni-cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ─── FOOTER ─────────────────────────── */
.footer { background:var(--gray-800); color:white; padding:70px 0 30px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.75; margin:16px 0 24px; }
.footer-social { display:flex; gap:10px; }
.social-btn { width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; font-size:16px; transition:all 0.2s ease; cursor:pointer; color:white; text-decoration:none; }
.social-btn:hover { background:rgba(245,166,35,0.2); border-color:rgba(245,166,35,0.4); }
.footer-col h4 { font-family:'DM Sans',sans-serif; font-size:13px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:18px; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,0.6); margin-bottom:10px; transition:color 0.2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width:1024px) {
  .uni-full-inner { grid-template-columns:1fr; }
  .uni-panel-left { border-right:none; border-bottom:1px solid var(--gray-100); }
  .quick-stats-row { grid-template-columns:repeat(3,1fr); }
  .why-georgia-grid { grid-template-columns:1fr; }
  .uni-testi-grid { grid-template-columns:1fr 1fr; }
  .uni-faq-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .page-hero { padding:130px 0 70px; }
  .uni-programs-grid { grid-template-columns:1fr 1fr; }
  .uni-key-stats { grid-template-columns:1fr 1fr; }
  .quick-stats-row { grid-template-columns:repeat(2,1fr); }
  .uni-testi-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
}
@media (max-width:480px) {
  .uni-programs-grid { grid-template-columns:1fr; }
  .quick-stats-row { grid-template-columns:1fr 1fr; }
}


/* ════════════════════════════════════════════
   PAGE HERO — study-in-georgia page additions
   (base .page-hero styles defined above at line ~1846)
════════════════════════════════════════════ */
/* study-in-georgia page hero background override — scoped via body class if needed */
.page-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,109,181,0.18) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.page-hero .subtitle {
  font-size: 18px; color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 600px; margin-bottom: 40px;
}
.hero-stats-row {
  display: flex; gap: 36px; flex-wrap: wrap;
}
.hero-stat-item { display: flex; align-items: center; gap: 12px; }
.hero-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.hero-stat-text { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 17px; font-weight: 700; color: white; line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* Section nav pills */
.section-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-300);
  position: sticky; top: 72px; z-index: 100;
}
.section-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-link {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  color: var(--gray-600); border-bottom: 3px solid transparent;
  white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
}
.section-nav-link:hover { color: var(--navy); }
.section-nav-link.active { color: var(--navy); border-bottom-color: var(--gold); }
.section-nav-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gray-600); flex-shrink: 0;
}
.section-nav-link.active .section-nav-num { background: var(--gold); color: var(--navy-dark); }

/* ════════════════════════════════════════════
   SECTION 1 — EDUCATION SYSTEM
════════════════════════════════════════════ */
#education-system { padding: 100px 0; background: var(--white); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.edu-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.edu-card {
  background: var(--off-white); border: 1px solid var(--gray-300);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.edu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,76,129,0.1); border-color: var(--gold); }
.edu-card:hover::before { transform: scaleX(1); }
.edu-card-icon { font-size: 2rem; margin-bottom: 12px; }
.edu-card-title {
  font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px;
}
.edu-card-credits {
  font-size: 24px; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif;
  line-height: 1;
}
.edu-card-sub { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.edu-card-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-top: 10px; }
.edu-card.featured {
  grid-column: span 2; background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-color: rgba(245,166,35,0.2);
}
.edu-card.featured .edu-card-title { color: white; }
.edu-card.featured .edu-card-desc { color: rgba(255,255,255,0.65); }
.edu-card.featured::before { background: var(--gold-light); }

.info-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; background: var(--off-white);
  border-radius: 12px; border: 1px solid var(--gray-100);
  transition: border-color 0.2s;
}
.info-item:hover { border-color: var(--gold); }
.info-item-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(15,76,129,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 1px;
}
.info-item-body h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.info-item-body p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ════════════════════════════════════════════
   SECTION 2 — APPLICATION PROCEDURE
════════════════════════════════════════════ */
#application { padding: 100px 0; background: var(--navy-dark); position: relative; overflow: hidden; }
#application::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.025;
}
#application::after {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.app-header { position: relative; z-index: 2; margin-bottom: 60px; }
.app-header .section-lead { color: rgba(255,255,255,0.6); }

.timeline { position: relative; z-index: 2; }
.timeline-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.timeline-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px 22px; position: relative;
  transition: all 0.3s ease; overflow: hidden;
}
.timeline-step::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.timeline-step:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-3px); }
.timeline-step:hover::before { opacity: 1; }
.timeline-step .step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: rgba(245,166,35,0.15); line-height: 1;
  position: absolute; top: 16px; right: 20px;
  width: auto; height: auto; border-radius: 0;
  background: none; border: none; box-shadow: none;
  margin: 0; display: block;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(245,166,35,0.15); color: var(--gold);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(245,166,35,0.25);
}
.app-cta-row {
  position: relative; z-index: 2;
  margin-top: 50px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}

/* ════════════════════════════════════════════
   SECTION 3 — LEARN GEORGIAN
════════════════════════════════════════════ */
#learn-georgian { padding: 100px 0; background: var(--off-white); }
.lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lang-content h2 { margin-bottom: 18px; }
.lang-reasons { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.lang-reason {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-300); align-items: flex-start;
}
.lang-reason:last-child { border-bottom: none; }
.lang-reason-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 36px;
}
.lang-reason-body h4 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; }
.lang-reason-body p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

.alphabet-showcase {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
}
.alphabet-showcase::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.alphabet-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 6px;
}
.alphabet-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.georgian-chars {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.geo-char {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white; transition: all 0.2s;
  cursor: default;
}
.geo-char:hover { background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.4); transform: scale(1.12); }
.phrasebook { margin-top: 8px; }
.phrase-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.phrase-item:last-child { border-bottom: none; }
.phrase-georgian { font-size: 18px; color: var(--gold-light); font-weight: 600; }
.phrase-english { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; }
.phrase-roman { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; }

.lang-tips { margin-top: 36px; }
.lang-tip-card {
  background: white; border: 1px solid var(--gray-300);
  border-radius: 14px; padding: 20px 22px; margin-bottom: 14px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: all 0.2s;
}
.lang-tip-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(15,76,129,0.08); }
.lang-tip-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.lang-tip-body h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.lang-tip-body p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ════════════════════════════════════════════
   SECTION 4 — PERMITS & VISAS
════════════════════════════════════════════ */
#permits-visas { padding: 100px 0; background: var(--white); }
.visa-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.visa-tabs { margin-top: 32px; }
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-300); margin-bottom: 32px;
  overflow-x: auto; scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 22px; font-size: 14px; font-weight: 600;
  color: var(--gray-400); border-bottom: 2px solid transparent; margin-bottom: -2px;
  cursor: pointer; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.visa-type-card {
  background: var(--off-white); border: 1px solid var(--gray-300);
  border-radius: 16px; padding: 28px; margin-bottom: 18px;
}
.visa-type-card h3 {
  font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.vtc-badge {
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  background: rgba(34,197,94,0.12); color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
}
.visa-detail-list { display: flex; flex-direction: column; gap: 8px; }
.vdl-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600); }
.vdl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}

.trp-steps { display: flex; flex-direction: column; gap: 0; }
.trp-step {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trp-step:last-child { border-bottom: none; }
.trp-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.trp-body h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.trp-body p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Sidebar */
.visa-sidebar { position: sticky; top: 160px; }
.visa-checklist {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 20px; padding: 32px; margin-bottom: 20px;
  color: white;
}
.vcl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 6px;
}
.vcl-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.vcl-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px;
}
.vcl-item:last-child { border-bottom: none; }
.vcl-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px; color: var(--green);
}

.visa-success-card {
  background: var(--off-white); border: 1px solid var(--gray-300);
  border-radius: 20px; padding: 28px; text-align: center;
}
.vsc-rate {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: var(--green); line-height: 1;
}
.vsc-label { font-size: 14px; font-weight: 600; color: var(--navy-dark); margin-top: 6px; margin-bottom: 16px; }
.vsc-sub { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #E8961A 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--navy-dark);
  line-height: 1.15; margin-bottom: 10px;
}
.cta-text p { font-size: 16px; color: rgba(10,35,66,0.7); max-width: 480px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-dark { background: var(--navy-dark); color: white; }
.btn-dark:hover { background: #071830; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,35,66,0.3); }
.btn-white { background: white; color: var(--navy-dark); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.5);
  padding: 40px 0; text-align: center; font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer a { color: var(--gold); }

/* ════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; opacity: 0; transform: translateY(16px);
  transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,166,35,0.5); }

/* ════════════════════════════════════════════
   FADE ANIMATIONS
════════════════════════════════════════════ */
.fade-up { opacity: 0; }
.fade-in { opacity: 0; }

/* ════════════════════════════════════════════
   MOBILE
════════════════════════════════════════════ */
#mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh;
  background: var(--navy-dark); z-index: 2000; padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 8px; transition: right 0.35s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,0.4); overflow-y: auto;
  visibility: hidden;
}
#mobile-menu.open { right: 0; visibility: visible; }
#mobile-menu a { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .close-menu, #mobile-menu .close { position: absolute; top: 20px; right: 24px; font-size: 24px; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.menu-overlay.open { display: block; }

@media (max-width: 900px) {
  .edu-grid, .lang-grid, .visa-layout { grid-template-columns: 1fr; gap: 40px; }
  .visa-sidebar { position: static; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cta-inner { flex-direction: column; text-align: center; }
  .edu-visual { grid-template-columns: 1fr 1fr; }
  .edu-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .edu-visual { grid-template-columns: 1fr; }
  .edu-card.featured { grid-column: span 1; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES (merged from inline page CSS)
═══════════════════════════════════════════════════════════ */

/* ─── about.html ─── */
/* ─── PAGE-HERO ─────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: url(img/about-logo.png), linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 50%, var(--navy) 100%); 
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.03;
}
.page-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.page-hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,109,181,0.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px; max-width: 700px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 580px; margin-bottom: 36px;
}
.hero-trust-row {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
}
.hero-trust-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-trust-text { display: flex; flex-direction: column; }
.hero-trust-val { font-size: 18px; font-weight: 700; color: white; line-height: 1; }
.hero-trust-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ─── MISSION SECTION ─────────────────── */
.mission-section { padding: 100px 0; background: var(--white); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.mission-visual {
  position: relative;
}
.mission-card-stack {
  position: relative; width: 100%; aspect-ratio: 4/4.5;
}
.mission-img-bg {
  width: 100%; height: 100%;
  background: url(img/about-sub-01.png), linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 24px; overflow: hidden; position: relative;
}
.mission-img-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.mission-img-content {
  position: absolute; inset: 0;
  display: flex; align-items: bottom; justify-content: center; flex-direction: column;
  gap: 12px; padding: 32px;
}
.mission-flag-row {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.mission-flag {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}
.mission-flag:hover { transform: scale(1.2); }
.mission-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: white;
  text-align: center; line-height: 1.3;
}
.mission-sub-label {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-align: center;
}
.mission-float-badge {
  position: absolute; background: white;
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(15,76,129,0.18);
  display: flex; align-items: center; gap: 10px;
}
.mission-float-badge.top-left {
  top: -20px; left: -30px;
}
.mission-float-badge.bottom-right {
  bottom: -20px; right: -30px;
}
.badge-icon { font-size: 22px; }
.badge-text { display: flex; flex-direction: column; }
.badge-val { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1; }
.badge-lbl { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* ─── FOUNDER STORY ─────────────────────── */
.founder-section {
  padding: 100px 0;
  background: var(--off-white);
}
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.founder-quote-block {
  position: relative; padding: 40px;
  background: white; border-radius: 24px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.founder-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 1; color: var(--gold);
  opacity: 0.2; position: absolute; top: 10px; left: 24px;
}
.founder-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--text); line-height: 1.6;
  font-style: italic; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.founder-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.founder-role { font-size: 13px; color: var(--gray-400); }

/* ─── VALUES / WHY BENTO ─────────────────── */
.values-section { padding: 100px 0; background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.value-card {
  background: var(--off-white); border-radius: 20px;
  padding: 32px; transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.value-card:hover::before { opacity: 1; }
.value-card:hover {
  background: white; transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--text);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; line-height: 1.7; }

/* ─── TEAM SECTION ─────────────────────── */
.team-section { padding: 100px 0; background: var(--off-white); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.team-card {
  background: white; border-radius: 20px;
  overflow: hidden; transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative; overflow: hidden;
}
.team-avatar::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 30px 30px; opacity: 0.04;
}
.team-flag {
  position: absolute; bottom: 10px; right: 10px;
  font-size: 20px; z-index: 2;
}
.team-info { padding: 20px; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--text); margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.team-tag {
  display: inline-block; margin-top: 10px;
  background: rgba(245,166,35,0.12); color: var(--gold-dark);
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 50px;
}

/* ─── STATS STRIP ───────────────────────── */
.stats-strip {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; position: relative; z-index: 2;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: var(--gold); display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 14px; color: rgba(255,255,255,0.65);
  margin-top: 8px; display: block;
}

/* ─── ACCREDITATIONS ───────────────────── */
.accred-section { padding: 80px 0; background: var(--white); }
.accred-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; margin-top: 48px;
}
.accred-badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 32px; background: var(--off-white);
  border-radius: 16px; border: 1px solid var(--gray-100);
  transition: all 0.3s ease; min-width: 120px;
}
.accred-badge:hover {
  background: white; box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.accred-icon { font-size: 36px; }
.accred-name {
  font-size: 13px; font-weight: 700; color: var(--navy);
  text-align: center; line-height: 1.3;
}
.accred-sub { font-size: 11px; color: var(--gray-400); text-align: center; }

/* ─── PLEDGE SECTION ───────────────────── */
.pledge-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A3561 0%, #1A5A9B 50%, #0F4C81 100%);
  position: relative; overflow: hidden;
}
.pledge-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.pledge-inner { position: relative; z-index: 2; text-align: center; }
.pledge-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: white; margin-bottom: 20px;
}
.pledge-inner h2 span { color: var(--gold); }
.pledge-inner > p {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 48px; line-height: 1.75;
}
.pledge-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.pledge-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 28px 24px;
  text-align: left; transition: all 0.3s ease;
}
.pledge-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.pledge-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 14px;
}
.pledge-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: white; margin-bottom: 8px;
}
.pledge-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.pledge-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CTA SECTION ───────────────────────── */
.about-cta-section { padding: 80px 0; background: var(--gray-50); }
.about-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.about-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text); margin-bottom: 16px;
}
.about-cta-inner p { margin-bottom: 32px; }
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--gray-800); color: white;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.75; margin: 16px 0 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s ease; cursor: pointer;
}
.social-btn:hover { background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.4); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .mission-grid, .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pledge-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 0 70px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .pledge-grid { grid-template-columns: 1fr; }
  .hero-trust-row { gap: 20px; }
  .accred-row { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ─── apply.html ─── */
/* ═══════════════════════════════════════════
   APPLY PAGE — CUSTOM STYLES
═══════════════════════════════════════════ */

/* ─── PAGE HERO ─────────────────────────── */
.apply-hero {
  position: relative;
  padding: 155px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 55%, var(--navy) 100%);
  overflow: hidden;
}
.apply-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.03;
}
.apply-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.apply-hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.13) 0%, transparent 70%);
  top: -180px; right: -120px;
}
.apply-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,109,181,0.2) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.apply-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.apply-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px;
}
.apply-hero-title span { color: var(--gold); }
.apply-hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.8; max-width: 540px; margin-bottom: 32px;
}
.apply-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.apply-trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  padding: 7px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.apply-trust-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Quick mini-card on hero right */
.apply-hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px; padding: 28px;
}
.ahc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: white; margin-bottom: 18px; font-weight: 700;
}
.ahc-steps { display: flex; flex-direction: column; gap: 12px; }
.ahc-step {
  display: flex; align-items: flex-start; gap: 12px;
}
.ahc-step-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--navy-dark);
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.ahc-step-text strong {
  display: block; font-size: 13px; color: white; font-weight: 700; line-height: 1.2;
}
.ahc-step-text span {
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.ahc-divider {
  height: 1px; background: rgba(255,255,255,0.1); margin: 16px 0;
}
.ahc-guarantee {
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 12px; padding: 12px 14px;
}
.ahc-guarantee-icon { font-size: 20px; }
.ahc-guarantee-text { font-size: 12px; color: var(--gold-light); font-weight: 700; line-height: 1.45; }

/* ─── PROGRESS STRIP ────────────────────── */
.progress-strip {
  background: white;
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
  position: sticky; top: 80px; z-index: 100;
  box-shadow: 0 2px 16px rgba(15,76,129,0.07);
}
.progress-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.prog-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--gray-400);
  cursor: pointer; transition: color 0.3s;
  padding: 0 20px;
}
.prog-step:first-child { padding-left: 0; }
.prog-step.active { color: var(--navy); }
.prog-step.done { color: var(--navy); }
.prog-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-100); color: var(--gray-400);
  font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.prog-step.active .prog-icon {
  background: var(--navy); color: white;
  box-shadow: 0 4px 14px rgba(15,76,129,0.35);
}
.prog-step.done .prog-icon {
  background: #10B981; color: white;
}
.prog-connector {
  height: 2px; width: 48px; background: var(--gray-100); flex-shrink: 0;
  transition: background 0.4s;
}
.prog-connector.done { background: #10B981; }
@media (max-width: 640px) {
  .prog-step span { display: none; }
  .prog-connector { width: 24px; }
  .prog-step { padding: 0 10px; }
}

/* ─── MAIN FORM LAYOUT ──────────────────── */
.apply-main {
  padding: 80px 0 100px;
  background: var(--off-white);
}
.apply-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start;
}

/* ─── FORM CARD ─────────────────────────── */
.form-card {
  background: white; border-radius: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.form-section-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 16px;
}
.fsh-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: rgba(15,76,129,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.fsh-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--text); font-weight: 700; line-height: 1.2;
}
.fsh-sub { font-size: 13px; color: var(--gray-400); margin-top: 3px; }
.form-body { padding: 32px 36px; }

/* ─── FORM FIELDS ───────────────────────── */
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px;
}
.field-row.single { grid-template-columns: 1fr; }
.field-row.triple { grid-template-columns: 1fr 1fr 1fr; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-label {
  font-size: 13px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 4px;
}
.field-label .req { color: #e53e3e; font-size: 14px; line-height: 1; }
.field-input, .field-select, .field-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 12px; padding: 12px 16px;
  transition: all 0.25s; width: 100%;
  outline: none; appearance: none; -webkit-appearance: none;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(15,76,129,0.08);
}
.field-input.error, .field-select.error, .field-textarea.error {
  border-color: #e53e3e;
  background: #fff5f5;
}
.field-input::placeholder, .field-textarea::placeholder {
  color: var(--gray-400); font-weight: 400;
}
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%239BA5B4' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.field-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field-hint { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.field-error { font-size: 12px; color: #e53e3e; margin-top: 2px; display: none; }
.field-error.visible { display: block; }

/* Phone with flag/prefix */
.phone-wrap { position: relative; display: flex; }
.phone-prefix {
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-right: none; border-radius: 12px 0 0 12px;
  padding: 12px 14px; font-size: 14px; color: var(--gray-600); font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
.phone-wrap .field-input {
  border-radius: 0 12px 12px 0; flex: 1;
}

/* ─── SECTION DIVIDERS WITHIN FORM ─────── */
.form-divider {
  height: 1px; background: var(--gray-100);
  margin: 28px 0;
  position: relative;
}
.form-divider-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: white; padding: 0 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gray-400);
}

/* ─── PROGRAM SELECTOR CARDS ────────────── */
.program-selector {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px;
}
.prog-card {
  border: 2px solid var(--gray-100);
  border-radius: 14px; padding: 14px 12px;
  cursor: pointer; transition: all 0.22s ease;
  text-align: center;
  background: var(--off-white);
}
.prog-card:hover { border-color: var(--navy-light); background: rgba(15,76,129,0.04); }
.prog-card.selected {
  border-color: var(--navy); background: rgba(15,76,129,0.07);
}
.prog-card-icon { font-size: 22px; display: block; margin-bottom: 6px; }
.prog-card-name { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.prog-card-note { font-size: 11px; color: var(--gray-400); margin-top: 3px; }
input[name="program_card"] { display: none; }

/* ─── DOCUMENT UPLOAD AREA ──────────────── */
.upload-area {
  border: 2px dashed var(--gray-100);
  border-radius: 14px; padding: 20px;
  text-align: center; cursor: pointer;
  transition: all 0.25s; background: var(--off-white);
  margin-bottom: 18px;
}
.upload-area:hover { border-color: var(--navy-light); background: rgba(15,76,129,0.04); }
.upload-area.dragover { border-color: var(--navy); background: rgba(15,76,129,0.07); }
.upload-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.upload-text { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.upload-sub { font-size: 12px; color: var(--gray-400); }
.upload-area input[type="file"] { display: none; }
.uploaded-files { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.uploaded-file {
  display: flex; align-items: center; gap: 10px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px; padding: 8px 12px;
  font-size: 12px; color: #047857; font-weight: 600;
}
.uploaded-file-icon { font-size: 14px; }

/* ─── CONSENT & DECLARATIONS ────────────── */
.consent-block {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 16px;
}
.consent-row {
  display: flex; align-items: flex-start; gap: 12px;
}
.consent-row input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--navy); margin-top: 2px; cursor: pointer;
}
.consent-row label {
  font-size: 13px; color: var(--gray-600); line-height: 1.65; cursor: pointer;
}
.consent-row label a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.consent-error { font-size: 12px; color: #e53e3e; margin-top: 6px; display: none; }
.consent-error.visible { display: block; }

/* ─── SUBMIT BUTTON ─────────────────────── */
.apply-submit-btn {
  width: 100%; padding: 16px 28px;
  background: var(--gold); color: var(--navy-dark);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 800;
  border: none; border-radius: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 24px rgba(245,166,35,0.4);
  position: relative; overflow: hidden;
}
.apply-submit-btn:hover:not(:disabled) {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,166,35,0.5);
}
.apply-submit-btn:disabled {
  opacity: 0.7; cursor: not-allowed; transform: none;
}
.apply-submit-btn .spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(15,53,97,0.3);
  border-top-color: var(--navy-dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.apply-submit-btn.loading .spinner { display: block; }
.apply-submit-btn.loading .btn-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.submit-success {
  display: none; text-align: center;
  background: linear-gradient(135deg, #f0fff4, #e6fffa);
  border: 1px solid #9ae6b4; border-radius: 20px;
  padding: 48px 36px;
}
.submit-success.visible { display: block; }
.success-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.success-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #276749; margin-bottom: 10px; }
.success-msg { font-size: 15px; color: #2F855A; line-height: 1.7; margin-bottom: 24px; }
.success-steps { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 24px; }
.success-step {
  display: flex; align-items: center; gap: 10px;
  background: rgba(16,185,129,0.08); border-radius: 10px; padding: 10px 14px;
  font-size: 13px; color: #276749; font-weight: 600;
}

/* ─── FORM TOAST ────────────────────────── */
.form-toast {
  display: none; border-radius: 12px;
  padding: 14px 18px; font-size: 14px; font-weight: 500;
  margin-bottom: 20px; line-height: 1.5;
}
.form-toast.success { display: block; background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.form-toast.error { display: block; background: #fff5f5; border: 1px solid #feb2b2; color: #9b2c2c; }

/* ─── SIDEBAR ───────────────────────────── */
.apply-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); padding: 24px;
}
.sidebar-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--text); margin-bottom: 16px; font-weight: 700;
}

/* Why apply card */
.why-apply-list { display: flex; flex-direction: column; gap: 10px; }
.wa-item { display: flex; align-items: flex-start; gap: 10px; }
.wa-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(15,76,129,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--navy); font-weight: 900; margin-top: 1px;
}
.wa-text strong { display: block; font-size: 13px; color: var(--text); font-weight: 700; }
.wa-text span { font-size: 12px; color: var(--gray-400); }

/* Timeline card */
.timeline-list { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 12px; position: relative; }
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 14px; top: 30px;
  width: 2px; height: calc(100% - 12px);
  background: var(--gray-100);
}
.tl-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: white;
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; margin-top: 4px;
}
.tl-content { padding-bottom: 16px; }
.tl-content strong { display: block; font-size: 13px; color: var(--text); font-weight: 700; }
.tl-content span { font-size: 12px; color: var(--gray-400); }

/* Stats card */
.sidebar-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ss-item {
  background: var(--off-white); border-radius: 12px; padding: 14px;
  border: 1px solid var(--gray-100); text-align: center;
}
.ss-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--navy); display: block; }
.ss-lbl { font-size: 11px; color: var(--gray-400); margin-top: 3px; display: block; }

/* WA button sidebar */
.sidebar-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px 20px;
  background: #25D366; color: white;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.sidebar-wa-btn:hover { background: #1fb958; transform: translateY(-2px); }
.sidebar-navy-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px 20px; margin-top: 10px;
  background: var(--navy); color: white;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.sidebar-navy-btn:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ─── PROCESS EXPLAINER SECTION ─────────── */
.process-section {
  padding: 90px 0; background: white;
}
.process-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 56px;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--navy-dark), var(--gold));
  z-index: 0;
}
.proc-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.proc-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: white;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 6px 20px rgba(15,76,129,0.3);
  transition: all 0.3s ease;
}
.proc-step:hover .proc-num { background: var(--gold); color: var(--navy-dark); transform: scale(1.12); }
.proc-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.proc-desc { font-size: 12px; color: var(--gray-400); line-height: 1.6; }
.proc-time {
  display: inline-block; margin-top: 8px;
  background: rgba(245,166,35,0.12); color: var(--gold-dark);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}

/* ─── DOCUMENT CHECKLIST ────────────────── */
.docs-section { padding: 80px 0; background: var(--off-white); }
.docs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.doc-card {
  background: white; border-radius: 18px; padding: 24px;
  border: 1px solid var(--gray-100); transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.doc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.doc-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.doc-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.doc-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; }
.doc-req {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; margin-top: 10px;
}
.doc-req.required { background: rgba(239,68,68,0.1); color: #DC2626; }
.doc-req.optional { background: rgba(245,166,35,0.12); color: var(--gold-dark); }

/* ─── FAQ SECTION ───────────────────────── */
.apply-faq { padding: 80px 0; background: white; }
.apply-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 48px;
}
.afq-item {
  background: var(--off-white); border-radius: 16px;
  border: 1px solid var(--gray-100); overflow: hidden;
}
.afq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text); transition: color 0.2s;
}
.afq-q:hover { color: var(--navy); }
.afq-item.open .afq-q { color: var(--navy); }
.afq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 400; transition: all 0.3s; color: var(--gray-600);
}
.afq-item.open .afq-icon { background: var(--navy); color: white; transform: rotate(45deg); }
.afq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.afq-item.open .afq-a { max-height: 280px; padding: 0 24px 20px; }
.afq-a p { font-size: 14px; color: var(--gray-600); line-height: 1.75; }

/* ─── FINAL CTA STRIP ───────────────────── */
.apply-cta-strip {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.apply-cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.apply-cta-inner {
  position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto;
}
.apply-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: white; margin-bottom: 14px;
}
.apply-cta-inner h2 span { color: var(--gold); }
.apply-cta-inner p {
  font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 28px;
}
.apply-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1100px) {
  .apply-layout { grid-template-columns: 1fr 320px; }
}
@media (max-width: 900px) {
  .apply-hero-inner { grid-template-columns: 1fr; }
  .apply-hero-card { display: none; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
  .docs-grid { grid-template-columns: 1fr 1fr; }
  .apply-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .apply-hero { padding: 130px 0 60px; }
  .form-body { padding: 24px 20px; }
  .form-section-header { padding: 22px 20px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .field-row.triple { grid-template-columns: 1fr; }
  .program-selector { grid-template-columns: 1fr 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .apply-sidebar { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
}

/* ─── costs.html ─── */
.page-hero { background: var(--navy-dark); padding: 160px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.ph-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.ph-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(15,76,129,0.5) 0%, transparent 70%); top: -200px; right: -100px; }
.ph-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%); bottom: -100px; left: 10%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 span { color: var(--gold); }
.page-hero .lead { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 600px; line-height: 1.75; }
.hero-stats-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 36px; }
.hero-stat-item .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.hero-stat-item .lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* Fee breakdown table */
.fee-table-wrap { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: 24px; overflow: hidden; }
.fee-table-header { padding: 28px 36px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.fee-table-header h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.3rem; }
.fee-table-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.fee-table-row:last-child { border-bottom: none; }
.fee-table-row:hover { background: rgba(255,255,255,0.04); }
.fee-col-head { padding: 14px 36px; background: rgba(255,255,255,0.05); display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; }
.fee-col-head span { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.fee-col-head span:last-child { text-align: right; }
.fee-row-label { color: rgba(255,255,255,0.85); font-size: 14px; }
.fee-row-detail { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.fee-val { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; text-align: right; color: var(--gold); white-space: nowrap; }
.fee-val.bad { color: rgba(255,255,255,0.35); font-size: 0.95rem; }
.fee-val.neutral { color: rgba(255,255,255,0.65); }
.fee-total-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; align-items: center; padding: 22px 36px; background: rgba(245,166,35,0.1); border-top: 1px solid rgba(245,166,35,0.25); }
.fee-total-label { color: white; font-weight: 700; font-size: 15px; }
.fee-total-val { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.4rem; color: var(--gold); text-align: right; }
.fee-total-val.bad { color: rgba(255,255,255,0.4); font-size: 1.1rem; }

/* Savings calculator visual */
.savings-visual { background: linear-gradient(135deg, #0A3561, #0F4C81); border-radius: 24px; padding: 48px; text-align: center; position: relative; overflow: hidden; }
.savings-visual::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 50%, rgba(245,166,35,0.08), transparent 60%); }
.savings-number { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 900; color: var(--gold); line-height: 1; position: relative; z-index: 1; }
.savings-label { color: rgba(255,255,255,0.65); font-size: 16px; margin: 12px 0 28px; position: relative; z-index: 1; }

/* Living costs grid */
.living-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.living-card { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.living-icon { font-size: 2rem; margin-bottom: 12px; }
.living-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy-dark); margin-bottom: 4px; }
.living-range { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--navy); margin: 8px 0 6px; }
.living-card p { font-size: 13px; line-height: 1.6; }

/* Hidden fees warning */
.warning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.warning-card { background: #FFF8F0; border: 1px solid #FED7AA; border-radius: var(--radius); padding: 24px; }
.warning-card h4 { color: #9A3412; font-family: 'Playfair Display', serif; margin-bottom: 10px; font-size: 1rem; }
.warning-card p { font-size: 13px; color: #7C2D12; line-height: 1.7; }
.safe-card { background: #F0FDF4; border: 1px solid #BBF7D0; }
.safe-card h4 { color: #14532D; }
.safe-card p { color: #166534; }

/* Interactive calculator */
.calc-wrap { background: white; border-radius: 24px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); padding: 48px; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin-bottom: 20px; }
.calc-label { font-weight: 600; color: var(--navy-dark); }
.calc-sub { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
select.calc-select { width: 100%; padding: 12px 16px; border-radius: 10px; border: 2px solid var(--gray-100); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); cursor: pointer; background: var(--off-white); }
select.calc-select:focus { outline: none; border-color: var(--navy); }
.calc-result { margin-top: 32px; padding: 28px; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: 16px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.calc-res-item { text-align: center; }
.calc-res-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.calc-res-lbl { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; }

@media (max-width: 768px) {
  .fee-table-row { grid-template-columns: 1fr auto; }
  .fee-table-row .fee-val:nth-child(3), .fee-table-row .fee-val:nth-child(4) { display: none; }
  .fee-col-head span:nth-child(3), .fee-col-head span:nth-child(4) { display: none; }
  .fee-total-row { grid-template-columns: 1fr auto; }
  .fee-total-val:nth-child(3), .fee-total-val:nth-child(4) { display: none; }
  .living-grid { grid-template-columns: 1fr 1fr; }
  .warning-grid { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
  .calc-result { grid-template-columns: 1fr; }
}

/* ─── explore-georgia.html ─── */
/* ── PAGE-SPECIFIC STYLES ── */

/* Navbar (matches index.html exactly) */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0 24px;
}
#navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 80px;
}
.nav-logo { flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.88); font-weight: 500; font-size: 15px;
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color 0.22s, border-color 0.22s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white; font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 50px; transition: opacity 0.2s;
}
.wa-btn:hover { opacity: 0.88; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

#mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy-dark);
  flex-direction: column; gap: 20px; padding: 32px 24px;
  z-index: 2000; overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu .close { font-size: 28px; color: white; cursor: pointer; align-self: flex-end; }
#mobile-menu a { color: white; font-size: 18px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }

/* Hero */
#eg-hero {
  min-height: 62vh;
  background: url(img/explor-bg.png), linear-gradient(135deg, #0A3561 0%, #0F4C81 45%, #1A6DB5 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
}
#eg-hero::before {
  content: ''; position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.035'%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");
}
#eg-hero::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-inner { max-width: 1180px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 20px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-breadcrumb span { color: rgba(255,255,255,0.35); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold-light); padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px; max-width: 680px;
  text-shadow: -2px 0 var(--navy-dark), 0 2px var(--navy-dark), 2px 0 var(--navy-dark), 0 -2px var(--navy-dark);
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.82);
  line-height: 1.75; max-width: 600px; margin-bottom: 36px;
}
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 36px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.hero-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Topic anchors bar */
#topic-bar {
  background: var(--navy-dark); position: sticky; top: 80px; z-index: 900;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.topic-bar-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0; min-width: max-content;
}
.topic-bar-inner a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 600;
  padding: 14px 20px; letter-spacing: 0.5px;
  border-bottom: 3px solid transparent; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.topic-bar-inner a:hover, .topic-bar-inner a.active {
  color: var(--gold); border-color: var(--gold);
}

/* Sections */
.eg-section { padding: 80px 0; }
.eg-section:nth-child(even) { background: var(--off-white); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-header { margin-bottom: 52px; }
.section-number {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900;
  color: var(--text); line-height: 1.15; margin-bottom: 16px;
}
.section-title span { color: var(--navy); }
.section-lead { font-size: 17px; color: var(--gray-600); line-height: 1.8; max-width: 720px; }

/* Content grid */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.content-text p:last-child { margin-bottom: 0; }
.content-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--text); margin: 28px 0 12px;
}

/* Fact cards */
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.fact-card {
  background: white; border-radius: var(--radius-sm);
  padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: transform 0.25s, box-shadow 0.25s;
}
.fact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fact-icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; }
.fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1;
}
.fact-lbl { font-size: 13px; color: var(--gray-600); margin-top: 6px; line-height: 1.4; }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius); padding: 36px 40px;
  color: white; margin-top: 36px;
}
.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: white; margin-bottom: 14px;
}
.highlight-box p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.75; }

/* Info list */
.info-list { list-style: none; margin-top: 24px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 15px; color: var(--gray-600); line-height: 1.6;
}
.info-list li:last-child { border-bottom: none; }
.info-list li .bullet {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(15,76,129,0.1); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; margin-top: 1px;
}

/* Map-like geography card */
.geo-card {
  background: linear-gradient(160deg, #e8f4fd 0%, #f0f8ff 100%);
  border: 1px solid rgba(15,76,129,0.12);
  border-radius: var(--radius); padding: 32px;
}
.geo-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 18px; }
.geo-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(15,76,129,0.08);
  font-size: 14px;
}
.geo-row:last-child { border-bottom: none; }
.geo-label { color: var(--gray-600); }
.geo-value { font-weight: 600; color: var(--text); }

/* Season cards */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season-card {
  border-radius: var(--radius-sm); padding: 24px 16px; text-align: center;
  border: 1px solid var(--gray-100);
}
.season-card.spring { background: #f0fff4; }
.season-card.summer { background: #fffbeb; }
.season-card.autumn { background: #fff7ed; }
.season-card.winter { background: #eff6ff; }
.season-icon { font-size: 2.2rem; margin-bottom: 10px; }
.season-name { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.season-temp { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.season-card.spring .season-temp { color: #16a34a; }
.season-card.summer .season-temp { color: #d97706; }
.season-card.autumn .season-temp { color: #ea580c; }
.season-card.winter .season-temp { color: #2563eb; }
.season-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Topic heading label */
.topic-anchor-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}

/* CTA section */
#eg-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
#eg-cta::before {
  content: ''; position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
}
#eg-cta .cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
#eg-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 20px;
}
#eg-cta h2 span { color: var(--gold); }
#eg-cta p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.75; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%; text-align: left; background: white;
  padding: 20px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--text);
  cursor: pointer; border: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q .arrow { color: var(--navy); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 15px; color: var(--gray-600); line-height: 1.75;
  background: white;
}
.faq-a.visible { display: block; }

/* Sticky mobile CTA */
#sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: white; padding: 12px 16px; z-index: 800;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}
.sticky-cta-inner { display: flex; gap: 10px; }
.sticky-cta-inner .btn { flex: 1; justify-content: center; font-size: 14px; padding: 12px; }

/* WA float */
#wa-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 800;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s;
}
#wa-float:hover { transform: scale(1.1); }
#wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── Footer exactly matches index.html ── */
#footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 0; }
.footer-col h4 { color: white; font-size: 16px; margin-bottom: 20px; font-family: 'DM Sans',sans-serif; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 13px; transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #sticky-cta { display: block; }
  #wa-float { bottom: 90px; }
}
@media (max-width: 600px) {
  .fact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; }
}

/* ─── programs.html ─── */
/* ─── PAGE HERO ─────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: url(img/programe-bg2.png),linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 50%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.page-hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.page-hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.page-hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,109,181,0.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px; max-width: 720px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero > .container > .page-hero-inner > p {
  font-size: 18px; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 600px; margin-bottom: 36px;
}

/* Program filter tabs */
.prog-filter-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px;
}
.prog-filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease; text-decoration: none;
}
.prog-filter-btn:hover,
.prog-filter-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy-dark);
}

/* ─── PROGRAMS FEATURED GRID ─────────── */
.programs-page-section { padding: 100px 0; background: var(--white); }

.prog-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 56px;
}

/* Featured (MBBS) — full width */
.prog-card {
  border-radius: 24px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 280px;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(15,76,129,0.2); }
.prog-card.full-width { grid-column: 1 / -1; min-height: 340px; }

.prog-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 7s ease;
}
.prog-card:hover .prog-card-bg { transform: scale(1.04); }

.prog-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,40,0.92) 0%, rgba(5,15,40,0.45) 60%, rgba(5,15,40,0.1) 100%);
}
.prog-card-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 32px;
}
.prog-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold-light); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 14px;
  width: fit-content;
}
.prog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 12px;
}
.prog-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.72);
  line-height: 1.65; margin-bottom: 18px; max-width: 560px;
}
.prog-card-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.prog-card-pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}
.prog-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-dark);
  font-weight: 700; font-size: 14px; padding: 10px 20px;
  border-radius: 50px; transition: all 0.25s ease;
  width: fit-content;
}
.prog-card:hover .prog-card-cta { background: var(--gold-light); transform: translateX(4px); }

/* Gradient backgrounds per program */
.prog-bg-medicine  { background: url(img/mbbs.jpg),linear-gradient(135deg,#0A2040,#1A5080,#0D3560); }
.prog-bg-dentistry { background: url(img/dent.jpg),linear-gradient(135deg,#0A3020,#1A6040,#0D4530); }
.prog-bg-pharmacy  { background: url(img/phama.jpg),linear-gradient(135deg,#2A1A50,#5A3090,#3A2070); }
.prog-bg-nursing   { background: url(img/nurse.jpg),linear-gradient(135deg,#301010,#803030,#602020); }
.prog-bg-engineering { background: linear-gradient(135deg,#1A1A1A,#3A3A3A,#252525); }
.prog-bg-cs        { background: linear-gradient(135deg,#0A1A40,#1A3A80,#0D2560); }
.prog-bg-business  { background: linear-gradient(135deg,#251500,#6B3A00,#401E00); }
.prog-bg-arch      { background: linear-gradient(135deg,#1A0A30,#4A2A70,#301550); }
.prog-bg-law       { background: linear-gradient(135deg,#0A0A20,#2A2A5A,#151535); }
.prog-bg-ai        { background: linear-gradient(135deg,#001A20,#004A5A,#002A35); }

/* ─── ALL PROGRAMS FULL LIST ─────────── */
.all-programs-section { padding: 100px 0; background: var(--off-white); }

.all-prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.all-prog-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--gray-100);
  overflow: hidden; transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.all-prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,76,129,0.15);
}
.all-prog-header {
  padding: 28px 28px 20px;
  position: relative;
}
.all-prog-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.all-prog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--text); margin-bottom: 6px;
}
.all-prog-sub {
  font-size: 13px; font-weight: 600; margin-bottom: 12px;
}
.all-prog-desc {
  font-size: 13px; color: var(--gray-600); line-height: 1.7;
}
.all-prog-meta {
  padding: 16px 28px;
  border-top: 1px solid var(--gray-100);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.apm-item { display: flex; flex-direction: column; gap: 2px; }
.apm-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--gray-400); }
.apm-val { font-size: 14px; font-weight: 700; color: var(--navy); }
.all-prog-footer {
  padding: 16px 28px 24px;
  margin-top: auto;
}
.all-prog-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 12px;
  background: var(--off-white); border: 1px solid var(--gray-100);
  color: var(--navy); font-size: 13px; font-weight: 700;
  transition: all 0.25s ease; text-decoration: none;
}
.all-prog-cta:hover {
  background: var(--navy); color: white;
}
.all-prog-cta span { font-size: 16px; }

/* ─── ELIGIBILITY SECTION ────────────── */
.eligibility-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.eligibility-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.eligibility-inner { position: relative; z-index: 2; }
.eligibility-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.elig-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.elig-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}
.elig-item:hover { background: rgba(255,255,255,0.1); }
.elig-check {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
}
.elig-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px;
}
.elig-text p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; }

.req-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.req-card {
  padding: 20px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.req-card-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.req-card-icon { font-size: 20px; }
.req-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: white;
}
.req-items { display: flex; flex-direction: column; gap: 6px; }
.req-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65);
}
.req-item::before { content: '·'; color: var(--gold); font-size: 18px; line-height: 1; }

/* ─── COMPARISON TABLE ───────────────── */
.prog-compare-section { padding: 100px 0; background: white; }
.prog-compare-table {
  margin-top: 56px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-md);
}
.pct-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  background: var(--navy-dark); padding: 16px 24px;
}
.pct-head span {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.6px;
}
.pct-head span:first-child { color: rgba(255,255,255,0.4); }
.pct-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  padding: 16px 24px; align-items: center;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.pct-row:last-child { border-bottom: none; }
.pct-row:hover { background: var(--off-white); }
.pct-prog {
  display: flex; align-items: center; gap: 10px;
}
.pct-prog-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pct-prog-name { font-weight: 700; color: var(--text); font-size: 14px; }
.pct-prog-sub { font-size: 12px; color: var(--gray-400); }
.pct-cell { font-size: 13px; color: var(--gray-600); font-weight: 500; }
.pct-cell.highlight { color: var(--navy); font-weight: 700; }
.pct-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 50px;
}
.badge-hot { background: rgba(239,68,68,0.1); color: #DC2626; }
.badge-pop { background: rgba(15,76,129,0.1); color: var(--navy); }
.badge-new { background: rgba(245,166,35,0.15); color: var(--gold-dark); }

/* ─── FAQ SECTION ───────────────────── */
.prog-faq-section { padding: 100px 0; background: var(--off-white); }
.prog-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 48px;
}
.prog-faq-item {
  background: white; border-radius: 16px;
  border: 1px solid var(--gray-100); overflow: hidden;
}
.prog-faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 700; color: var(--text);
  transition: color 0.2s;
}
.prog-faq-q:hover { color: var(--navy); }
.prog-faq-item.open .prog-faq-q { color: var(--navy); }
.prog-faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 400;
  transition: all 0.3s ease; color: var(--gray-600);
}
.prog-faq-item.open .prog-faq-icon {
  background: var(--navy); color: white; transform: rotate(45deg);
}
.prog-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.prog-faq-item.open .prog-faq-a {
  max-height: 300px; padding: 0 24px 20px;
}
.prog-faq-a p { font-size: 14px; color: var(--gray-600); line-height: 1.75; }

/* ─── CTA SECTION ───────────────────── */
.prog-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg,#0A3561 0%,#1A5A9B 50%,#0F4C81 100%);
  position: relative; overflow: hidden; text-align: center;
}
.prog-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.prog-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.prog-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white; margin-bottom: 18px;
}
.prog-cta-inner h2 span { color: var(--gold); }
.prog-cta-inner p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 36px; }
.prog-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────── */
.footer { background: var(--gray-800); color: white; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s ease; cursor: pointer; color: white; text-decoration: none;
}
.social-btn:hover { background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.4); }
.footer-col h4 { font-family:'DM Sans',sans-serif; font-size:13px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:18px; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,0.6); margin-bottom:10px; transition:color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .prog-featured-grid { grid-template-columns: 1fr; }
  .prog-card.full-width { grid-column: 1; }
  .all-prog-grid { grid-template-columns: 1fr 1fr; }
  .eligibility-grid { grid-template-columns: 1fr; gap: 40px; }
  .prog-faq-grid { grid-template-columns: 1fr; }
  .pct-head, .pct-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .pct-head span:nth-child(5),
  .pct-head span:nth-child(6),
  .pct-row > *:nth-child(5),
  .pct-row > *:nth-child(6) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 0 70px; }
  .all-prog-grid { grid-template-columns: 1fr; }
  .prog-featured-grid { gap: 16px; }
  .prog-card { min-height: 240px; }
  .prog-card.full-width { min-height: 240px; }
  .prog-compare-table { overflow-x: auto; }
  .pct-head, .pct-row { grid-template-columns: 2fr 1fr 1fr; min-width: 500px; }
  .pct-head span:nth-child(4),
  .pct-head span:nth-child(5),
  .pct-head span:nth-child(6),
  .pct-row > *:nth-child(4),
  .pct-row > *:nth-child(5),
  .pct-row > *:nth-child(6) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── services.html ─── */
/* ─── PAGE HERO ─────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 50%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03;
}
.page-hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.page-hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.page-hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,109,181,0.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px; max-width: 720px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 600px; margin-bottom: 36px;
}
.hero-service-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.hero-service-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
}
.hero-service-pill .pill-icon { font-size: 15px; }

/* ─── STATS STRIP ────────────────────────── */
.svc-stats-strip {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 28px 0;
}
.svc-stats-inner {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.svc-stat { text-align: center; }
.svc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--navy-dark); line-height: 1;
}
.svc-stat-num span { color: var(--gold); }
.svc-stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-muted); text-transform: uppercase; margin-top: 4px;
}

/* ─── INTRO SECTION ─────────────────────── */
.svc-intro {
  padding: 80px 0 60px;
  background: #f9fafb;
}
.svc-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.svc-intro-text .section-tag { margin-bottom: 16px; }
.svc-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--navy-dark);
  line-height: 1.15; margin-bottom: 20px;
}
.svc-intro-text h2 span { color: var(--gold); }
.svc-intro-text p {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: 16px;
}
.svc-intro-checks { list-style: none; margin: 24px 0; }
.svc-intro-checks li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-muted); font-size: 15px; margin-bottom: 12px; line-height: 1.6;
}
.svc-intro-checks li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.svc-intro-visual {
  position: relative;
}
.svc-intro-card {
  background: var(--navy-dark);
  border-radius: 20px; padding: 36px;
  color: white;
}
.svc-intro-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; color: white;
}
.svc-intro-card-sub {
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 28px;
}
.svc-journey-steps { list-style: none; }
.svc-journey-step {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-journey-step:last-child { border-bottom: none; }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.step-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 1px; }

/* ─── SERVICES GRID ─────────────────────── */
.svc-main {
  padding: 80px 0;
  background: white;
}
.svc-main-heading {
  text-align: center; margin-bottom: 60px;
}
.svc-main-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--navy-dark); margin-bottom: 16px;
}
.svc-main-heading h2 span { color: var(--gold); }
.svc-main-heading p {
  font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.75;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  background: #f9fafb;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-card:hover {
  background: white;
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,40,100,0.10);
}
.svc-card:hover::before { opacity: 1; }

.svc-card.featured {
  background: var(--navy-dark);
  border-color: transparent;
  color: white;
  grid-column: span 1;
}
.svc-card.featured::before {
  opacity: 1;
}
.svc-card.featured:hover {
  background: #0d2a54;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,20,80,0.25);
}

.svc-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(245,166,35,0.25);
}
.svc-card.featured .svc-icon {
  background: rgba(245,166,35,0.15);
  box-shadow: none;
}

.svc-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy-dark); margin-bottom: 12px; line-height: 1.25;
}
.svc-card.featured .svc-card-title { color: white; }

.svc-card-desc {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px;
}
.svc-card.featured .svc-card-desc { color: rgba(255,255,255,0.65); }

.svc-card-perks { list-style: none; margin-bottom: 24px; }
.svc-card-perks li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.svc-card-perks li:last-child { border-bottom: none; }
.svc-card-perks li::before {
  content: '→';
  color: var(--gold); font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.svc-card.featured .svc-card-perks li {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.08);
}

.svc-card-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 50px; text-transform: uppercase;
  margin-top: auto;
}
.svc-card.featured .svc-card-badge {
  background: rgba(245,166,35,0.2);
}

/* ─── PROCESS TIMELINE ───────────────────── */
.svc-process {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 100%);
  position: relative; overflow: hidden;
}
.svc-process::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 50px 50px; opacity: 0.025;
}
.svc-process-heading {
  text-align: center; margin-bottom: 60px; position: relative; z-index: 2;
}
.svc-process-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: white; margin-bottom: 14px;
}
.svc-process-heading h2 span { color: var(--gold); }
.svc-process-heading p {
  font-size: 17px; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto;
}

.svc-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 2;
}
.svc-timeline::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245,166,35,0.2));
  z-index: 0;
}

.svc-tl-item {
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.svc-tl-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.svc-tl-label {
  font-weight: 700; color: white; font-size: 15px; margin-bottom: 8px;
}
.svc-tl-desc {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65;
}

/* ─── WHY US ─────────────────────────────── */
.svc-why {
  padding: 80px 0;
  background: #f9fafb;
}
.svc-why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.svc-why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--navy-dark); margin-bottom: 16px; line-height: 1.15;
}
.svc-why-text h2 span { color: var(--gold); }
.svc-why-text p {
  color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 28px;
}
.svc-why-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.svc-why-card {
  background: white;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 16px; padding: 22px 20px;
  transition: all 0.25s ease;
}
.svc-why-card:hover {
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 8px 24px rgba(0,40,100,0.08);
  transform: translateY(-2px);
}
.svc-why-card-icon { font-size: 28px; margin-bottom: 10px; }
.svc-why-card-title {
  font-weight: 700; font-size: 14px; color: var(--navy-dark); margin-bottom: 6px;
}
.svc-why-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── FAQ ────────────────────────────────── */
.svc-faq {
  padding: 80px 0;
  background: white;
}
.svc-faq-heading {
  text-align: center; margin-bottom: 50px;
}
.svc-faq-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--navy-dark); margin-bottom: 12px;
}
.svc-faq-heading h2 span { color: var(--gold); }
.svc-faq-list { max-width: 820px; margin: 0 auto; }
.svc-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.svc-faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--navy-dark); transition: color 0.2s ease;
}
.svc-faq-q:hover { color: var(--gold); }
.svc-faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: all 0.25s ease;
  color: var(--navy-dark);
}
.svc-faq-item.open .svc-faq-icon {
  background: var(--gold); border-color: var(--gold); color: var(--navy-dark);
  transform: rotate(45deg);
}
.svc-faq-a {
  display: none; padding: 0 0 22px;
}
.svc-faq-a p {
  color: var(--text-muted); font-size: 15px; line-height: 1.8;
}
.svc-faq-item.open .svc-faq-a { display: block; }

/* ─── CTA SECTION ───────────────────────── */
.svc-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1A3A6B 100%);
  text-align: center; position: relative; overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 50px 50px; opacity: 0.025;
}
.svc-cta-inner { position: relative; z-index: 2; }
.svc-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: white; margin-bottom: 16px;
}
.svc-cta h2 span { color: var(--gold); }
.svc-cta p {
  font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; line-height: 1.75;
}
.svc-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-timeline::before { display: none; }
  .svc-intro-grid,
  .svc-why-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-stats-inner { gap: 28px; }
  .svc-why-cards { grid-template-columns: 1fr; }
  .svc-timeline { grid-template-columns: 1fr 1fr; }
}

/* ─── study-in-georgia.html ─── */
/* ════════════════════════════════════════════
   CSS VARIABLES — matched to site theme
════════════════════════════════════════════ */
:root {
  --navy-dark: #0A2342;
  --navy:      #0F4C81;
  --navy-mid:  #1A3A6B;
  --gold:      #F5A623;
  --gold-light:#FFD580;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100:  #F1F5F9;
  --gray-300:  #CBD5E1;
  --gray-400:  #94A3B8;
  --gray-600:  #475569;
  --gray-800:  #1E293B;
  --green:     #22C55E;
  --section-radius: 0px;
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 100px; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.12; color: var(--navy-dark);
  margin-bottom: 18px;
}
h2.section-title span { color: var(--gold); }
h2.section-title-white { color: white; }
h2.section-title-white span { color: var(--gold-light); }
.section-lead {
  font-size: 17px; color: var(--gray-600); max-width: 620px; line-height: 1.8;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
}
.btn-primary:hover { background: #E8961A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-outline {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-navy {
  background: var(--navy); color: white;
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,76,129,0.3); }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(25,57,106,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  color: white; letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.wa-btn {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: white; padding: 9px 16px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
.wa-btn:hover { background: #1da851; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 150px 0 90px;
  background: url(img/studay-go-bg.png), linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.03;
}
.page-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,109,181,0.18) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900; color: white; line-height: 1.08;
  margin-bottom: 22px; max-width: 760px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero .subtitle {
  font-size: 18px; color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 600px; margin-bottom: 40px;
}
.hero-stats-row {
  display: flex; gap: 36px; flex-wrap: wrap;
}
.hero-stat-item { display: flex; align-items: center; gap: 12px; }
.hero-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.hero-stat-text { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 17px; font-weight: 700; color: white; line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* Section nav pills */
.section-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-300);
  position: sticky; top: 72px; z-index: 100;
}
.section-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-link {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  color: var(--gray-600); border-bottom: 3px solid transparent;
  white-space: nowrap; transition: all 0.2s; flex-shrink: 0;
}
.section-nav-link:hover { color: var(--navy); }
.section-nav-link.active { color: var(--navy); border-bottom-color: var(--gold); }
.section-nav-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gray-600); flex-shrink: 0;
}
.section-nav-link.active .section-nav-num { background: var(--gold); color: var(--navy-dark); }

/* ════════════════════════════════════════════
   SECTION 1 — EDUCATION SYSTEM
════════════════════════════════════════════ */
#education-system { padding: 100px 0; background: var(--white); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.edu-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.edu-card {
  background: var(--off-white); border: 1px solid var(--gray-300);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.edu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,76,129,0.1); border-color: var(--gold); }
.edu-card:hover::before { transform: scaleX(1); }
.edu-card-icon { font-size: 2rem; margin-bottom: 12px; }
.edu-card-title {
  font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px;
}
.edu-card-credits {
  font-size: 24px; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif;
  line-height: 1;
}
.edu-card-sub { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.edu-card-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-top: 10px; }
.edu-card.featured {
  grid-column: span 2; background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-color: rgba(245,166,35,0.2);
}
.edu-card.featured .edu-card-title { color: white; }
.edu-card.featured .edu-card-desc { color: rgba(255,255,255,0.65); }
.edu-card.featured::before { background: var(--gold-light); }

.info-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; background: var(--off-white);
  border-radius: 12px; border: 1px solid var(--gray-100);
  transition: border-color 0.2s;
}
.info-item:hover { border-color: var(--gold); }
.info-item-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(15,76,129,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 1px;
}
.info-item-body h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.info-item-body p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ════════════════════════════════════════════
   SECTION 2 — APPLICATION PROCEDURE
════════════════════════════════════════════ */
#application { padding: 100px 0; background: var(--navy-dark); position: relative; overflow: hidden; }
#application::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.025;
}
#application::after {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.app-header { position: relative; z-index: 2; margin-bottom: 60px; }
.app-header .section-lead { color: rgba(255,255,255,0.6); }

.timeline { position: relative; z-index: 2; }
.timeline-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.timeline-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px 22px; position: relative;
  transition: all 0.3s ease; overflow: hidden;
}
.timeline-step::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.timeline-step:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-3px); }
.timeline-step:hover::before { opacity: 1; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: rgba(245,166,35,0.15); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(245,166,35,0.15); color: var(--gold);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(245,166,35,0.25);
}
.app-cta-row {
  position: relative; z-index: 2;
  margin-top: 50px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}

/* ════════════════════════════════════════════
   SECTION 3 — LEARN GEORGIAN
════════════════════════════════════════════ */
#learn-georgian { padding: 100px 0; background: var(--off-white); }
.lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lang-content h2 { margin-bottom: 18px; }
.lang-reasons { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.lang-reason {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-300); align-items: flex-start;
}
.lang-reason:last-child { border-bottom: none; }
.lang-reason-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 36px;
}
.lang-reason-body h4 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; }
.lang-reason-body p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

.alphabet-showcase {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
}
.alphabet-showcase::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.alphabet-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 6px;
}
.alphabet-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.georgian-chars {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.geo-char {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white; transition: all 0.2s;
  cursor: default;
}
.geo-char:hover { background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.4); transform: scale(1.12); }
.phrasebook { margin-top: 8px; }
.phrase-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.phrase-item:last-child { border-bottom: none; }
.phrase-georgian { font-size: 18px; color: var(--gold-light); font-weight: 600; }
.phrase-english { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; }
.phrase-roman { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; }

.lang-tips { margin-top: 36px; }
.lang-tip-card {
  background: white; border: 1px solid var(--gray-300);
  border-radius: 14px; padding: 20px 22px; margin-bottom: 14px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: all 0.2s;
}
.lang-tip-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(15,76,129,0.08); }
.lang-tip-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.lang-tip-body h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.lang-tip-body p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ════════════════════════════════════════════
   SECTION 4 — PERMITS & VISAS
════════════════════════════════════════════ */
#permits-visas { padding: 100px 0; background: var(--white); }
.visa-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.visa-tabs { margin-top: 32px; }
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-300); margin-bottom: 32px;
  overflow-x: auto; scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 22px; font-size: 14px; font-weight: 600;
  color: var(--gray-400); border-bottom: 2px solid transparent; margin-bottom: -2px;
  cursor: pointer; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.visa-type-card {
  background: var(--off-white); border: 1px solid var(--gray-300);
  border-radius: 16px; padding: 28px; margin-bottom: 18px;
}
.visa-type-card h3 {
  font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.vtc-badge {
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  background: rgba(34,197,94,0.12); color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
}
.visa-detail-list { display: flex; flex-direction: column; gap: 8px; }
.vdl-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600); }
.vdl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}

.trp-steps { display: flex; flex-direction: column; gap: 0; }
.trp-step {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trp-step:last-child { border-bottom: none; }
.trp-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.trp-body h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.trp-body p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Sidebar */
.visa-sidebar { position: sticky; top: 160px; }
.visa-checklist {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 20px; padding: 32px; margin-bottom: 20px;
  color: white;
}
.vcl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 6px;
}
.vcl-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.vcl-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px;
}
.vcl-item:last-child { border-bottom: none; }
.vcl-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px; color: var(--green);
}

.visa-success-card {
  background: var(--off-white); border: 1px solid var(--gray-300);
  border-radius: 20px; padding: 28px; text-align: center;
}
.vsc-rate {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: var(--green); line-height: 1;
}
.vsc-label { font-size: 14px; font-weight: 600; color: var(--navy-dark); margin-top: 6px; margin-bottom: 16px; }
.vsc-sub { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #E8961A 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--navy-dark);
  line-height: 1.15; margin-bottom: 10px;
}
.cta-text p { font-size: 16px; color: rgba(10,35,66,0.7); max-width: 480px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-dark { background: var(--navy-dark); color: white; }
.btn-dark:hover { background: #071830; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,35,66,0.3); }
.btn-white { background: white; color: var(--navy-dark); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.5);
  padding: 40px 0; text-align: center; font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer a { color: var(--gold); }

/* ════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; opacity: 0; transform: translateY(16px);
  transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,166,35,0.5); }

/* ════════════════════════════════════════════
   FADE ANIMATIONS
════════════════════════════════════════════ */
.fade-up { opacity: 0; }
.fade-in { opacity: 0; }

/* ════════════════════════════════════════════
   MOBILE
════════════════════════════════════════════ */
#mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh;
  background: var(--navy-dark); z-index: 2000; padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 8px; transition: right 0.3s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,0.4); overflow-y: auto;
}
#mobile-menu.open { right: 0; }
#mobile-menu a { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .close-menu { position: absolute; top: 20px; right: 24px; font-size: 24px; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.menu-overlay.open { display: block; }

@media (max-width: 900px) {
  .edu-grid, .lang-grid, .visa-layout { grid-template-columns: 1fr; gap: 40px; }
  .visa-sidebar { position: static; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cta-inner { flex-direction: column; text-align: center; }
  .edu-visual { grid-template-columns: 1fr 1fr; }
  .edu-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .edu-visual { grid-template-columns: 1fr; }
  .edu-card.featured { grid-column: span 1; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 20px; }
}