    :root {
      --navy: #0B1C3F;
      --gold: #C9922A;
      --gold-light: #F0C060;
      --cream: #FDF8EF;
      --accent: #E85D26;
      --text: #1a1a2e;
      --muted: #6b7280;
      --white: #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ===== NAVBAR ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(11, 28, 63, 0.97);
      backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 70px;
      border-bottom: 2px solid var(--gold);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
    }

    .nav-logo span {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700;
      color: var(--white); letter-spacing: 0.5px;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.85); text-decoration: none;
      font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-cta {
      background: var(--gold); color: var(--navy);
      border: none; padding: 10px 22px; border-radius: 4px;
      font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px;
      cursor: pointer; text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      padding: 120px 5% 80px;
    }
    .hero::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,146,42,0.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(232,93,38,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-grid {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,146,42,0.15); border: 1px solid var(--gold);
      color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
    }
    .hero-badge::before { content: '★'; }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900; color: var(--white);
      line-height: 1.15; margin-bottom: 20px;
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      color: rgba(255,255,255,0.72); font-size: 1.05rem;
      line-height: 1.75; margin-bottom: 36px; max-width: 520px;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--navy);
      padding: 14px 32px; border-radius: 4px;
      font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.35); }
    .btn-outline {
      background: transparent; color: var(--white);
      padding: 14px 32px; border-radius: 4px;
      font-weight: 600; font-size: 0.95rem;
      border: 1.5px solid rgba(255,255,255,0.4); cursor: pointer;
      text-decoration: none; transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .hero-stats {
      display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
    }
    .stat { border-left: 2px solid var(--gold); padding-left: 16px; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); }
    .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }

    /* Hero card */
    .hero-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,146,42,0.3);
      border-radius: 16px; padding: 36px;
      backdrop-filter: blur(8px);
      position: relative; z-index: 1;
    }
    .hero-card h3 {
      font-family: 'Playfair Display', serif; font-size: 1.25rem;
      color: var(--gold-light); margin-bottom: 20px;
    }
    .free-demo {
      background: rgba(201,146,42,0.1); border: 1px dashed var(--gold);
      border-radius: 10px; padding: 20px; text-align: center; margin-bottom: 24px;
    }
    .free-demo .days { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); }
    .free-demo .days-label { color: var(--white); font-weight: 600; font-size: 1rem; }
    .free-demo .sub { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 4px; }
    .hero-card .feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .hero-card .feature-list li {
      color: rgba(255,255,255,0.8); font-size: 0.9rem;
      display: flex; align-items: center; gap: 10px;
    }
    .hero-card .feature-list li::before {
      content: '✓'; background: var(--gold); color: var(--navy);
      font-weight: 900; font-size: 0.7rem;
      width: 18px; height: 18px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hero-card .card-cta {
      display: block; width: 100%; margin-top: 24px;
      text-align: center; background: var(--accent);
      color: var(--white); border: none; padding: 14px;
      border-radius: 6px; font-weight: 700; font-size: 0.95rem;
      cursor: pointer; text-decoration: none; transition: all 0.2s;
    }
    .hero-card .card-cta:hover { background: #d04a1a; transform: translateY(-2px); }

    /* ===== SECTION BASE ===== */
    section { padding: 90px 5%; }
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900; color: var(--navy);
      line-height: 1.2; margin-bottom: 16px;
    }
    .section-subtitle { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 540px; }
    .section-head { margin-bottom: 56px; }

    /* ===== ABOUT ===== */
 .about { background: var(--white); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }

.about-img-box {
  border-radius: 16px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 30px solid rgba(11, 28, 63, 0.97);
  border-radius: 16px;
}

.about-img-box::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 180px; height: 180px;
  background: rgba(201,146,42,0.12);
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.floating-chip {
  position: absolute; background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.8rem; border-radius: 8px;
  padding: 10px 18px; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 2;
}

.chip-1 { bottom: 16px; left: 16px; }
.chip-2 { top: 16px; right: 16px; }

.about-text .section-subtitle { max-width: 100%; margin-bottom: 28px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.highlight-item {
  background: var(--cream); border-radius: 10px; padding: 20px;
  border-left: 3px solid var(--gold);
}
.highlight-item h4 { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.highlight-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

    /* ===== PROGRAMS ===== */
    .programs { background: var(--cream); }
    .programs-inner { max-width: 1200px; margin: 0 auto; }
    .programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .program-card {
      background: var(--white); border-radius: 14px;
      padding: 32px; border: 1px solid rgba(0,0,0,0.06);
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .program-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;
    }
    .program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .program-card:hover::before { transform: scaleX(1); }
    .program-icon {
      width: 52px; height: 52px; background: rgba(201,146,42,0.1);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 20px;
    }
    .program-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .program-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
    .program-tag {
      display: inline-block; background: rgba(201,146,42,0.1);
      color: var(--gold); font-size: 0.75rem; font-weight: 600;
      padding: 4px 12px; border-radius: 20px; letter-spacing: 0.3px;
    }

    /* ===== WHY US ===== */
    .why { background: var(--navy); color: var(--white); }
    .why-inner { max-width: 1200px; margin: 0 auto; }
    .why .section-title { color: var(--white); }
    .why .section-subtitle { color: rgba(255,255,255,0.6); }
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
    .why-item {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(201,146,42,0.2);
      border-radius: 14px; padding: 28px; text-align: center;
      transition: all 0.3s;
    }
    .why-item:hover { background: rgba(201,146,42,0.08); border-color: var(--gold); transform: translateY(-4px); }
    .why-icon { font-size: 2rem; margin-bottom: 16px; }
    .why-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold-light); margin-bottom: 8px; }
    .why-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

    /* ===== TESTIMONIALS ===== */
    .testimonials { background: var(--white); }
    .testimonials-inner { max-width: 1200px; margin: 0 auto; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testi-card {
      background: var(--cream); border-radius: 14px; padding: 30px;
      border: 1px solid rgba(0,0,0,0.06); position: relative;
    }
    .testi-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); opacity: 0.3; position: absolute; top: 10px; left: 20px; line-height: 1; }
    .testi-text { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); font-size: 1rem;
    }
    .testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
    .testi-role { font-size: 0.78rem; color: var(--muted); }
    .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

    /* ===== CONTACT / ENQUIRY ===== */
    .contact { background: var(--cream); }
    .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
    .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
    .contact-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
    .info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
    .info-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(201,146,42,0.12); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .info-item h4 { font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 3px; }
    .info-item p { font-size: 0.85rem; color: var(--muted); margin: 0; }
    .info-item a { color: var(--gold); text-decoration: none; font-weight: 600; }

    /* Enquiry Form */
    .enquiry-form {
      background: var(--white); border-radius: 16px;
      padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.06);
    }
    .enquiry-form h3 {
      font-family: 'Playfair Display', serif; font-size: 1.4rem;
      font-weight: 700; color: var(--navy); margin-bottom: 6px;
    }
    .enquiry-form .form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.3px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px 14px;
      border: 1.5px solid #e5e7eb; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text);
      background: var(--cream); transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; background: var(--navy); color: var(--white);
      border: none; padding: 15px; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
      font-weight: 700; letter-spacing: 0.5px; cursor: pointer;
      transition: all 0.2s; margin-top: 8px;
    }
    .form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 12px; }
    .success-msg {
      display: none; background: #ecfdf5; border: 1px solid #10b981;
      border-radius: 8px; padding: 16px; text-align: center;
      color: #065f46; font-weight: 600; font-size: 0.9rem; margin-top: 16px;
    }
    .error-msg {
      display: none; background: #fef2f2; border: 1px solid #ef4444;
      border-radius: 8px; padding: 16px; text-align: center;
      color: #991b1b; font-weight: 600; font-size: 0.9rem; margin-top: 16px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #070f22; color: rgba(255,255,255,0.6);
      padding: 56px 5% 32px;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand .nav-logo { margin-bottom: 14px; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 { color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--gold-light); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
    .footer-bottom p { font-size: 0.8rem; }
    .rating-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 8px 16px; }
    .rating-badge .stars { margin: 0; }
    .rating-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

    /* ===== FLOATING CALL ===== */
    .floating-call {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      background: var(--gold); color: var(--navy);
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; text-decoration: none;
      box-shadow: 0 8px 24px rgba(201,146,42,0.4);
      animation: pulse 2.5s ease infinite;
      transition: transform 0.2s;
    }
    .floating-call:hover { transform: scale(1.1); animation: none; }
    @keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(201,146,42,0.4); } 50% { box-shadow: 0 8px 40px rgba(201,146,42,0.7); } }

    /* ===== FADE IN ANIMATION ===== */
    .fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ===== DIVISIONS BANNER ===== */
    .divisions-banner {
      background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.08);
      padding: 0; display: flex; justify-content: center;
      margin-top: 70px;
    }
    .div-tab {
      flex: 1; max-width: 400px; padding: 18px 32px;
      text-align: center; cursor: pointer; text-decoration: none;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3px;
      transition: all 0.2s; border-bottom: 3px solid transparent;
    }
    .div-tab.tuition { color: var(--navy); border-color: var(--navy); background: rgba(11,28,63,0.05); }
    .div-tab.japanese { color: #b5000e; border-color: #b5000e; background: rgba(181,0,14,0.04); }
    .div-tab:hover { filter: brightness(0.92); }

    /* ===== JAPANESE SECTION ===== */
    .jp-section {
      background: #0d0d0d; color: var(--white);
      padding: 90px 5%; position: relative; overflow: hidden;
    }
    .jp-section::before {
      content: '日本語';
      position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
      font-size: 14rem; font-weight: 900; color: rgba(255,255,255,0.03);
      pointer-events: none; line-height: 1;
    }
    .jp-inner { max-width: 1200px; margin: 0 auto; }

    .jp-header {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px;
    }
    .jp-flag-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(181,0,14,0.15); border: 1px solid #b5000e;
      color: #ff6b6b; font-size: 0.85rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
    }
    .jp-section .section-title { color: var(--white); }
    .jp-section .section-title span { color: #ff6b6b; }
    .jp-section .section-subtitle { color: rgba(255,255,255,0.6); max-width: 100%; }

    .jp-credential-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(181,0,14,0.3);
      border-radius: 16px; padding: 36px; position: relative; overflow: hidden;
    }
    .jp-credential-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #b5000e, #ff6b6b);
    }
    .jp-credential-card .cred-icon img { max-width: 100%; margin-bottom: 16px; border-radius: 12px; align-items: center;}
    .jp-credential-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
    .jp-credential-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
    .cred-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .cred-tag {
      background: rgba(181,0,14,0.15); border: 1px solid rgba(181,0,14,0.4);
      color: #ff9999; font-size: 0.75rem; font-weight: 600;
      padding: 4px 12px; border-radius: 20px;
    }

    /* Japanese Courses Grid */
    .jp-courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
    .jp-course-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px; padding: 28px; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .jp-course-card:hover { background: rgba(181,0,14,0.08); border-color: rgba(181,0,14,0.4); transform: translateY(-4px); }
    .jp-level-badge {
      display: inline-block; background: #b5000e; color: var(--white);
      font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
      padding: 3px 10px; border-radius: 4px; margin-bottom: 14px;
    }
    .jp-course-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
    .jp-course-card .jp-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }
    .jp-course-meta { display: flex; flex-direction: column; gap: 6px; }
    .jp-meta-item { display: flex; justify-content: space-between; font-size: 0.8rem; }
    .jp-meta-item .label { color: rgba(255,255,255,0.4); }
    .jp-meta-item .val { color: rgba(255,255,255,0.85); font-weight: 600; }
    .jp-fee { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: #ff6b6b; margin-top: 12px; }
    .jp-fee span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.4); }

    /* JP Why strip */
    .jp-why-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
    .jp-why-item {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px; padding: 22px 16px; text-align: center;
    }
    .jp-why-item .icon { font-size: 1.6rem; margin-bottom: 10px; }
    .jp-why-item h5 { font-size: 0.82rem; font-weight: 700; color: #ff9999; margin-bottom: 4px; }
    .jp-why-item p { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

    /* JP Schedule */
    .jp-schedule {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px; padding: 28px; margin-top: 48px;
    }
    .jp-schedule h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }
    .schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .schedule-item { text-align: center; padding: 16px; background: rgba(181,0,14,0.08); border-radius: 10px; border: 1px solid rgba(181,0,14,0.2); }
    .schedule-item .time { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #ff6b6b; margin-bottom: 4px; }
    .schedule-item .batch-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 600; }
    .schedule-item .batch-desc { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

    .jp-cta-bar {
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(135deg, #b5000e 0%, #8b0000 100%);
      border-radius: 14px; padding: 32px 40px; margin-top: 48px; flex-wrap: wrap; gap: 20px;
    }
    .jp-cta-bar .cta-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 4px; }
    .jp-cta-bar .cta-text p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
    .btn-jp {
      background: var(--white); color: #b5000e;
      padding: 14px 32px; border-radius: 6px;
      font-weight: 800; font-size: 0.95rem;
      text-decoration: none; white-space: nowrap;
      transition: all 0.2s; border: none; cursor: pointer;
    }
    .btn-jp:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

    /* JP form tab in enquiry section */
    .enquiry-tabs { display: flex; gap: 0; margin-bottom: 24px; border: 1.5px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
    .eq-tab {
      flex: 1; padding: 12px; text-align: center; cursor: pointer;
      font-weight: 700; font-size: 0.85rem; transition: all 0.2s; border: none; background: transparent;
    }
    .eq-tab.active.tuition { background: var(--navy); color: var(--white); }
    .eq-tab.active.japanese { background: #b5000e; color: var(--white); }
    .eq-tab:not(.active) { color: var(--muted); background: var(--cream); }
    .eq-tab:not(.active):hover { background: rgba(0,0,0,0.04); }
    .form-panel { display: none; }
    .form-panel.active { display: block; }
  
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .programs-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 900px) {
      .jp-header { grid-template-columns: 1fr; }
      .jp-courses { grid-template-columns: 1fr 1fr; }
      .jp-why-strip { grid-template-columns: 1fr 1fr; }
      .schedule-grid { grid-template-columns: 1fr; }
      .jp-cta-bar { flex-direction: column; text-align: center; }
    }
    @media (max-width: 560px) {
      .jp-courses { grid-template-columns: 1fr; }
    }