/* ===== HOME ===== */
.home-page { padding-top: 109px; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.7) 60%, rgba(200,165,75,0.12) 100%); z-index: 1; }
.hero-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8a54b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0 120px; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,165,75,0.15); border: 1px solid rgba(200,165,75,0.3); color: var(--gold); padding: 7px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 26px; animation: fadeUp 0.8s ease both; }
.hero-title { font-size: clamp(44px,7vw,78px); color: var(--white); font-weight: 900; line-height: 1.05; margin-bottom: 22px; animation: fadeUp 0.8s 0.1s ease both; }
.hero-title .accent { color: var(--gold); }
.hero-subtitle { font-size: clamp(16px,2vw,18px); color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.75; margin-bottom: 38px; animation: fadeUp 0.8s 0.2s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.hero-info { display: flex; align-items: center; gap: 16px; margin-top: 38px; animation: fadeUp 0.8s 0.4s ease both; }
.hero-info-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.55); }
.hero-info-item svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100% { transform:translateY(0); opacity:1; } 50% { transform:translateY(10px); opacity:0.5; } }

/* Stats */
.stats-section { margin-top: -60px; position: relative; z-index: 10; padding: 0 0 40px; }
.stats-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); overflow: hidden; }
.stat-item { padding: 34px 20px; text-align: center; transition: background 0.2s; position: relative; }
.stat-item + .stat-item::before { content:''; position:absolute; left:0; top:20%; height:60%; width:1px; background:var(--border); }
.stat-item:hover { background: var(--cream); }
.stat-icon { width: 44px; height: 44px; background: rgba(200,165,75,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.stat-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }
.stat-number { font-family: var(--font-display); font-size: 34px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* About section */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-stack { position: relative; height: 480px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; position: absolute; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main { width: 75%; height: 360px; top: 0; left: 0; box-shadow: var(--shadow-lg); }
.about-img-accent { width: 55%; height: 230px; bottom: 0; right: 0; border: 4px solid var(--white); box-shadow: var(--shadow); }
.about-badge-float { position: absolute; top: 50%; right: -20px; transform: translateY(-50%); background: var(--gold); color: var(--navy); padding: 12px 16px; border-radius: 12px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; box-shadow: 0 8px 28px rgba(200,165,75,0.4); z-index: 2; white-space: nowrap; }
.about-text h2 { font-size: clamp(28px,3.5vw,42px); color: var(--navy); margin-bottom: 18px; }
.about-lead { font-size: 17px; color: var(--text); line-height: 1.75; margin-bottom: 14px; font-weight: 500; }
.about-body { color: var(--text-muted); margin-bottom: 26px; line-height: 1.8; }
.about-features { margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.about-features li svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }

/* Courses preview */
.courses-section { padding: 80px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(26px,3.5vw,40px); color: var(--navy); margin-bottom: 12px; }
.section-header.light h2 { color: var(--white); }
.section-sub { color: var(--text-muted); max-width: 480px; margin: 0 auto; font-size: 15px; }
.section-header.light .section-sub { color: rgba(255,255,255,0.65); }
.section-header.light .section-tag { color: var(--gold); }

.courses-preview-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; max-width: 860px; margin: 0 auto; }
.course-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card-img { position: relative; height: 190px; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; }
.course-card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(11,31,58,0.35),transparent); }
.course-badge { position: absolute; top: 14px; left: 14px; color: white; font-weight: 700; font-size: 13px; padding: 5px 14px; border-radius: 20px; z-index: 1; }
.course-body { padding: 26px; }
.course-body h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.course-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.course-meta { display: flex; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.course-meta span { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.course-meta svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.course-link { display: inline-flex; align-items: center; gap: 4px; color: var(--gold); font-weight: 600; font-size: 13.5px; transition: gap 0.2s; }
.course-link:hover { gap: 8px; }
.course-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Why section */
.why-section { position: relative; padding: 90px 0; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 30px 26px; transition: all 0.3s; }
.why-card:hover { background: rgba(200,165,75,0.08); border-color: rgba(200,165,75,0.25); transform: translateY(-4px); }
.why-icon { font-size: 30px; margin-bottom: 14px; }
.why-card h4 { font-size: 17px; color: var(--white); margin-bottom: 9px; }
.why-card p { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.7; }

/* CTA */
.cta-section { padding: 80px 0; }
.cta-card { background: linear-gradient(135deg,var(--navy) 0%,#1a3a5c 100%); border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 36px; overflow: hidden; position: relative; }
.cta-card::before { content:''; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%; background:rgba(200,165,75,0.08); }
.cta-text h2 { font-size: clamp(22px,2.8vw,32px); color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.6); max-width: 440px; font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 900px) { .stats-card { grid-template-columns: repeat(2,1fr); } .about-grid,.cta-card { flex-direction: column; } .about-grid { grid-template-columns: 1fr; gap: 40px; } .courses-preview-grid { grid-template-columns: 1fr; max-width: 480px; } .why-grid { grid-template-columns: repeat(2,1fr); } .cta-card { padding: 40px 28px; flex-direction: column; } .about-badge-float { display: none; } }
@media (max-width: 580px) { .home-page { padding-top: 70px; } .why-grid { grid-template-columns: 1fr; } .about-img-stack { height: 320px; } .about-img-main { width: 85%; height: 260px; } .about-img-accent { width: 60%; height: 170px; } }

/* ===== Vision & Mission ===== */
.vm-section { padding: 90px 0; background: var(--cream); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.vm-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 4px 24px rgba(11,31,58,0.07); display: flex; flex-direction: column; gap: 18px; transition: transform 0.3s, box-shadow 0.3s; }
.vm-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(11,31,58,0.12); }
.vm-card-gold { background: linear-gradient(135deg, #0b1f3a 0%, #122847 100%); border-color: transparent; }
.vm-icon { width: 58px; height: 58px; border-radius: 14px; background: rgba(200,165,75,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vm-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.vm-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--navy); margin: 0; }
.vm-card p { color: var(--text-muted); line-height: 1.8; font-size: 15px; margin: 0; }
.vm-card-gold h3 { color: var(--gold); }
.vm-card-gold .vm-icon { background: rgba(200,165,75,0.15); }
.vm-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.vm-list li { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.65; }
.vm-list li svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) { .vm-grid { grid-template-columns: 1fr; } }

/* ===== HERO SLIDER ===== */
.hero-slider-section {
  width: 100%;
  background: none;
  padding: 0;
  margin: 0;
}

.hero-slider {
  position: relative;
  width: 1060px;
  max-width: 100%;
  height: 510px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 510px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.hs-arrow svg { width: 20px; height: 20px; }
.hs-arrow:hover { background: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.08); }
.hs-prev { left: 12px; }
.hs-next { right: 12px; }

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.hs-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .hero-slider { height: 220px; border-radius: 0; }
  .hero-slide  { height: 220px; }
  .hs-arrow    { width: 32px; height: 32px; }
  .hs-arrow svg { width: 16px; height: 16px; }
}
