/* ===========================
   BREADCRUMB
=========================== */
.ep-breadcrumb {
  background: #1a3a6b;
  padding: 10px 0;
}
.ep-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}
.ep-breadcrumb-inner a { color: rgba(255,255,255,0.85); font-weight: 500; transition: color 0.2s; }
.ep-breadcrumb-inner a:hover { color: #fff; }
.ep-breadcrumb-inner i.fa-chevron-right { font-size: 9px; color: rgba(255,255,255,0.35); }
.ep-breadcrumb-inner span { color: rgba(255,255,255,0.55); }

/* ===========================
   HERO
=========================== */
.ep-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a6b 40%, #1e4d8c 70%, #2563b0 100%);
  overflow: hidden;
  min-height: 520px;
}

.ep-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ep-hero-circles .circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.circle.c1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.circle.c2 { width: 300px; height: 300px; top: -50px; right: 100px; background: rgba(255,255,255,0.03); }
.circle.c3 { width: 200px; height: 200px; bottom: -80px; left: 100px; border-color: rgba(255,255,255,0.06); }
.circle.c4 { width: 600px; height: 600px; bottom: -300px; left: -200px; }

.ep-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ep-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.ep-hero-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.ep-italic {
  font-style: italic;
  color: #7eb8f7;
  font-weight: 700;
  font-size: 34px;
}

.ep-hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

.ep-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 24px;
  backdrop-filter: blur(4px);
  width: fit-content;
}

.ep-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ep-stat strong {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ep-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.ep-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.ep-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ep-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a3a6b;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.ep-btn-primary:hover { background: #e8f0fe; transform: translateY(-2px); }

.ep-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.ep-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Hero Visual */
.ep-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ep-hero-card-float {
  position: relative;
  width: 380px;
  height: 380px;
}

.ep-hero-img-wrap {
  width: 320px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.15);
}

.ep-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  font-size: 13px;
  font-weight: 600;
  color: #1a3a6b;
  z-index: 10;
  animation: floatAnim 3s ease-in-out infinite;
}

.ep-float-card i { font-size: 18px; }
.fc1 { top: 10px; left: -10px; animation-delay: 0s; }
.fc1 i { color: #e8a020; }
.fc2 { top: 10px; right: -10px; animation-delay: 0.8s; }
.fc2 i { color: #27ae60; }
.fc3 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }
.fc3 i { color: #3a5bd9; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc3 { animation: floatAnim3 3s ease-in-out infinite 1.6s; }
@keyframes floatAnim3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===========================
   SECTION COMMON
=========================== */
.ep-sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #3a5bd9;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.ep-sec-label span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #3a5bd9;
  border-radius: 2px;
}
.ep-sec-label.white { color: rgba(255,255,255,0.7); }
.ep-sec-label.white span { background: rgba(255,255,255,0.4); }

.ep-sec-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ep-sec-title span { color: #3a5bd9; }
.ep-sec-title.white { color: #fff; }

.ep-sec-sub {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 44px;
}
.ep-sec-sub.white { color: rgba(255,255,255,0.65); }

/* ===========================
   TENTANG PROGRAM
=========================== */
.ep-tentang {
  background: #fff;
  padding: 72px 0 64px;
}

.ep-tentang-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ep-tentang-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.ep-text-card {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid #e8eef8;
  border-left: 4px solid #3a5bd9;
}

.ep-text-card p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
}
.ep-text-card p:last-child { margin-bottom: 0; }
.ep-text-card em { color: #3a5bd9; font-style: italic; font-weight: 600; }

/* Rasul Card */
.ep-rasul-card {
  background: linear-gradient(135deg, #1a3a6b 0%, #2563b0 100%);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 20px;
  text-align: center;
}

.ep-rasul-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f0c040;
  margin: 0 auto 14px;
}

.ep-rasul-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.ep-sifat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ep-sifat {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.ep-sifat span {
  font-size: 13px;
  font-weight: 700;
  color: #f0c040;
}

.ep-sifat small {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* Quote Card */
.ep-quote-card {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #d0dcf8;
  text-align: center;
}

.ep-quote-card i {
  font-size: 28px;
  color: #3a5bd9;
  opacity: 0.4;
  margin-bottom: 10px;
  display: block;
}

.ep-quote-card p {
  font-size: 14px;
  font-style: italic;
  color: #1a3a6b;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

.ep-quote-card span {
  font-size: 12px;
  color: #888;
}

/* ===========================
   METODE PEMBELAJARAN
=========================== */
.ep-metode {
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a6b 50%, #1e4d8c 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.ep-metode::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.ep-metode::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.ep-metode-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ep-gold { color: #f0c040; }

.ep-metode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.ep-metode-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.ep-metode-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
}

.ep-metode-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.ep-metode-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #7eb8f7;
  margin: 0 auto 16px;
  border: 1px solid rgba(255,255,255,0.15);
}

.ep-metode-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ep-metode-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ===========================
   TUJUAN PROGRAM
=========================== */
.ep-tujuan {
  background: #f8f9fc;
  padding: 72px 0 64px;
}

.ep-tujuan-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ep-tujuan-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}

.ep-tujuan-img {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.ep-tujuan-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(26,58,107,0.2);
}

.ep-tujuan-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #1a3a6b;
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(26,58,107,0.3);
}

.ep-tujuan-badge i {
  font-size: 24px;
  color: #f0c040;
}

.ep-tujuan-badge div {
  display: flex;
  flex-direction: column;
}

.ep-tujuan-badge strong {
  font-size: 13px;
  font-weight: 700;
}

.ep-tujuan-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}

.ep-tujuan-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ep-tujuan-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid #e8eef8;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ep-tujuan-item:hover {
  box-shadow: 0 6px 20px rgba(26,58,107,0.1);
  transform: translateX(4px);
}

.ep-tj-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #3a5bd9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ep-tujuan-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.ep-tujuan-item p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
}

