:root {
    --navy: #0b1f3a;
    --navy-mid: #122848;
    --navy-light: #1a3a5c;
    --gold: #c8972a;
    --gold-light: #e4b84a;
    --gold-pale: #fdf6e3;
    --sky: #e8f4fc;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray: #6b7280;
    --dark-gray: #374151;
    --text: #1a1a2e;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* Shared header/footer styles live in css/style.css */
  /* Scroll reveal */
  /* Floating Contact */
  .floating-contact-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
  }
  .floating-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .floating-action-btn {
    width: 58px; height: 58px;
    border: none;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.26);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .floating-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.32);
  }
  .floating-action-btn.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
  .floating-action-btn.call { background: linear-gradient(135deg, #0b1f3a, #163656); }
  .whatsapp-chatbox {
    width: min(340px, calc(100vw - 28px));
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(15, 23, 42, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .whatsapp-chatbox.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .whatsapp-chatbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: var(--white);
  }
  .whatsapp-chatbox-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .whatsapp-chatbox-brand i {
    width: 42px; height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .whatsapp-chatbox-header strong { display: block; font-size: 0.98rem; }
  .whatsapp-chatbox-header span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.86); margin-top: 2px; }
  .whatsapp-chatbox-close {
    width: 36px; height: 36px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.16);
    color: var(--white);
    cursor: pointer;
  }
  .whatsapp-chatbox-body {
    padding: 18px;
    background: linear-gradient(rgba(248,247,244,0.95), rgba(248,247,244,0.95));
  }
  .whatsapp-chat-bubble {
    max-width: 88%;
    padding: 14px 16px;
    border-radius: 18px 18px 18px 6px;
    background: #ecfdf5;
    color: var(--dark-gray);
    font-size: 0.92rem;
    line-height: 1.55;
    box-shadow: 0 10px 18px rgba(18, 140, 126, 0.08);
  }
  .whatsapp-chatbox-compose {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--white);
  }
  .whatsapp-chatbox-compose textarea {
    flex: 1;
    min-height: 50px;
    max-height: 120px;
    resize: vertical;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    padding: 12px 14px;
    font: inherit;
    color: var(--dark-gray);
    outline: none;
  }
  .whatsapp-send-btn {
    width: 50px; height: 50px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    font-size: 1.15rem;
    cursor: pointer;
    flex-shrink: 0;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    background: #0b1f3a;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('../images/hero_home.png') center/cover no-repeat;
    opacity: 0.5;
    mix-blend-mode: luminosity;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.9) 0%, rgba(11,31,58,0.3) 50%, rgba(11,31,58,0.9) 100%);
    pointer-events: none;
  }
  /* Animated sky dots */
  .hero-stars {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(2px 2px at 60% 10%, rgba(200,151,42,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 35%, rgba(255,255,255,0.35) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 55% 85%, rgba(255,255,255,0.25) 0%, transparent 100%);
    opacity: 0.8;
  }
  /* Runway lines */
  .hero-runway {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, rgba(200,151,42,0.04) 100%);
    border-top: 1px solid rgba(200,151,42,0.15);
  }
  .hero-runway::before {
    content: '';
    position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 80px;
    background: linear-gradient(to bottom, rgba(200,151,42,0.5), transparent);
    box-shadow: -60px 0 0 rgba(200,151,42,0.3), 60px 0 0 rgba(200,151,42,0.3);
  }
  /* Big decorative plane */
  .hero-plane-deco {
    position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    font-size: clamp(180px, 22vw, 320px);
    opacity: 0.04;
    filter: blur(1px);
    animation: floatPlane 8s ease-in-out infinite;
    user-select: none;
  }
  @keyframes floatPlane {
    0%, 100% { transform: translateY(-50%) rotate(-5deg); }
    50% { transform: translateY(-53%) rotate(-3deg); }
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 120px 5vw 80px;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffffff; 
    /* border: 1px solid rgba(200,151,42,0.4); */
    color: var(--gold-light); padding: 6px 16px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900; line-height: 1.1;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-h1 em { font-style: normal; color: var(--gold-light); }
  .hero-sub {
    font-size: 1rem; color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px; margin-bottom: 24px;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-sub span { color: var(--gold-light); }
  .hero-desc {
    font-size: 1.02rem; color: rgba(255,255,255,0.65); line-height: 1.7;
    max-width: 520px; margin-bottom: 40px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; border-radius: 8px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
    letter-spacing: 0.3px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,151,42,0.4); }
  .btn-secondary {
    background: white;
    color: #0b1f3a;
    padding: 14px 32px; 
    border-radius: 8px; 
    border: 1.5px solid rgba(255,255,255,0.4);
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

  /* Hero form card */
  .hero-form-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    animation: fadeUp 0.8s 0.5s ease both;
  }
  .hero-form-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem; color: var(--white);
    margin-bottom: 6px; font-weight: 700;
  }
  .hero-form-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
  .form-group { margin-bottom: 14px; }
  .form-group input, .form-group select {
    width: 100%; padding: 11px 14px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; color: var(--white);
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input::placeholder { color: rgba(255,255,255,0.4); }
  .form-group input:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group select option { background: var(--navy); color: var(--white); }
  .form-submit {
    width: 100%; padding: 13px; background: var(--gold); color: var(--navy);
    border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; font-family: 'Inter', sans-serif;
    transition: all 0.2s; letter-spacing: 0.3px;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
  .form-trust { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
  .form-trust span { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--gold);
    padding: 0;
  }
  .stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 0 5vw;
  }
  .stat-item {
    padding: 28px 20px; text-align: center;
    border-right: 1px solid rgba(11,31,58,0.2);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Outfit', sans-serif; font-weight: 800;
    font-size: 2.6rem; color: var(--navy);
    line-height: 1; display: block;
  }
  .stat-label { font-size: 0.8rem; color: var(--navy); opacity: 0.75; font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

  /* ── SECTION BASE ── */
  section { padding: 90px 5vw; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px; display: block;
  }
  .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
    color: var(--navy); line-height: 1.2; margin-bottom: 16px;
  }
  .section-title em { font-style: normal; color: var(--gold); }
  .section-desc { font-size: 1.02rem; color: var(--gray); line-height: 1.7; max-width: 600px; }

  /* ── WHO WE ARE ── */
  .who-we-are { background: var(--off-white); }
  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-top: 50px;
  }
  .who-visual {
    position: relative;
  }
  .who-visual-main {
    background: linear-gradient(to right, rgba(11,31,58,0.95), rgba(11,31,58,0.7)), url('../images/student_classroom.png') center/cover no-repeat;
    border-radius: 16px; padding: 40px;
    color: white; position: relative; overflow: hidden;
    min-height: 480px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  .who-visual-main::before {
    display: none;
  }
  .who-def-label {
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); font-weight: 600; margin-bottom: 12px; display: block;
  }
  .who-def-q {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 16px;
  }
  .who-def-a { font-size: 0.93rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
  .who-badge-strip {
    display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap;
  }
  .who-badge {
    background: rgba(200,151,42,0.2); border: 1px solid rgba(200,151,42,0.35);
    color: var(--gold-light); padding: 5px 12px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600;
  }
  .who-float-card {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold); border-radius: 12px; padding: 18px 22px;
    box-shadow: 0 20px 60px rgba(200,151,42,0.4);
  }
  .who-float-card .num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--navy); line-height: 1; }
  .who-float-card .lbl { font-size: 0.72rem; color: var(--navy); opacity: 0.8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .who-text h3 {
    font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 900;
    color: var(--navy); margin-bottom: 16px; line-height: 1.2;
  }
  .who-text p { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
  .who-highlights { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .who-highlights li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--dark-gray); }
  .who-highlights li::before { content: '✦'; color: var(--gold); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }

  /* ── PROGRAMS ── */
  .programs { background: var(--white); }
  .programs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px;
  }
  .program-card {
    border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; cursor: pointer;
    background: var(--white);
    display: flex; flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  }
  .program-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2;
  }
  .program-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); border-color: transparent; }
  .program-card:hover::before { transform: scaleX(1); }
  .program-image {
    width: 100%; height: 180px; overflow: hidden; flex-shrink: 0;
    position: relative;
  }
  .program-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .program-card:hover .program-image img { transform: scale(1.08); }
  .program-content {
    padding: 30px 24px; flex-grow: 1; display: flex; flex-direction: column;
  }
  .program-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; font-family: 'Outfit', sans-serif; line-height: 1.3; }
  .program-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; margin-bottom: 0; }

  /* ── JOURNEY ── */
  .journey { background: var(--navy); position: relative; overflow: hidden; }
  .journey::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,151,42,0.06) 0%, transparent 70%);
  }
  .journey .section-title { color: var(--white); }
  .journey .section-desc { color: rgba(255,255,255,0.6); }
  .journey-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px;
    position: relative;
  }
  .journey-steps::before {
    content: '';
    position: absolute; top: 38px; left: 10%; right: 10%;
    height: 1px; background: rgba(200,151,42,0.3);
    z-index: 0;
  }
  .journey-step { position: relative; z-index: 1; text-align: center; padding: 0 16px; }
  .step-circle {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--navy);
    box-shadow: 0 0 35px rgba(200,151,42,0.35);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .journey-step:hover .step-circle { transform: scale(1.08); box-shadow: 0 0 45px rgba(200,151,42,0.6); }
  .step-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .step-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

  /* ── WHY CHOOSE ── */
  .why-choose { background: var(--off-white); }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px;
  }
  .why-card {
    background: var(--white); border-radius: 20px; padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; z-index: 1;
  }
  .why-card-media {
    height: 190px;
    margin: -40px -32px 24px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #dbe7f3;
  }
  .why-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
  }
  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(11,31,58,0.08);
    border-color: rgba(200,151,42,0.2);
  }
  .why-card-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, var(--sky) 0%, #f1f8fc 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
  }
  .why-card:hover .why-card-icon {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(200,151,42,0.15) 0%, rgba(200,151,42,0.05) 100%);
  }
  .why-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; font-family: 'Outfit', sans-serif; line-height: 1.3; }
  .why-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

  /* ── USA SPOTLIGHT ── */
  .usa-spotlight { background: var(--white); }
  .usa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-top: 50px; }
  .usa-visual {
    background: linear-gradient(135deg, rgba(11,31,58,0.95) 0%, rgba(26,58,92,0.75) 100%), url('../images/hero_training.png') center/cover no-repeat;
    border-radius: 20px; padding: 48px 40px; position: relative; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  }
  .usa-visual::after {
    display: none;
  }
  .usa-location {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,151,42,0.2); border: 1px solid rgba(200,151,42,0.35);
    color: var(--gold-light); padding: 6px 14px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px;
  }
  .usa-visual h3 {
    font-family: 'Outfit', sans-serif; font-size: 1.6rem;
    color: var(--white); font-weight: 900; line-height: 1.2; margin-bottom: 20px;
  }
  .usa-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .usa-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
  .usa-checklist li::before { content: '✓'; color: var(--gold-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .usa-address {
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6;
  }
  .usa-text h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--navy); font-weight: 900; margin-bottom: 16px; }
  .usa-text p { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
  .usa-programs { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .usa-program-tag {
    display: flex; align-items: center; gap: 14px;
    background: var(--sky); border-radius: 10px; padding: 14px 18px;
  }
  .usa-program-tag .tag-abbr { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--gold); min-width: 70px; }
  .usa-program-tag .tag-name { font-size: 0.83rem; color: var(--navy); font-weight: 600; }
  .usa-program-tag .tag-desc { font-size: 0.78rem; color: var(--gray); }

  /* ── ACCOMMODATION ── */
  .accommodation { background: var(--navy); }
  .accommodation .section-title { color: var(--white); }
  .accommodation .section-desc { color: rgba(255,255,255,0.6); }
  .accom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
  .accom-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 32px 28px;
  }
  .accom-card-media {
    height: 210px;
    margin: -32px -28px 24px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: rgba(255,255,255,0.08);
  }
  .accom-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    opacity: 0.9;
  }
  .accom-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
  .accom-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .accom-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
  .accom-list li::before { content: '•'; color: var(--gold); }

  /* Testimonials */
  .testimonials { background: var(--off-white); }
  .testimonials-note { font-size: 0.8rem; color: #e53e3e; font-style: italic; margin-bottom: 12px; }
  .testimonials-slider {
    position: relative;
    margin-top: 50px;
    padding: 0 72px;
    overflow: hidden;
    isolation: isolate;
  }
  .testimonials-track {
    align-items: stretch;
  }
  .testimonials-slider .swiper-slide { height: auto; display: flex; }
  .testimonial-card {
    background: var(--white); border-radius: 14px; padding: 32px 28px;
    border: 1px solid #e5e7eb; position: relative;
    height: 100%;
  }
  .testimonial-card::before {
    content: '\201C';
    font-family: 'Outfit', sans-serif; font-size: 5rem;
    color: var(--gold); opacity: 0.2;
    position: absolute; top: 8px; left: 20px; line-height: 1;
  }
  .stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .stars span { color: var(--gold); font-size: 0.9rem; }
  .testimonial-text { font-size: 0.93rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
  .testimonial-detail { font-size: 0.8rem; color: var(--gray); margin-top: 3px; }
  .testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(11,31,58,0.12);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 10px 25px rgba(11,31,58,0.08);
  }
  .testimonial-prev { left: 0; }
  .testimonial-next { right: 0; }
  .testimonial-nav:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(calc(-50% - 1px));
  }
  .testimonial-nav:disabled,
  .testimonial-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%);
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    position: static;
  }
  .testimonial-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(11,31,58,0.18);
    opacity: 1;
    transition: width 0.25s ease, background 0.25s ease;
  }
  .testimonial-dots .swiper-pagination-bullet-active {
    width: 30px;
    background: var(--gold);
  }

  /* ── CAREER TEASER ── */
  .careers { background: var(--white); }
  .careers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
  .careers-col {
    background: var(--off-white); border-radius: 14px; padding: 32px 28px;
    border: 1px solid #e5e7eb;
  }
  .careers-col h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; font-family: 'Outfit', sans-serif; }
  .career-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .career-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--dark-gray); }
  .career-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
  .salary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e5e7eb; }
  .salary-row:last-child { border-bottom: none; }
  .salary-role { font-size: 0.88rem; color: var(--dark-gray); font-weight: 500; }
  .salary-amount { font-size: 0.88rem; color: var(--navy); font-weight: 700; }

  /* ── CTA BLOCK ── */
  .cta-block {
    background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(26,58,92,0.92) 100%), url('../images/student_cockpit.png') center/cover fixed no-repeat;
    padding: 100px 5vw;
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-block::before {
    display: none;
  }
  .cta-block .section-label { text-align: center; display: block; }
  .cta-block-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
    color: var(--white); margin-bottom: 16px; line-height: 1.15;
  }
  .cta-block-title em { font-style: normal; color: var(--gold-light); }
  .cta-block-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.65);
    line-height: 1.7; max-width: 560px; margin: 0 auto 36px;
  }
  .cta-trust-strip {
    display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
    margin-top: 28px;
  }
  .cta-trust-strip span { font-size: 0.83rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
  .cta-trust-strip span::before { content: '✓'; color: var(--gold-light); }

  /* ── FAQ ── */
  .faq { background: var(--off-white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 50px; align-items: start; }
  .faq-item {
    background: var(--white); border-radius: 12px; padding: 24px 26px;
    border: 1px solid #e5e7eb; cursor: pointer; transition: all 0.3s; align-self: start;
  }
  .faq-item:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
  .faq-q {
    font-size: 0.95rem; font-weight: 700; color: var(--navy);
    display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  }
  .faq-toggle { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-top: 12px; display: none; }
  .faq-item.open .faq-a { display: block; }

  /* ── FOOTER ── */
  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Responsive basics */
  @media (max-width: 1100px) {
    .hero-content,
    .who-grid,
    .usa-grid {
      gap: 40px;
    }
    .hero-content {
      grid-template-columns: minmax(0, 1fr) 380px;
    }
    .programs-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .journey-steps {
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .journey-steps::before {
      display: none;
    }
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 900px) {
    .hero {
      min-height: auto;
    }
    .hero-plane-deco {
      right: -60px;
      top: auto;
      bottom: 24px;
      transform: none;
      font-size: clamp(120px, 28vw, 180px);
    }
    .hero-content {
      grid-template-columns: 1fr;
      padding: 120px 20px 72px;
    }
    .hero-left,
    .hero-right {
      width: 100%;
    }
    .hero-form-card {
      max-width: 100%;
    }
    .stats-inner {
      grid-template-columns: repeat(2, 1fr);
    }
    .who-grid,
    .usa-grid,
    .accom-grid,
    .careers-grid,
    .faq-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .programs-grid,
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .journey-steps {
      grid-template-columns: repeat(2, 1fr);
    }
    .cta-block {
      background-attachment: scroll;
      padding: 84px 20px;
    }
    .testimonials-slider { padding: 0 56px; }
    .testimonial-nav {
      width: 42px;
      height: 42px;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: 72px 20px;
    }
    .hero-content {
      padding: 112px 20px 64px;
      gap: 28px;
    }
    .hero-h1 {
      font-size: 2.4rem;
    }
    .hero-sub,
    .hero-desc,
    .section-desc,
    .usa-text p,
    .who-text p {
      font-size: 0.98rem;
    }
    .hero-btns {
      flex-direction: column;
      align-items: stretch;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
      justify-content: center;
    }
    .hero-form-card {
      padding: 24px 20px;
    }
    .stats-inner {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }
    .stat-item {
      border-right: none;
      border-bottom: 1px solid rgba(11,31,58,0.12);
    }
    .stat-item:last-child {
      border-bottom: none;
    }
    .who-visual-main,
    .usa-visual {
      min-height: auto;
      padding: 32px 24px;
    }
    .who-float-card {
      position: static;
      margin-top: 18px;
      display: inline-block;
    }
    .programs-grid,
    .why-grid {
      grid-template-columns: 1fr;
    }
    .program-content,
    .why-card,
    .accom-card,
    .careers-col,
    .testimonial-card,
    .faq-item {
      padding-left: 22px;
      padding-right: 22px;
    }
    .why-card-media {
      height: 180px;
      margin-left: -22px;
      margin-right: -22px;
    }
    .accom-card-media {
      height: 190px;
      margin-left: -22px;
      margin-right: -22px;
    }
    .journey-steps {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .journey-step {
      text-align: left;
      padding: 24px;
      border: 1px solid rgba(200,151,42,0.18);
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
    }
    .step-circle {
      margin: 0 0 16px;
      width: 64px;
      height: 64px;
      font-size: 1.35rem;
    }
    .testimonials-slider {
      padding: 0 20px;
      margin-top: 36px;
    }
    .testimonial-nav {
      display: none;
    }
    .cta-block-title {
      font-size: 2rem;
    }
    .cta-block-desc {
      font-size: 0.98rem;
    }
  }

  @media (max-width: 640px) {
    .floating-contact-stack {
      right: 14px;
      bottom: 14px;
    }
    .floating-action-btn {
      width: 52px;
      height: 52px;
      border-radius: 16px;
    }
    .whatsapp-chatbox {
      width: min(320px, calc(100vw - 18px));
    }
    .hero-content {
      padding: 104px 16px 56px;
    }
    .hero-badge {
      font-size: 0.72rem;
      letter-spacing: 1.1px;
    }
    .hero-h1 {
      font-size: 2rem;
    }
    .hero-sub {
      line-height: 1.7;
    }
    .hero-plane-deco,
    .hero-runway {
      display: none;
    }
    section {
      padding: 64px 16px;
    }
    .section-title {
      font-size: 1.85rem;
    }
    .section-desc {
      font-size: 0.94rem;
    }
    .program-image {
      height: 160px;
    }
    .usa-program-tag {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .cta-trust-strip {
      gap: 14px;
      justify-content: flex-start;
    }
    .faq-item {
      padding: 20px 18px;
    }
    .testimonials-slider { padding: 0 16px; }
  }
