/*  RESET & VARIABLES  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:         #1a4fd6;
  --blue-dark:    #1239a8;
  --blue-light:   #3b6ef5;
  --blue-pale:    #e8effe;
  --orange:       #f47c20;
  --orange-dark:  #d45f00;
  --orange-light: #ff9a45;
  --orange-pale:  #fff4eb;
  --white:        #ffffff;
  --off-white:    #f7f9ff;
  --text-dark:    #0e1b3d;
  --text-mid:     #3a4a6b;
  --text-muted:   #6b7a99;
  --border:       rgba(26,79,214,0.12);
  --radius:       18px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
.material-icons-round { font-size: inherit; line-height: 1; vertical-align: middle; }

/*  NAVBAR  */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,249,255,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(247,249,255,0.97);
  box-shadow: 0 4px 32px rgba(26,79,214,.10);
}
.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.65rem; font-weight: 800;
  letter-spacing: -.5px;
  text-decoration: none;
  display: flex; align-items: center;
}
.logo .fast  { color: var(--blue); }
.logo .tutor { color: var(--orange); }
.logo-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 3px; margin-bottom: 16px;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center;
  gap: 38px; list-style: none;
}
.nav-links a {
  font-size: .95rem; font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.btn-apply {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700;
  padding: 10px 22px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(244,124,32,.38);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-apply:hover { background: var(--orange-dark); transform: scale(1.06); box-shadow: 0 6px 28px rgba(244,124,32,.48); }
.btn-apply .material-icons-round { font-size: 1.1rem; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--blue); border-radius: 2px; display: block; transition: .3s; }

/*  HERO  */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 85% 45%, rgba(59,110,245,.10) 0%, transparent 70%),
    radial-gradient(ellipse 55% 55% at 15% 85%, rgba(244,124,32,.09) 0%, transparent 65%),
    linear-gradient(160deg,#eef2ff 0%,#fff8f2 55%,#eef2ff 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,79,214,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(26,79,214,.04) 1px,transparent 1px);
  background-size: 52px 52px; z-index: 0;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(65px); opacity: .55;
  animation: blobFloat 9s ease-in-out infinite; z-index: 0; pointer-events: none;
}
.blob1 { width:440px;height:440px;background:rgba(59,110,245,.17);top:-100px;right:2%;animation-delay:0s; }
.blob2 { width:310px;height:310px;background:rgba(244,124,32,.15);bottom:5%;left:8%;animation-delay:3s; }
.blob3 { width:210px;height:210px;background:rgba(26,79,214,.11);top:45%;right:28%;animation-delay:1.5s; }
@keyframes blobFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-22px) scale(1.04)} }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-pale); color: var(--blue);
  font-size: .8rem; font-weight: 700;
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid rgba(26,79,214,.2);
  margin-bottom: 28px; animation: fadeUp .7s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem,4.8vw,4.4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--text-dark);
  margin-bottom: 24px; animation: fadeUp .7s .15s ease both;
}
.hero h1 em {
  font-style: normal; color: var(--blue); position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute; bottom: 3px; left: 0; right: 0;
  height: 5px; background: linear-gradient(90deg,var(--orange),var(--orange-light));
  border-radius: 3px; opacity: .65; z-index: -1;
}
.hero p {
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.75;
  max-width: 550px; margin-bottom: 40px;
  animation: fadeUp .7s .3s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .45s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 14px 30px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(26,79,214,.32);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 36px rgba(26,79,214,.42); }
.btn-primary .material-icons-round { font-size: 1.15rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dark);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  border: 2px solid rgba(14,27,61,.18); cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .25s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); transform: translateY(-3px); }
.btn-outline .material-icons-round { font-size: 1.15rem; }

