* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5f7ff;
}

/* HEADER */
.header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo a {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
}

.logo span {
  color: #4f46e5;
}

/* NAV DESKTOP */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.nav a,
.dropdown-toggle {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav a:hover,
.dropdown-toggle:hover {
  color: #4f46e5;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 10px 0;

  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s ease;
}

.submenu li {
  width: 100%;
}

.submenu li a {
  display: block;
  padding: 12px 18px;
  color: #333;
}

.submenu li a:hover {
  background: #eef2ff;
  color: #4f46e5;
}

.dropdown.active .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 900;
}

#overlay.active {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
  }

  .nav.active {
    right: 0;
  }

  /* HEADER MENU MOBILE */
  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
  }

  #closeMenu {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    align-items: flex-start; /* penting */
  }

  .nav li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: left;
    justify-content: flex-start;
    padding-left: 20px; /* biar rapi */
  }

  /* SUBMENU MOBILE */
  .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transition: all 0.3s ease;
  }

  .dropdown.active .submenu {
    max-height: 300px; /* cukup untuk isi menu */
    opacity: 1;
  }
}

/* HIDE MENU HEADER DI DESKTOP */
.nav-header {
  display: none;
}

/* TAMPILKAN HANYA DI MOBILE */
@media (max-width: 768px) {
  .nav-header {
    display: flex;
  }
}

/* HERO */
/* HERO PREMIUM */
.hero {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  overflow: hidden;
}

/* glow background */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #4f46e5;
  filter: blur(120px);
  opacity: 0.3;
  top: -100px;
  left: -100px;
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79,70,229,0.2), transparent 50%);
}

/* CONTAINER */
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-text {
  max-width: 550px;
  color: #fff;
}

.tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTON */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 10px 30px rgba(79,70,229,0.4);
}

.btn.primary:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: 0.4s;

}

.hero-image img:hover {
  transform: scale(1.03);
}


/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 70px 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-image img {
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.bio {
  padding: 80px 20px;
  background: #fff;
}

.bio-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.bio h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.bio p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.bio-text .btn {
  display: inline-block;   /* 🔥 penting */
  margin-top: 20px;
}

/* MOVIES PREMIUM */
.movies {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #fff;
}

/* PREMIUM TITLE BUTTON */
.section-title {
  display: inline-block;
  margin: 0 auto 60px auto;
  padding: 12px 28px;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #fff;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;

  backdrop-filter: blur(12px);

  box-shadow: 
    0 4px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);

  text-align: center;
  position: relative;

}

.section-title::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(79,70,229,0.4);
  opacity: 0.4;
}



/* GRID */
.movie-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* biar turun kalau layar kecil */
}

/* CARD */
.movie-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.4s ease;
  width: 260px;
}

/* IMAGE */
.movie-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* OVERLAY */
.movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;

  background: white;
}

/* TEXT */
.movie-overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.movie-overlay span {
  font-size: 13px;
  color: black;
}

/* HOVER EFFECT */
.movie-card:hover img {
  transform: scale(1.08);
}

.movie-card:hover {
  transform: translateY(-8px);
}

/* GLOW EFFECT */
.movie-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(79,70,229,0);
  transition: 0.3s;
}

.movie-card:hover::after {
  box-shadow: 0 0 40px rgba(79,70,229,0.4);
}

@media (max-width: 768px) {
  .movie-grid {
    flex-direction: row;      /* 🔥 ubah ke horizontal */
    flex-wrap: wrap;          /* biar bisa turun */
    justify-content: center;
    gap: 15px;
  }

  .movie-card {
    width: 48%;               /* 🔥 2 kolom */
    max-width: none;
  }
    .movies .container {
    flex-direction: column;   /* 🔥 ubah jadi vertical */
    align-items: center;      /* center semua */
    text-align: center;
  }

  .section-title {
    margin-bottom: 30px;
  }
  .movie-card img {
    height: 220px;
  }
}


.news {
  padding: 100px 20px;
  background: #fff;

}

.news-container {
  flex-direction: column;
  align-items: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

.news-card {
  padding: 20px;
  border-radius: 12px;
  background: #f1f5ff;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  background: #e0e7ff;
}

.news .section-title {
  color: #111;                 /* 🔥 jadi gelap */
  background: #e0e7ff;         /* soft premium */
  border: none;
  box-shadow: none;
}

.news-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
  transition: 0.3s;
}

.news-card a {
  text-decoration: none;
}

.news-card a:hover h3 {
  color: #4f46e5;   /* 🔥 hover effect */
}

/* FAQ SECTION */
.faq {
  padding: 100px 20px;
  background: #f8fafc;

}

.faq-container {
  flex-direction: column;
  align-items: center;
}

.faq .section-title {
    color: black;
}

/* LIST */
.faq-list {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

/* QUESTION */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  transition: 0.3s;
}

.faq-question:hover {
  color: #4f46e5;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}


/* FOOTER */
.footer {
  background: linear-gradient(180deg, #020617, #000);
  color: #cbd5f5;
  padding: 80px 20px 30px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* COLUMN */
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4f46e5;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}

/* =========================
   BIO PAGE PREMIUM UPGRADE
   ========================= */

/* HERO PREMIUM */
.bio-hero-premium {
  background: radial-gradient(circle at top right, rgba(79,70,229,0.2), transparent 50%);
  border-bottom: 1px solid #e5e7eb;
}



.bio-hero-premium .bio-hero-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* TEXT IMPROVEMENT */
.bio-hero-premium h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111;
}

.bio-hero-premium p {
  font-size: 18px;
  max-width: 520px;
  margin-top: 10px;
}

/* IMAGE UPGRADE */
.bio-hero-premium .bio-hero-image img {
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.bio-hero-premium .bio-hero-image img:hover {
  transform: scale(1.03);
}

/* =========================
   HERO DARK PREMIUM (MATCH HOMEPAGE)
   ========================= */

.bio-hero-premium {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;

  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

/* GLOW EFFECT */
.bio-hero-premium::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #4f46e5;
  filter: blur(140px);
  opacity: 0.35;
  top: -120px;
  left: -120px;
}

/* OVERLAY LIGHT */
.bio-hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99,102,241,0.2), transparent 50%);
}