/* ===========================
   KURIKULUM
=========================== */
.ep-kurikulum {
  background: #fff;
  padding: 72px 0 64px;
}

.ep-kurikulum-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ep-kurikulum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.ep-kur-card {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 28px 20px 24px;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ep-kur-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26,58,107,0.1);
  background: #fff;
}

.ep-kur-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.ep-kur-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8eef8;
}

.ep-kur-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ep-kur-card ul li {
  font-size: 12.5px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-kur-card ul li::before {
  content: '→';
  color: #3a5bd9;
  font-weight: 700;
  font-size: 12px;
}

/* ===========================
   CTA
=========================== */
.ep-cta {
  background: linear-gradient(135deg, #1a3a6b 0%, #3a5bd9 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.ep-cta-bg-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.ep-cta-bg-circles span:first-child {
  width: 400px; height: 400px;
  top: -200px; right: -100px;
}

.ep-cta-bg-circles span:last-child {
  width: 300px; height: 300px;
  bottom: -150px; left: -50px;
}

.ep-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ep-cta-content {
  text-align: center;
}

.ep-cta-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ep-cta-content h2 span {
  color: #f0c040;
}

.ep-cta-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ep-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ep-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a3a6b;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.ep-cta-btn-primary:hover { background: #e8f0fe; transform: translateY(-2px); }

.ep-cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.ep-cta-btn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .ep-metode-grid    { grid-template-columns: repeat(2, 1fr); }
  .ep-kurikulum-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ep-hero-inner      { grid-template-columns: 1fr; }
  .ep-hero-visual     { display: none; }
  .ep-hero-title      { font-size: 28px; }
  .ep-tentang-layout  { grid-template-columns: 1fr; }
  .ep-tujuan-layout   { grid-template-columns: 1fr; }
  .ep-tujuan-img img  { height: 280px; }
  .ep-tujuan-badge    { bottom: 10px; right: 10px; }
}

@media (max-width: 480px) {
  .ep-metode-grid    { grid-template-columns: 1fr; }
  .ep-kurikulum-grid { grid-template-columns: 1fr; }
  .ep-hero-stats     { flex-wrap: wrap; }
}