/* Hero right image */
.hero-image-wrap { position: relative; z-index: 2; animation: fadeUp .8s .4s ease both; }
.hero-image-wrap img {
  width: 100%; max-width: 580px; height: 480px;
  object-fit: cover; border-radius: 28px; display: block;
  box-shadow: 0 24px 80px rgba(26,79,214,.20);
}
.hero-img-overlay {
  position: absolute; inset: 0; border-radius: 28px;
  background: linear-gradient(160deg,rgba(26,79,214,.08),rgba(244,124,32,.06));
  pointer-events: none;
}
.hero-stat-pill {
  position: absolute;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 12px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(26,79,214,.12); min-width: 160px;
}
.pill-top    { top: 24px; left: -30px; }
.pill-mid    { top: 50%; left: -36px; transform: translateY(-50%); }
.pill-bottom { bottom: 28px; right: -20px; }
.pill-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pill-icon.blue   { background: var(--blue-pale); color: var(--blue); }
.pill-icon.orange { background: var(--orange-pale); color: var(--orange); }
.pill-icon.green  { background: #d1fae5; color: #059669; }
.pill-icon .material-icons-round { font-size: 1.1rem; }
.pill-text strong { display: block; font-family: 'Sora',sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.pill-text span   { font-size: .72rem; color: var(--text-muted); }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/*  SECTION SHARED  */
.section-header { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-pale); color: var(--orange-dark);
  font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(244,124,32,.2);
}
.section-tag .material-icons-round { font-size: .95rem; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem,3.8vw,2.8rem); font-weight: 800;
  color: var(--text-dark); letter-spacing: -.5px;
  margin: 16px 0 12px;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 500px; margin: 0 auto 60px; line-height: 1.7;
}