/* CONTENT FIX */
.bio-hero-inner {
  position: relative;
  z-index: 2;
}

/* TEXT */
.bio-hero-premium h1 {
  color: #fff;
}

.bio-hero-premium p {
  color: #cbd5f5;
}

/* IMAGE (lebih hidup di dark bg) */
.bio-hero-premium .bio-hero-image img {
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .bio-hero-premium {
    padding: 80px 20px;
  }
}

/* CONTENT PREMIUM */
.bio-content-premium {
  background: #f8fafc;
}

.bio-content-premium .bio-content-container {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* SECTION SPACING */
.bio-content-premium h2 {
  font-size: 24px;
  margin-top: 30px;
  position: relative;
}

/* LINE DECORATION */
.bio-content-premium h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #4f46e5;
  margin-top: 8px;
  border-radius: 2px;
}

/* TEXT READABILITY */
.bio-content-premium p {
  font-size: 16px;
  line-height: 1.8;
}

/* LIST STYLE */
.bio-content-premium ul {
  padding-left: 20px;
}

.bio-content-premium ul li a {
  color: #4f46e5;
  text-decoration: none;
}

.bio-content-premium ul li a:hover {
  text-decoration: underline;
}

/* CTA IMPROVEMENT */
.bio-cta {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
}

.bio-cta h2 {
  margin-bottom: 20px;
}

.bio-cta .btn {
  background: #fff;
  color: #4f46e5;
  font-weight: 600;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .bio-hero-premium .bio-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .bio-content-premium .bio-content-container {
    padding: 25px;
  }

  .bio-hero-premium h1 {
    font-size: 32px;
  }
}

/* HERO RAPIFICATION */
.bio-hero-premium {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff, #eef2ff);
}

/* WRAPPER BARU */
.bio-hero-inner {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT */
.bio-hero-text {
  flex: 1;
}

.bio-hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.bio-hero-text p {
  font-size: 18px;
  color: #555;
  max-width: 500px;
}

/* IMAGE */
.bio-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bio-hero-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .bio-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .bio-hero-text h1 {
    font-size: 34px;
  }

  .bio-hero-text p {
    margin: auto;
  }

  .bio-hero-image img {
    max-width: 260px;
  }
}

/* WRAPPER */
.bio-content-wrapper {
  max-width: 1100px;
  margin: auto;

  display: flex;
  gap: 50px;
}

/* MAIN CONTENT */
.bio-main {
  flex: 2;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* SIDEBAR */
.bio-sidebar {
  flex: 1;
}

.bio-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  position: sticky;
  top: 100px;
}

/* TYPOGRAPHY */
.bio-main h2 {
  margin-top: 30px;
  font-size: 24px;
  position: relative;
}

.bio-main h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #4f46e5;
  margin-top: 8px;
  border-radius: 2px;
}

.bio-main p {
  margin-top: 10px;
  line-height: 1.8;
  color: #444;
}

.bio-main ul {
  margin-top: 10px;
  padding-left: 20px;
}

.bio-main ul li a {
  color: #4f46e5;
  text-decoration: none;
}

.bio-main ul li a:hover {
  text-decoration: underline;
}

/* SIDEBAR STYLE */
.bio-card h3 {
  margin-bottom: 15px;
}

.bio-card ul {
  list-style: none;
}

.bio-card li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .bio-content-wrapper {
    flex-direction: column;
  }

  .bio-card {
    position: static;
  }
}

/* JARAK ANTARA HERO & CONTENT */
.bio-content-premium {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* OPTIONAL (BIAR LEBIH PREMIUM) */
@media (min-width: 768px) {
  .bio-content-premium {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

/* CTA PREMIUM */
.bio-cta-premium {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;

  background: linear-gradient(135deg, #1e293b, #0f172a); /* 🔥 lebih selaras hero */
  color: #fff;
}

/* GLOW BACKGROUND */
.bio-cta-premium::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #6366f1;
  filter: blur(140px);
  opacity: 0.25;
  top: -100px;
  right: -100px;
}

/* INNER */
.bio-cta-inner {
  position: relative;
  z-index: 2;
}

/* TEXT */
.bio-cta-premium h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.bio-cta-premium p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* BUTTON UPGRADE */
.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;

  background: #fff;
  color: #4f46e5;
  font-weight: 600;
  font-size: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

/* HOVER (FIX KONTRAS) */
.cta-btn:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5); /* 🔥 lebih gelap */
  color: #ffffff; /* teks putih */
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .bio-cta-premium h2 {
    font-size: 26px;
  }
}

.gallery {
      padding: 100px 20px;
      background: #fff;
    }

    .gallery-container {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .gallery-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 16px;
      position: relative;
    }

    .gallery-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: #fff;
      font-size: 14px;
      text-align: left;
    }


  .gallery .section-title {
  color: #111;
  background: #e0e7ff;
  border: none;
  box-shadow: none;
}