:root {
    --red: #C8102E;
    --red-dark: #9B0B22;
    --red-light: #F5E6E9;
    --white: #FFFFFF;
    --off-white: #FAF8F8;
    --gray-100: #F4F1F1;
    --gray-200: #E8E2E2;
    --gray-500: #9E8F8F;
    --gray-700: #4A3D3D;
    --gray-900: #1C1010;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(200,16,46,0.08);
    --shadow-md: 0 8px 32px rgba(200,16,46,0.12);
    --shadow-lg: 0 24px 64px rgba(200,16,46,0.16);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--red);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 20px rgba(200,16,46,0.1);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo-icon {
    width: 44px; height: 44px; background: var(--red);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900; color: white; font-family: var(--font-display);
    flex-shrink: 0;
  }
  .nav-logo-text { line-height: 1.2; }
  .nav-logo-text span { display: block; }
  .nav-logo-text .name {
    font-family: var(--font-display); font-size: 15px;
    font-weight: 700; color: var(--red);
  }
  .nav-logo-text .sub {
    font-size: 11px; color: var(--gray-500); font-weight: 500; letter-spacing: 0.05em;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--gray-700); font-size: 14px;
    font-weight: 500; transition: color .2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--red); transform: scaleX(0);
    transition: transform .2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--red); color: white; padding: 10px 22px;
    border-radius: 6px; text-decoration: none; font-size: 13px;
    font-weight: 600; letter-spacing: 0.03em; transition: background .2s, transform .2s;
  }
  .nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--gray-700); transition: .3s; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background:
      linear-gradient(135deg, rgba(28,16,16,0.78) 0%, rgba(155,11,34,0.65) 60%, rgba(200,16,46,0.5) 100%),
      url('https://images.unsplash.com/photo-1631549916768-4119b2e5f926?w=1600&q=80') center/cover no-repeat;
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,16,46,0.3); border: 1px solid rgba(200,16,46,0.5);
    color: #ffc0c0; padding: 6px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #ff6b6b; animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }
  .hero-title {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
    font-weight: 900; color: white; line-height: 1.1; margin-bottom: 20px;
  }
  .hero-title em { color: #FF7A8A; font-style: normal; }
  .hero-desc {
    font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7;
    max-width: 520px; margin-bottom: 36px; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--red); color: white;
    padding: 14px 32px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #e0122f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.4); }
  .btn-outline {
    background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 14px 32px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

  /* Enquiry Form */
  .enquiry-form {
    background: white; border-radius: 16px;
    padding: 36px 32px; box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    animation: slideUp .6s ease both; animation-delay: .3s;
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .enquiry-form h3 {
    font-family: var(--font-display); font-size: 22px; color: var(--red);
    margin-bottom: 6px; font-weight: 700;
  }
  .enquiry-form p { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; letter-spacing: 0.04em; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
    border-radius: 8px; font-family: var(--font-body); font-size: 14px;
    color: var(--gray-900); background: var(--off-white);
    transition: border-color .2s, box-shadow .2s; outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
    background: white;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn-submit {
    width: 100%; background: var(--red); color: white;
    border: none; padding: 14px; border-radius: 8px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all .2s; margin-top: 8px;
  }
  .btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ─── SECTIONS BASE ─── */
  section { padding: 90px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: inline-block;
    background: var(--red-light); color: var(--red);
    padding: 5px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900; color: var(--gray-900); line-height: 1.15; margin-bottom: 16px;
  }
  .section-title span { color: var(--red); }
  .section-desc {
    font-size: 16px; color: var(--gray-500); line-height: 1.8; max-width: 580px;
  }
  .section-header { margin-bottom: 56px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-desc { margin: 0 auto; }

  /* ─── ABOUT ─── */
  #about { background: var(--off-white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .about-img-wrap { position: relative; }
  .about-img-main {
    width: 100%; border-radius: 16px; object-fit: cover; height: 460px;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--gray-200) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--red); color: white;
    padding: 20px 24px; border-radius: 12px;
    text-align: center; box-shadow: var(--shadow-lg);
  }
  .about-badge .num {
    font-family: var(--font-display); font-size: 36px; font-weight: 900; display: block;
  }
  .about-badge .lbl { font-size: 12px; opacity: 0.85; font-weight: 500; }
  .about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
  .about-point {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .about-point-icon {
    width: 40px; height: 40px; background: var(--red-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 18px; flex-shrink: 0;
  }
  .about-point h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
  .about-point p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

  /* ─── STATS ─── */
  #stats { background: var(--red); padding: 70px 5%; }
  .stats-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  }
  .stat-card {
    text-align: center; padding: 40px 20px;
    background: rgba(255,255,255,0.07);
    transition: background .3s;
  }
  .stat-card:first-child { border-radius: 16px 0 0 16px; }
  .stat-card:last-child { border-radius: 0 16px 16px 0; }
  .stat-card:hover { background: rgba(255,255,255,0.14); }
  .stat-num {
    font-family: var(--font-display); font-size: 52px; font-weight: 900;
    color: white; line-height: 1; margin-bottom: 8px;
  }
  .stat-num sup { font-size: 26px; }
  .stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }
  .stat-icon { font-size: 28px; margin-bottom: 12px; opacity: 0.7; }

  /* ─── COURSES ─── */
  #courses { background: white; }
  .courses-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  }
  .course-card {
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: all .3s; position: relative;
  }
  .course-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .course-img {
    height: 200px; overflow: hidden; position: relative;
  }
  .course-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
  }
  .course-card:hover .course-img img { transform: scale(1.05); }
  .course-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--red); color: white;
    padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  }
  .course-duration {
    position: absolute; top: 16px; right: 16px;
    background: rgba(0,0,0,0.6); color: white;
    padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 500; backdrop-filter: blur(4px);
  }
  .course-body { padding: 24px 28px 28px; }
  .course-body h3 {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    margin-bottom: 10px; color: var(--gray-900);
  }
  .course-body p {
    font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px;
  }
  .course-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--red); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: gap .2s;
  }
  .course-link:hover { gap: 10px; }

  /* ─── WHY CHOOSE US ─── */
  #why { background: var(--gray-100); }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .why-list { display: flex; flex-direction: column; gap: 20px; }
  .why-item {
    display: flex; gap: 16px;
    background: white; padding: 20px 24px; border-radius: 12px;
    border-left: 4px solid var(--red);
    box-shadow: var(--shadow-sm); transition: box-shadow .2s;
  }
  .why-item:hover { box-shadow: var(--shadow-md); }
  .why-icon { font-size: 28px; flex-shrink: 0; }
  .why-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
  .why-item p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
  .why-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .why-visual-card {
    background: white; border-radius: 12px; padding: 28px 20px;
    text-align: center; box-shadow: var(--shadow-sm);
    transition: all .2s;
  }
  .why-visual-card:hover { background: var(--red); color: white; transform: scale(1.02); }
  .why-visual-card:hover .wvc-icon, .why-visual-card:hover .wvc-num { color: white; }
  .why-visual-card:hover .wvc-label { color: rgba(255,255,255,0.8); }
  .wvc-icon { font-size: 32px; margin-bottom: 12px; }
  .wvc-num {
    font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--red);
    margin-bottom: 4px;
  }
  .wvc-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }

  /* ─── FACILITIES ─── */
  #facilities { background: white; }
  .facilities-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .facility-card {
    border-radius: 14px; overflow: hidden; position: relative;
    height: 260px; cursor: pointer;
  }
  .facility-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
  }
  .facility-card:hover img { transform: scale(1.08); }
  .facility-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(155,11,34,0.9) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
  }
  .facility-overlay h4 { color: white; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
  .facility-overlay p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.5; }
  .facility-card:first-child { grid-column: span 2; }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--red-light); }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testi-card {
    background: white; border-radius: 14px; padding: 28px;
    box-shadow: var(--shadow-sm); transition: all .3s;
    position: relative;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .testi-quote {
    font-size: 40px; color: var(--red); line-height: 0.8; margin-bottom: 12px;
    font-family: var(--font-display);
  }
  .testi-text {
    font-size: 14px; color: var(--gray-700); line-height: 1.8;
    margin-bottom: 20px; font-style: italic;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 16px; flex-shrink: 0;
  }
  .testi-name { font-size: 14px; font-weight: 600; }
  .testi-info { font-size: 12px; color: var(--gray-500); }
  .stars { color: #F59E0B; font-size: 13px; margin-bottom: 4px; }

  /* ─── LIFE @ ─── */
  #life .section-title { color: var(--gray-900); }
  #life .section-desc { color: rgba(255,255,255,0.6); }
  #life .section-label { background: rgba(200,16,46,0.2); color: #ff8c9c; }
  .life-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 12px;
  }
  .life-item {
    border-radius: 12px; overflow: hidden; position: relative;
  }
  .life-item img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
    filter: brightness(0.85);
  }
  .life-item:hover img { transform: scale(1.06); filter: brightness(1); }
  .life-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 100%; }
  /* .life-item:nth-child(5) { grid-column: span 2; } */
  .life-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent);
    padding: 20px 16px 12px;
    color: white; font-size: 12px; font-weight: 600;
    opacity: 0; transition: opacity .3s;
  }
  .life-item:hover .life-caption { opacity: 1; }

  /* ─── CTA ─── */
  #cta {
    background:
      linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #e8394f 100%);
    padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
  }
  .cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
  #cta .section-label { background: rgba(255,255,255,0.15); color: white; }
  #cta .section-title { color: white; }
  #cta .section-desc { color: rgba(255,255,255,0.8); margin: 0 auto 40px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white; color: var(--red);
    padding: 16px 36px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .btn-ghost {
    background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 16px 36px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

  /* ─── FOOTER ─── */
  footer {
    background:white; border-top:1px solid var(--red-light);
    padding:64px 60px 0;
  }
  .footer-inner {
    max-width:1200px; margin:0 auto;
    display:grid; grid-template-columns:1.7fr 1fr 1fr 1.1fr;
    gap:44px; padding-bottom:52px;
    border-bottom:1px solid var(--red);
  }
  .footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
  .footer-logo-icon {
    width:42px; height:42px; border-radius:11px;
    background: #fff;
    display:flex; align-items:center; justify-content:center;
    font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:white;
    flex-shrink:0;
  }
  .footer-logo-text strong {
    display:block; font-family:'Playfair Display',serif;
    font-size:15px; font-weight:600; color:var(--green-900);
  }
  .footer-logo-text span { font-size:10px; color:var(--text-light); letter-spacing:0.08em; text-transform:uppercase; }
  .footer-brand-desc { font-size:13px; color:var(--text-mid); line-height:1.78; margin-bottom:20px; }
  .footer-socials { display:flex; gap:8px; margin-bottom:20px; }
  .social-btn {
    width:34px; height:34px; border-radius:9px;
    background:var(--red-light); border:1px solid var(--red);
    display:flex; align-items:center; justify-content:center;
    font-size:14px; color:var(--red); cursor:pointer; transition:all 0.2s; text-decoration:none;
  }
  .social-btn:hover { background:var(--red); color:white; border-color:var(--red-light); }
  .footer-accred-row { display:flex; gap:7px; flex-wrap:wrap; }
  .footer-accred-pill {
    background:var(--green-50); border:1px solid var(--green-100);
    border-radius:20px; padding:4px 11px;
    font-size:11px; color:var(--green-700); font-weight:500;
  }
  .footer-col h5 {
    font-size:11px; font-weight:700; color:var(--green-900);
    text-transform:uppercase; letter-spacing:1.5px; margin-bottom:18px;
  }
  .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
  .footer-col ul li a {
    text-decoration:none; font-size:13px; color:var(--text-mid);
    transition:color 0.2s; display:flex; align-items:center; gap:6px;
  }
  .footer-col ul li a::before { content:'›'; color:var(--green-500); font-size:14px; }
  .footer-col ul li a:hover { color:var(--green-700); }
  .footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:15px; }
  .footer-contact-item:last-child { margin-bottom:0; }
  .fci-icon {
    width:30px; height:30px; border-radius:8px;
    background:var(--red-light); border:1px solid var(--red);
    display:flex; align-items:center; justify-content:center;
    font-size:13px; color:var(--red); flex-shrink:0; margin-top:1px;
  }
  .fci-text { font-size:13px; color:var(--text-mid); line-height:1.58; }
  .fci-text strong { display:block; color:var(--text-dark); font-size:12px; margin-bottom:2px; }
  .footer-bottom {
    max-width:1200px; margin:0 auto;
    padding:22px 0;
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:12px;
  }
  .footer-bottom p { font-size:12px; color:var(--text-light); }
  .footer-bottom-links { display:flex; gap:18px; }
  .footer-bottom-links a {
    font-size:12px; color:var(--text-light); text-decoration:none; transition:color 0.2s;
  }
  .footer-bottom-links a:hover { color:var(--green-600); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .enquiry-form { max-width: 500px; }
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { bottom: 16px; right: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:first-child, .stat-card:last-child { border-radius: 0; }
    .stat-card:nth-child(1) { border-radius: 16px 0 0 0; }
    .stat-card:nth-child(2) { border-radius: 0 16px 0 0; }
    .stat-card:nth-child(3) { border-radius: 0 0 0 16px; }
    .stat-card:nth-child(4) { border-radius: 0 0 16px 0; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu {
      display: none; position: fixed; top: 70px; left: 0; right: 0;
      background: white; padding: 20px; border-bottom: 2px solid var(--red);
      z-index: 99;
    }
    .mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
    .mobile-menu a {
      color: var(--gray-700); text-decoration: none; font-size: 15px;
      font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--gray-100);
    }
    .courses-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .facility-card:first-child { grid-column: span 1; }
    .testi-grid { grid-template-columns: 1fr; }
    .life-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .life-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 200px; }
    .life-item:nth-child(5) { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
    .why-visual { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    #hero { padding: 90px 4% 50px; }
    section { padding: 64px 4%; }
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
  }

/* =========================================
   EXTRA MOBILE RESPONSIVE FIXES
========================================= */

/* Tablet Optimization */
@media (max-width: 992px) {

  nav {
    padding: 0 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .enquiry-form {
    width: 100%;
    max-width: 100%;
  }

  .about-grid,
  .why-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 32px;
  }

  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facility-card:first-child {
    grid-column: span 2;
  }
}


/* Mobile Responsive */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  nav {
    height: 64px;
    padding: 0 16px;
  }

  .nav-logo-text .name {
    font-size: 13px;
  }

  .nav-logo-text .sub {
    font-size: 10px;
  }

  #hero {
    min-height: auto;
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-btns {
    width: 100%;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .enquiry-form {
    padding: 24px 20px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .section-desc {
    font-size: 15px;
  }

  .about-img-main {
    height: 320px;
  }

  .about-badge {
    right: 10px;
    bottom: 10px;
    padding: 14px 18px;
  }

  .about-badge .num {
    font-size: 24px;
  }

  .courses-grid,
  .testi-grid,
  .facilities-grid,
  .why-visual {
    grid-template-columns: 1fr;
  }

  .facility-card:first-child {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    border-radius: 14px !important;
  }

  .stat-num {
    font-size: 36px;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .life-item,
  .life-item:nth-child(1),
  .life-item:nth-child(5) {
    grid-column: span 1;
    height: 220px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns a {
    width: 100%;
    justify-content: center;
  }

  footer {
    padding: 50px 20px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

}


/* Small Mobile Devices */
@media (max-width: 480px) {

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 6px 12px;
  }

  .btn-primary,
  .btn-outline,
  .btn-white,
  .btn-ghost {
    padding: 14px 18px;
    font-size: 14px;
  }

  .course-body,
  .testi-card,
  .why-item {
    padding: 20px;
  }

  .stat-num {
    font-size: 30px;
  }

  .stat-label {
    font-size: 12px;
  }

  .facility-card {
    height: 220px;
  }

  .life-item {
    height: 200px;
  }

}

  /* ─── BREADCRUMB ─── */
  #breadcrumb {
    margin-top: 70px;
    background: linear-gradient(135deg, #fff5f6 0%, #fdf0f2 40%, #fce8ec 100%);
    padding: 60px 5% 64px;
    position: relative; overflow: hidden;
  }
  #breadcrumb::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(200,16,46,0.07) 0%, transparent 70%);
    border-radius: 50%;
  }
  #breadcrumb::after {
    content: '';
    position: absolute; bottom: -40px; left: 20%;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(200,16,46,0.05) 0%, transparent 70%);
    border-radius: 50%;
  }
  .breadcrumb-inner {
    max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
  }
  .breadcrumb-nav {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px; flex-wrap: wrap;
  }
  .breadcrumb-nav a {
    text-decoration: none; color: var(--gray-500); font-size: 13px; font-weight: 500;
    transition: color .2s;
  }
  .breadcrumb-nav a:hover { color: var(--red); }
  .breadcrumb-sep { color: var(--gray-500); font-size: 13px; }
  .breadcrumb-current { color: var(--red); font-size: 13px; font-weight: 600; }
  .breadcrumb-title {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 900; color: var(--gray-900); margin-bottom: 14px; line-height: 1.1;
  }
  .breadcrumb-title span { color: var(--red); }
  .breadcrumb-desc {
    font-size: 16px; color: var(--gray-500); font-weight: 400; line-height: 1.65;
    max-width: 520px;
  }
  .breadcrumb-ornament {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    font-size: 120px; opacity: 0.04; line-height: 1;
    color: var(--red); font-family: var(--font-display); font-weight: 900;
    user-select: none; pointer-events: none;
  }

  /* ─── SECTIONS BASE ─── */
  section { padding: 90px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: inline-block;
    background: var(--red-light); color: var(--red);
    padding: 5px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900; color: var(--gray-900); line-height: 1.15; margin-bottom: 16px;
  }
  .section-title span { color: var(--red); }
  .section-desc {
    font-size: 16px; color: var(--gray-500); line-height: 1.8; max-width: 580px;
  }
  .section-header { margin-bottom: 56px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-desc { margin: 0 auto; }

  /* ─── WHO WE ARE ─── */
  #who-we-are { background: var(--off-white); }
  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  }
  .who-img-wrap { position: relative; }
  .who-img-main {
    width: 100%; border-radius: 20px; overflow: hidden;
    height: 500px; position: relative;
  }
  .who-img-main img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .who-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(155,11,34,0.3) 0%, transparent 50%);
    border-radius: 20px;
  }
  .who-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--red); color: white;
    padding: 22px 26px; border-radius: 16px;
    text-align: center; box-shadow: var(--shadow-lg);
  }
  .who-badge .num {
    font-family: var(--font-display); font-size: 38px; font-weight: 900; display: block; line-height: 1;
  }
  .who-badge .lbl { font-size: 12px; opacity: 0.85; font-weight: 500; margin-top: 4px; display: block; }
  .who-floater {
    position: absolute; top: -16px; left: -16px;
    background: white; color: var(--red);
    padding: 14px 18px; border-radius: 12px;
    font-size: 13px; font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--red-light);
  }
  .who-floater .icon { font-size: 20px; }
  .who-content p {
    font-size: 16px; color: var(--gray-700); line-height: 1.85;
    margin-bottom: 20px; font-weight: 300;
  }
  .who-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .who-point {
    display: flex; gap: 14px; align-items: flex-start;
    background: white; padding: 18px 20px; border-radius: 12px;
    border-left: 4px solid var(--red); box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
  }
  .who-point:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
  .who-point-icon {
    width: 38px; height: 38px; background: var(--red-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 18px; flex-shrink: 0;
  }
  .who-point h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--gray-900); }
  .who-point p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

  /* ─── VISION & MISSION ─── */
  #vision-mission { background: white; }
  .vm-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    margin-top: 56px;
  }
  .vm-card {
    border-radius: 20px; padding: 44px 40px; position: relative; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }
  .vm-card:hover { transform: translateY(-6px); }
  .vm-card.vision {
    background: linear-gradient(145deg, var(--red-dark) 0%, var(--red) 100%);
    color: white; box-shadow: 0 20px 60px rgba(200,16,46,0.3);
  }
  .vm-card.mission {
    background: var(--off-white);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
  }
  .vm-card.mission:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
  .vm-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }
  .vm-card::after {
    content: '';
    position: absolute; bottom: -60px; left: -30px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
  }
  .vm-icon {
    font-size: 44px; margin-bottom: 20px; display: block; position: relative; z-index: 1;
  }
  .vm-type {
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 12px; display: block; position: relative; z-index: 1;
  }
  .vm-card.vision .vm-type { color: rgba(255,255,255,0.65); }
  .vm-card.mission .vm-type { color: var(--red); }
  .vm-card h3 {
    font-family: var(--font-display); font-size: 28px; font-weight: 900;
    margin-bottom: 20px; position: relative; z-index: 1;
  }
  .vm-card.vision h3 { color: white; }
  .vm-card.mission h3 { color: var(--gray-900); }
  .vm-card p {
    font-size: 15px; line-height: 1.85; font-weight: 300;
    position: relative; z-index: 1;
  }
  .vm-card.vision p { color: rgba(255,255,255,0.85); }
  .vm-card.mission p { color: var(--gray-700); }
  .mission-items { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
  .mission-item {
    display: flex; gap: 12px; align-items: flex-start;
    position: relative; z-index: 1;
  }
  .mission-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--red);
    flex-shrink: 0; margin-top: 7px;
  }
  .mission-item-text { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
  .mission-item-text strong { color: var(--gray-900); font-weight: 600; }

  /* ─── ACCREDITATION ─── */
  #accreditation { background: var(--gray-100); }
  .accred-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
  }
  .accred-card {
    background: white; border-radius: 16px; padding: 36px 28px;
    text-align: center; box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
    transition: all .3s; position: relative; overflow: hidden;
  }
  .accred-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--red-dark), var(--red));
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
  }
  .accred-card:hover::before { transform: scaleX(1); }
  .accred-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .accred-seal {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red-light), #fce4e8);
    display: flex; align-items: center; justify-content: center;
    font-size: 34px; margin: 0 auto 20px;
    border: 3px solid rgba(200,16,46,0.15);
  }
  .accred-card h4 {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 10px;
  }
  .accred-card .accred-abbr {
    font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.08em;
    margin-bottom: 10px; display: block;
  }
  .accred-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
  .accred-strip {
    margin-top: 48px; background: var(--red); border-radius: 16px;
    padding: 36px 40px; display: flex; align-items: center; gap: 40px;
    flex-wrap: wrap;
  }
  .accred-strip-text { flex: 1; }
  .accred-strip-text h4 {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: white; margin-bottom: 8px;
  }
  .accred-strip-text p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
  .accred-badges { display: flex; gap: 12px; flex-wrap: wrap; }
  .accred-badge-pill {
    background: rgba(255,255,255,0.15); color: white;
    padding: 8px 18px; border-radius: 50px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.25);
    white-space: nowrap;
  }

  /* ─── JOURNEY / TIMELINE ─── */
  #journey { background: white; }
  .timeline {
    position: relative; max-width: 900px; margin: 56px auto 0;
  }
  .timeline::before {
    content: '';
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--red-light), var(--red), var(--red-light));
    transform: translateX(-50%);
  }
  .timeline-item {
    display: grid; grid-template-columns: 1fr 60px 1fr;
    gap: 0; margin-bottom: 48px; align-items: center;
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .timeline-item.visible { opacity: 1; transform: translateY(0); }
  .timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; padding-right: 36px; }
  .timeline-item:nth-child(odd) .tl-empty { grid-column: 3; }
  .timeline-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; padding-left: 36px; }
  .timeline-item:nth-child(even) .tl-empty { grid-column: 1; }
  .tl-node {
    grid-column: 2; width: 52px; height: 52px;
    background: var(--red-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
    border: 1px solid var(--red);
    z-index: 1; position: relative; flex-shrink: 0;
    margin: 0 auto;
  }
  .tl-content {
    background: var(--off-white); border-radius: 14px; padding: 24px 28px;
    border: 1.5px solid var(--gray-200);
    transition: all .3s;
  }
  .tl-content:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
  .tl-year {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--red); margin-bottom: 8px; display: block;
  }
  .tl-content h4 {
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 8px;
  }
  .tl-content p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

  /* ─── CTA ─── */
  #cta {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #e8394f 100%);
    padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
  }
  .cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
  #cta .section-label { background: rgba(255,255,255,0.15); color: white; }
  #cta .section-title { color: white; }
  #cta .section-desc { color: rgba(255,255,255,0.8); margin: 0 auto 40px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
  .btn-white {
    background: white; color: var(--red);
    padding: 16px 36px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .btn-ghost {
    background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 16px 36px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

  

  /* ─── ANIMATIONS ─── */
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .animate-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .animate-in.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .who-grid { grid-template-columns: 1fr; gap: 48px; }
    .who-badge { bottom: 16px; right: 16px; }
    .vm-grid { grid-template-columns: 1fr; }
    .accred-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 28px; }
    .timeline-item {
      grid-template-columns: 60px 1fr;
    }
    .timeline-item:nth-child(odd) .tl-content,
    .timeline-item:nth-child(even) .tl-content {
      grid-column: 2; text-align: left; padding-left: 24px; padding-right: 0;
    }
    .timeline-item:nth-child(odd) .tl-empty,
    .timeline-item:nth-child(even) .tl-empty { display: none; }
    .tl-node { grid-column: 1; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    section { padding: 64px 5%; }
    #breadcrumb { padding: 44px 5% 48px; }
    .accred-grid { grid-template-columns: 1fr; }
    .accred-strip { flex-direction: column; gap: 24px; padding: 28px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .who-img-main { height: 320px; }
    .breadcrumb-ornament { display: none; }
  }

  @media (max-width: 480px) {
    .vm-card { padding: 32px 24px; }
    .tl-content { padding: 18px 20px; }
    .breadcrumb-title { font-size: 28px; }
  }