/*  ORBIT SECTION  */
.orbit-section { padding: 100px 5%; background: var(--white); overflow: hidden; }
.orbit-container {
  width: 480px; height: 480px;
  position: relative; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.orbit-ring-wrap {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  animation: spinOrbit 24s linear infinite;
}
.orbit-ring-wrap:hover,
.orbit-ring-wrap:hover .orbit-card { animation-play-state: paused; }
.orbit-dashed {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(26,79,214,.16); pointer-events: none;
}
@keyframes spinOrbit { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.orbit-card {
  position: absolute;
  width: 122px; height: 122px; border-radius: 22px;
  background: linear-gradient(135deg,#fff 0%,#f0f4ff 100%);
  border: 1.5px solid rgba(26,79,214,.13);
  box-shadow: 0 6px 28px rgba(26,79,214,.11);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; font-size: .68rem; font-weight: 700;
  color: var(--text-dark); text-align: center; cursor: pointer;
  letter-spacing: .03em; text-transform: uppercase;
  animation: counterSpin 24s linear infinite; line-height: 1.3;
  transition: box-shadow .3s, background .3s;
}
.orbit-card:hover { box-shadow: 0 12px 44px rgba(26,79,214,.22); background: linear-gradient(135deg,#e8effe,#fff4eb); }
@keyframes counterSpin { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
.orbit-card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.orbit-card-icon .material-icons-round { font-size: 1.35rem; }

/* Card positions — 230px radius, 6 cards @ 60° apart */
.orbit-card:nth-child(1) { top:calc(50% - 230px - 61px); left:calc(50% - 61px); }
.orbit-card:nth-child(2) { top:calc(50% - 115px - 61px); left:calc(50% + 199px - 61px); }
.orbit-card:nth-child(3) { top:calc(50% + 115px - 61px); left:calc(50% + 199px - 61px); }
.orbit-card:nth-child(4) { top:calc(50% + 230px - 61px); left:calc(50% - 61px); }
.orbit-card:nth-child(5) { top:calc(50% + 115px - 61px); left:calc(50% - 199px - 61px); }
.orbit-card:nth-child(6) { top:calc(50% - 115px - 61px); left:calc(50% - 199px - 61px); }

/* accent colors per card */
.orbit-card:nth-child(1) .orbit-card-icon { background:#dbeafe; color:#1a4fd6; }
.orbit-card:nth-child(2) .orbit-card-icon { background:#d1fae5; color:#059669; }
.orbit-card:nth-child(3) .orbit-card-icon { background:#fce7f3; color:#db2777; }
.orbit-card:nth-child(4) .orbit-card-icon { background:#ede9fe; color:#7c3aed; }
.orbit-card:nth-child(5) .orbit-card-icon { background:var(--orange-pale); color:var(--orange-dark); }
.orbit-card:nth-child(6) .orbit-card-icon { background:#cffafe; color:#0891b2; }

.orbit-center {
  width: 168px; height: 168px; border-radius: 50%;
  background: linear-gradient(135deg,var(--blue),var(--blue-light));
  box-shadow: 0 0 0 18px rgba(26,79,214,.07), 0 0 0 36px rgba(26,79,214,.04), 0 16px 60px rgba(26,79,214,.28);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  z-index: 3; position: relative; flex-shrink: 0;
}
.orbit-center-logo { font-family:'Sora',sans-serif; font-weight:800; font-size:1.3rem; color:#fff; line-height:1; }
.orbit-center-logo span { color:var(--orange-light); }
.orbit-center-sub { font-size:.64rem; color:rgba(255,255,255,.7); margin-top:7px; font-weight:500; line-height:1.4; }

/*  ABOUT  */
.about-section { padding: 100px 5%; background: var(--off-white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-image-main {
  width: 100%; max-width: 500px; height: 500px;
  object-fit: cover; border-radius: 28px; display: block;
  box-shadow: 0 24px 70px rgba(26,79,214,.18);
}
.about-image-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  object-fit: cover; border-radius: 20px;
  border: 5px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}
.about-badge-float {
  position: absolute; top: 28px; right: -28px;
  background: #fff; border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.13);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.ab-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ab-icon .material-icons-round { font-size: 1.4rem; }
.ab-text strong { display:block; font-size:1.25rem; font-weight:800; color:var(--blue); font-family:'Sora',sans-serif; line-height:1; }
.ab-text span   { font-size:.73rem; color:var(--text-muted); }
.about-text h2  { font-family:'Sora',sans-serif; font-size:clamp(1.8rem,3.4vw,2.6rem); font-weight:800; color:var(--text-dark); letter-spacing:-.5px; margin:16px 0 20px; }
.about-text h2 span { color:var(--orange); }
.about-text p   { font-size:1.05rem; color:var(--text-mid); line-height:1.8; margin-bottom:32px; }
.about-stats    { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:34px; }
.a-stat         { background:#fff; border-radius:14px; padding:18px 14px; text-align:center; border:1px solid var(--border); box-shadow:0 2px 14px rgba(26,79,214,.06); }
.a-stat .num    { font-family:'Sora',sans-serif; font-size:1.65rem; font-weight:800; color:var(--blue); line-height:1; }
.a-stat .num span { color:var(--orange); }
.a-stat .lbl    { font-size:.72rem; color:var(--text-muted); font-weight:500; margin-top:5px; }
.btn-readmore {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue-pale); color:var(--blue);
  font-family:'DM Sans',sans-serif; font-size:.95rem; font-weight:700;
  padding:12px 26px; border-radius:50px; text-decoration:none;
  border:1.5px solid rgba(26,79,214,.2); cursor:pointer;
  transition:background .25s, color .25s, transform .25s;
}
.btn-readmore:hover { background:var(--blue); color:#fff; transform:translateX(4px); }
.btn-readmore .material-icons-round { font-size:1.1rem; }

/*  PROGRAMS  */
.programs-section { padding: 100px 5%; background: var(--white); }
.programs-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px; max-width:1200px; margin:0 auto;
}
.prog-card {
  background:#fff; border-radius:var(--radius); overflow:hidden;
  border:1.5px solid var(--border); box-shadow:0 4px 20px rgba(26,79,214,.07);
  transition:transform .35s, box-shadow .35s, border-color .35s;
  display:flex; flex-direction:column;
}
.prog-card:hover { transform:translateY(-10px); box-shadow:0 24px 70px rgba(26,79,214,.16); border-color:transparent; }
.prog-img-wrap { position:relative; height:210px; overflow:hidden; }
.prog-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.prog-card:hover .prog-img-wrap img { transform:scale(1.06); }
.prog-img-overlay { position:absolute; inset:0; }
.card-academic .prog-img-overlay { background:linear-gradient(180deg,transparent 30%,rgba(26,79,214,.68)); }
.card-quran    .prog-img-overlay { background:linear-gradient(180deg,transparent 30%,rgba(5,150,105,.68)); }
.card-skills   .prog-img-overlay { background:linear-gradient(180deg,transparent 30%,rgba(180,55,0,.68)); }
.prog-img-badge {
  position:absolute; top:16px; left:16px;
  background:rgba(255,255,255,.94); border-radius:50px;
  padding:5px 14px; font-size:.72rem; font-weight:700;
  display:flex; align-items:center; gap:5px; backdrop-filter:blur(8px);
}
.card-academic .prog-img-badge { color:var(--blue); }
.card-quran    .prog-img-badge { color:#059669; }
.card-skills   .prog-img-badge { color:var(--orange-dark); }
.prog-img-badge .material-icons-round { font-size:.9rem; }
.prog-body { padding:28px 28px 32px; display:flex; flex-direction:column; gap:12px; flex:1; }
.prog-icon-row { display:flex; align-items:center; gap:12px; }
.prog-icon {
  width:52px; height:52px; border-radius:14px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.prog-icon .material-icons-round { font-size:1.55rem; }
.card-academic .prog-icon { background:var(--blue-pale); color:var(--blue); }
.card-quran    .prog-icon { background:#d1fae5; color:#059669; }
.card-skills   .prog-icon { background:var(--orange-pale); color:var(--orange-dark); }
.prog-card h3  { font-family:'Sora',sans-serif; font-size:1.25rem; font-weight:700; color:var(--text-dark); }
.prog-tags     { display:flex; flex-wrap:wrap; gap:6px; }
.prog-tag      { font-size:.72rem; font-weight:600; padding:4px 10px; border-radius:20px; background:var(--off-white); color:var(--text-mid); border:1px solid var(--border); }
.prog-card p   { font-size:.92rem; color:var(--text-muted); line-height:1.72; flex:1; }
.btn-learn {
  display:inline-flex; align-items:center; gap:6px;
  font-family:'DM Sans',sans-serif; font-size:.88rem; font-weight:700;
  padding:10px 20px; border-radius:50px; border:none; cursor:pointer;
  text-decoration:none; transition:all .25s; align-self:flex-start; margin-top:4px;
}
.btn-learn .material-icons-round { font-size:1rem; }
.card-academic .btn-learn { background:var(--blue-pale); color:var(--blue); }
.card-academic .btn-learn:hover { background:var(--blue); color:#fff; transform:translateX(4px); }
.card-quran    .btn-learn { background:#d1fae5; color:#059669; }
.card-quran    .btn-learn:hover { background:#059669; color:#fff; transform:translateX(4px); }
.card-skills   .btn-learn { background:var(--orange-pale); color:var(--orange-dark); }
.card-skills   .btn-learn:hover { background:var(--orange); color:#fff; transform:translateX(4px); }

/*  CONTACT  */
.contact-section {
  padding:100px 5%;
  background:linear-gradient(160deg,#eef2ff 0%,#fff8f2 100%);
  position:relative; overflow:hidden;
}
.contact-section::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(26,79,214,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(26,79,214,.04) 1px,transparent 1px);
  background-size:52px 52px; pointer-events:none;
}
.contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.contact-info h2 { font-family:'Sora',sans-serif; font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; color:var(--text-dark); letter-spacing:-.5px; margin:16px 0 20px; }
.contact-info h2 span { color:var(--blue); }
.contact-info > p { font-size:1rem; color:var(--text-mid); line-height:1.75; margin-bottom:38px; }
.contact-details { display:flex; flex-direction:column; gap:18px; margin-bottom:38px; }
.contact-detail  { display:flex; align-items:center; gap:16px; }
.det-icon {
  width:48px; height:48px; border-radius:14px;
  background:#fff; border:1.5px solid var(--border); color:var(--blue);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 2px 12px rgba(26,79,214,.08);
}
.det-icon .material-icons-round { font-size:1.3rem; }
.det-text strong { display:block; font-size:.9rem; font-weight:700; color:var(--text-dark); }
.det-text span   { font-size:.88rem; color:var(--text-muted); }
.social-links    { display:flex; gap:10px; }
.social-btn {
  width:44px; height:44px; border-radius:12px;
  background:#fff; border:1.5px solid var(--border); color:var(--text-mid);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .25s, border-color .25s, color .25s, transform .25s;
  box-shadow:0 2px 10px rgba(26,79,214,.07); text-decoration:none;
}
.social-btn .material-icons-round { font-size:1.2rem; }
.social-btn:hover { background:var(--blue); border-color:var(--blue); color:#fff; transform:translateY(-3px); }
.contact-form-box {
  background:#fff; border-radius:24px; padding:44px;
  box-shadow:0 12px 60px rgba(26,79,214,.10); border:1px solid var(--border);
}
.contact-form-box h3 { font-family:'Sora',sans-serif; font-size:1.35rem; font-weight:700; color:var(--text-dark); margin-bottom:30px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:.85rem; font-weight:600; color:var(--text-mid); margin-bottom:8px; }
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--border); border-radius:12px;
  font-family:'DM Sans',sans-serif; font-size:.93rem; color:var(--text-dark);
  background:var(--off-white); outline:none;
  transition:border-color .25s, box-shadow .25s, background .25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:var(--blue); background:#fff; box-shadow:0 0 0 4px rgba(26,79,214,.08); }
.form-group textarea { resize:vertical; min-height:115px; }
.form-group select { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a99' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:40px; }
.btn-submit {
  width:100%; padding:15px;
  background:linear-gradient(135deg,var(--blue),var(--blue-light));
  color:#fff; font-family:'DM Sans',sans-serif; font-size:1rem; font-weight:700;
  border:none; border-radius:50px; cursor:pointer;
  box-shadow:0 6px 24px rgba(26,79,214,.32);
  transition:transform .25s, box-shadow .25s;
  display:flex; align-items:center; justify-content:center; gap:8px; letter-spacing:.02em;
}
.btn-submit:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(26,79,214,.42); }
.btn-submit .material-icons-round { font-size:1.1rem; }

/*  FOOTER  */
footer { background:var(--text-dark); color:rgba(255,255,255,.7); padding:64px 5% 32px; }
.footer-inner {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px; max-width:1200px; margin:0 auto;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand .logo .fast  { color:#fff; }
.footer-brand .logo .tutor { color:var(--orange-light); }
.footer-brand .logo-dot    { background:var(--orange-light); }
.footer-brand p { font-size:.88rem; line-height:1.75; color:rgba(255,255,255,.52); margin-top:16px; }
.footer-countries { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.country-tag {
  display:inline-flex; align-items:center; gap:5px;
  font-size:.78rem; padding:5px 13px; border-radius:20px;
  background:rgba(255,255,255,.07); color:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.1); cursor:default;
  transition:background .2s, color .2s, border-color .2s;
}
.country-tag .material-icons-round { font-size:.85rem; }
.country-tag:hover { background:var(--orange); color:#fff; border-color:var(--orange); }
.footer-col h4 { color:#fff; font-weight:700; font-size:.95rem; margin-bottom:22px; font-family:'Sora',sans-serif; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:.88rem; color:rgba(255,255,255,.52); text-decoration:none; display:flex; align-items:center; gap:6px; transition:color .2s; }
.footer-col ul a .material-icons-round { font-size:.85rem; opacity:.6; }
.footer-col ul a:hover { color:var(--orange-light); }
.footer-bottom {
  max-width:1200px; margin:0 auto; padding-top:28px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:.82rem; color:rgba(255,255,255,.38);
}
.footer-bottom span { color:var(--orange-light); }

/*  MODAL  */
.modal-overlay {
  position:fixed; inset:0;
  background:rgba(10,20,50,.55); backdrop-filter:blur(6px);
  z-index:9999; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s; padding:20px;
}
.modal-overlay.active { opacity:1; pointer-events:all; }
.modal-box {
  background:#fff; border-radius:24px; padding:50px 44px;
  width:100%; max-width:480px;
  box-shadow:0 24px 80px rgba(0,0,0,.22);
  transform:translateY(24px) scale(.97);
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
  position:relative;
}
.modal-overlay.active .modal-box { transform:translateY(0) scale(1); }
.modal-close {
  position:absolute; top:18px; right:20px;
  width:34px; height:34px; border-radius:50%;
  background:var(--off-white); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--text-muted);
  transition:background .2s, color .2s, transform .2s;
}
.modal-close:hover { background:#fee2e2; color:#dc2626; transform:rotate(90deg); }
.modal-close .material-icons-round { font-size:1.1rem; }
.modal-box h3 { font-family:'Sora',sans-serif; font-size:1.5rem; font-weight:800; color:var(--text-dark); margin-bottom:6px; }
.modal-box .modal-sub { font-size:.9rem; color:var(--text-muted); margin-bottom:30px; }

/*  SCROLL REVEAL  */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.24s; }
.reveal-delay-3 { transition-delay:.36s; }

/*  RESPONSIVE  */
@media (max-width:1100px) {
  .hero { grid-template-columns:1fr; }
  .hero-image-wrap { display:none; }
  .about-inner { grid-template-columns:1fr; gap:44px; }
  .about-badge-float { right:0; }
  .programs-grid { grid-template-columns:repeat(2,1fr); }
  .contact-inner { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:36px; }
  .orbit-container { width:380px; height:380px; }
  .orbit-card { width:98px; height:98px; font-size:.62rem; }
  .orbit-card:nth-child(1){ top:calc(50% - 183px - 49px); left:calc(50% - 49px); }
  .orbit-card:nth-child(2){ top:calc(50% - 91px - 49px);  left:calc(50% + 159px - 49px); }
  .orbit-card:nth-child(3){ top:calc(50% + 91px - 49px);  left:calc(50% + 159px - 49px); }
  .orbit-card:nth-child(4){ top:calc(50% + 183px - 49px); left:calc(50% - 49px); }
  .orbit-card:nth-child(5){ top:calc(50% + 91px - 49px);  left:calc(50% - 159px - 49px); }
  .orbit-card:nth-child(6){ top:calc(50% - 91px - 49px);  left:calc(50% - 159px - 49px); }
  .orbit-center { width:136px; height:136px; }
}
@media (max-width:768px) {
  .nav-links { display:none; position:fixed; top:72px; left:0; right:0; flex-direction:column; gap:0; background:rgba(247,249,255,.98); border-bottom:1px solid var(--border); box-shadow:0 8px 32px rgba(0,0,0,.08); padding:10px 0; }
  .nav-links.open { display:flex; }
  .nav-links li { width:100%; }
  .nav-links a { display:block; padding:14px 5%; border-bottom:1px solid var(--border); }
  .nav-links a::after { display:none; }
  .hamburger { display:flex; }
  .programs-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:28px; }
  .contact-form-box { padding:28px 22px; }
  .orbit-container { width:310px; height:310px; }
  .orbit-card { width:82px; height:82px; font-size:.58rem; }
  .orbit-card:nth-child(1){ top:calc(50% - 148px - 41px); left:calc(50% - 41px); }
  .orbit-card:nth-child(2){ top:calc(50% - 74px - 41px);  left:calc(50% + 128px - 41px); }
  .orbit-card:nth-child(3){ top:calc(50% + 74px - 41px);  left:calc(50% + 128px - 41px); }
  .orbit-card:nth-child(4){ top:calc(50% + 148px - 41px); left:calc(50% - 41px); }
  .orbit-card:nth-child(5){ top:calc(50% + 74px - 41px);  left:calc(50% - 128px - 41px); }
  .orbit-card:nth-child(6){ top:calc(50% - 74px - 41px);  left:calc(50% - 128px - 41px); }
  .orbit-card-icon { width:30px; height:30px; border-radius:8px; }
  .orbit-card-icon .material-icons-round { font-size:1rem; }
  .orbit-center { width:110px; height:110px; }
  .orbit-center-logo { font-size:1rem; }
  .modal-box { padding:36px 24px; }
  .about-image-main { height:360px; }
  .about-image-accent { width:140px; height:140px; right:-10px; bottom:-14px; }
}
