:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


/* === ROOT COLOR THEME (ELEGANT) === */
:root {
  --primary: #0f3d2e;
  --secondary: #1f7a63;
  --accent: #c8a96a;
  --bg-soft: #f8f9f7;
  --text-dark: #1a1a1a;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5fcf80; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #5fcf80; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5fcf80; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}


.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-modern.green-theme {
    background: linear-gradient(135deg, #064e3b, #022c22);
    color: #d1fae5;
    padding: 70px 0 30px;
}

/* LOGO */
.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

/* TITLE */
.footer-title {
    color: #ecfdf5;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-title::after {
    content: '';
    width: 35px;
    height: 2px;
    background: #4ade80;
    display: block;
    margin-top: 6px;
}

/* TEXT */
.footer-desc {
    color: #a7f3d0;
    font-size: 14px;
    line-height: 1.7;
}

.text-gold {
    background: linear-gradient(135deg, #facc15, #fde68a, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbf7d0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4ade80;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: #4ade80;
}

/* SOCIAL */
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    color: #ecfdf5;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

/* CTA BOX */
.cta-box {
    background: rgba(255,255,255,0.06);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* BUTTON */
.btn-footer {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-footer:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #d4af37, #ffd700);
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.4),
        0 0 10px rgba(255, 215, 0, 0.6);
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    color: #86efac;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* BACKGROUND UTAMA */
/* DESKRIPSI */
.page-title .heading p {
  font-weight: 500;
}
.page-title {
  background: linear-gradient(135deg, #198754, #20c997, #6ee7b7);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* SHAPE BACKGROUND */
.shape-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shape-bg svg {
  width: 100%;
  height: 100%;
}

/* Konten di atas */
.page-title .heading,
.page-title nav {
  position: relative;
  z-index: 2;
}

/* BREADCRUMBS HIJAU NATURAL */
.page-title nav {
  background: rgba(255, 255, 255, 0.08); /* transparan soft */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* LINK */
.page-title nav a {
  color: rgba(255,255,255,0.85);
  transition: 0.3s;
}

.page-title nav a:hover {
  color: #d1fae5; /* hijau soft */
}

/* TEXT AKTIF */
.page-title nav .active {
  color: #ffffff;
  font-weight: 600;
}

/* SEPARATOR "/" */
.page-title nav ol li+li::before {
  color: rgba(255,255,255,0.5);
}

/* ===== ONLY ABOUT PAGE ===== */
.page-title.page-about {
  background: #fff;
  color: #111;
}

/* hapus shape hanya di about */
.page-title.page-about .shape-bg {
  display: none;
}

/* heading */
/* ===== SPLIT LAYOUT ===== */
.page-title.page-about .heading {
  padding: 120px 0 80px;
}

/* title kiri */
.page-title.page-about .hero-title {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

/* accent */
.page-title.page-about .hero-title span {
  font-weight: 300;
  letter-spacing: 3px;
}

/* desc kanan */
.page-title.page-about .desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* garis kecil kanan */
.page-title.page-about .mini-line {
  width: 40px;
  height: 2px;
  background: #d4af37;
  margin: 20px 0;
}

/* quote */
.page-title.page-about .quote {
  font-style: italic;
  color: #999;
}

/* label */
.page-title.page-about .label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}


/*--------------------------------------------------------------
# HERO SPLIT (MODERN ISLAMI CORPORATE)
--------------------------------------------------------------*/

.hero-split {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* ISLAMIC PATTERN */
.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/pattern-islamic.png');
  background-size: 300px;
  opacity: 0.03;
}

/* TEXT */
.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(31,60,136,0.1);
  color: #1F3C88;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* TITLE */
.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
}

.hero-text h1 span {
  color: #C9A227;
}

/* DESC */
.hero-text p {
  font-size: 16px;
  color: #555;
  max-width: 500px;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}


.btn-outline {
  border: 1.5px solid #1F3C88;
  padding: 12px 28px;
  border-radius: 30px;
  color: #1F3C88;
  text-decoration: none;
}

.btn-outline:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #d4af37, #ffd700);
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.4),
        0 0 10px rgba(255, 215, 0, 0.6);
    color: #000;
  }


/* IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* SLIDER WRAPPER */
.hero-image-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

/* IMAGE */
.hero-image-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

/* ACTIVE IMAGE */
.hero-image-slider img.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* ANIMASI KELUAR */
.hero-image-slider img.exit {
  opacity: 0;
  transform: translateX(-50px);
}

/* ==============================
   RESPONSIVE HERO SPLIT
============================== */

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

  .hero-split {
    padding: 80px 20px;
  }

  .hero-row {
    flex-direction: column-reverse;
  }

  /* TEXT */
  .hero-text {
    text-align: center;
    margin-top: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    margin: 0 auto 20px;
  }

  /* BUTTON */
  .hero-buttons {
    justify-content: center;
  }

  /* IMAGE */
  .hero-image-slider {
    height: 300px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .hero-split {
    padding: 60px 15px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-image-slider {
    height: 220px;
    border-radius: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
    padding: 60px 0;
}

/* badge kecil */
.section-badge {
    display: inline-block;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #f5f5f5;
    color: #555;
    margin-bottom: 15px;
}

/* IMAGE */
.image-wrapper {
    position: relative;
}

.image-wrapper img {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.image-wrapper img:hover {
    transform: scale(1.03);
}

/* badge di gambar */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c8a96a, #e6c07b);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
}

/* STATS */
.stats-box {
    background: #fafafa;
    border-radius: 12px;
    padding: 15px;
}

.stats-box h4 {
    margin: 0;
    color: #222;
}

.stats-box small {
    color: #777;
}

/* HIGHLIGHT MODERN */
.highlight-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    align-items: center;
    transition: 0.3s;
}

.highlight-modern i {
    font-size: 20px;
    color: #c8a96a;
}

.highlight-modern:hover {
    transform: translateY(-3px);
}
/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-premium {
    background: var(--bg-soft);
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HEADER */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ACTIVE SLIDE */
.testimonialSwiper .swiper-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: 0.4s;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details .course-header {
  margin-bottom: 40px;
}

.course-details .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.course-details .course-header .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .course-details .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.course-details .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details .course-header .instructor .instructor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.course-details .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.course-details .course-header .instructor .instructor-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-header .course-stats {
  display: flex;
  gap: 25px;
}

@media (max-width: 576px) {
  .course-details .course-header .course-stats {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.course-details .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details .course-content {
  margin-bottom: 50px;
}

.course-details .course-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .course-details .course-content h2 {
    font-size: 26px;
  }
}

.course-details .course-content .course-description {
  margin-bottom: 40px;
}

.course-details .course-content .course-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-content .what-you-learn h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.course-details .course-content .what-you-learn .learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-details .course-content .what-you-learn .learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn .learn-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.course-details .course-curriculum {
  margin-bottom: 50px;
}

.course-details .course-curriculum h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section {
  margin-bottom: 25px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.course-details .course-curriculum .curriculum-section .section-header {
  background-color: var(--surface-color);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .course-details .course-curriculum .curriculum-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.course-details .course-curriculum .curriculum-section .section-header h4 {
  font-size: 18px;
  margin: 0;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section .section-header .lessons-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-curriculum .curriculum-section .lessons {
  padding: 0;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:last-child {
  border-bottom: none;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info i {
  color: var(--accent-color);
  font-size: 18px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info span {
  font-size: 15px;
  color: var(--default-color);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-duration {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.course-details .course-sidebar {
  position: sticky;
  top: 100px;
}

.course-details .course-sidebar .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-sidebar .pricing-card .price {
  margin-bottom: 10px;
}

.course-details .course-sidebar .pricing-card .price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  vertical-align: top;
}

.course-details .course-sidebar .pricing-card .price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.course-details .course-sidebar .pricing-card .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.course-details .course-sidebar .pricing-card .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-bottom: 25px;
}

.course-details .course-sidebar .pricing-card .course-features {
  margin-bottom: 30px;
}

.course-details .course-sidebar .pricing-card .course-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.course-details .course-sidebar .pricing-card .course-features .feature i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.course-details .course-sidebar .pricing-card .course-features .feature span {
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-sidebar .pricing-card .btn-enroll {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-enroll:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.course-details .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-preview:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-sidebar .course-info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.course-details .course-sidebar .course-info-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.course-details .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-details .course-sidebar .course-info-card .info-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-sidebar .course-info-card .info-item .value {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.course-details .course-sidebar .course-tags {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
}

.course-details .course-sidebar .course-tags h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-details .course-sidebar .course-tags .tags-list .tag {
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}

.course-details .course-sidebar .course-tags .tags-list .tag:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .course-details .course-sidebar {
    position: static;
    margin-top: 40px;
  }
}
/*--------------------------------------------------------------
# Box Konten
--------------------------------------------------------------*/

.highlight-box {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 15px;
    align-items: center;
}


.highlight-box i {
    font-size: 20px;
    color: #198754;
}

/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/


.timeline-graph {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
}

/* garis horizontal */
.timeline-graph::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #198754;
    opacity: 0.2;
}

/* step */
.timeline-step {
    position: relative;
    text-align: center;
    width: 30%;
}

/* titik */
.timeline-step .dot {
    width: 16px;
    height: 16px;
    background: #198754;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(25,135,84,0.1);
}

/* tahun */
.timeline-step h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* deskripsi */
.timeline-step p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.timeline-step:hover .dot {
    transform: scale(1.2);
    background: #14532d;
}

@media (max-width: 768px) {
    .timeline-graph {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-graph::before {
        display: none;
    }

    .timeline-step {
        width: 100%;
        text-align: left;
    }
}


/* =========================================
   APPLE / HARVARD VISION SECTION
========================================= */

.vision-ultra{
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

/* =========================
LEFT SIDE
========================= */

.vision-left{
    position: relative;
    min-height: 950px;
    overflow: hidden;
    background: #020617;
}

/* IMAGE */

.vision-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vision-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* fokus anak */
    object-position: 78% center;

    transform: scale(1.05);

    transition: 8s ease;
}

.vision-left:hover .vision-bg img{
    transform: scale(1.12);
}

/* OVERLAY */

.vision-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
    linear-gradient(
        90deg,
        rgba(2,6,23,.97) 0%,
        rgba(2,6,23,.85) 35%,
        rgba(2,6,23,.55) 65%,
        rgba(2,6,23,.15) 100%
    );
}

/* CONTENT */

.vision-content{
    position: relative;
    z-index: 5;

    padding: 110px 80px;

    max-width: 760px;
}

/* BADGE */

.vision-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 24px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 35px;
}

/* DARK */

.vision-badge.dark{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #ffffff;
    backdrop-filter: blur(20px);
}

/* LIGHT */

.vision-badge.light{
    background: rgba(25,135,84,.08);
    border: 1px solid rgba(25,135,84,.12);
    color: #198754;
}

/* TITLE */

.vision-title{
    font-size: 72px;
    line-height: 1.02;
    font-weight: 800;

    letter-spacing: -3px;

    color: #ffffff;

    margin-bottom: 30px;
}

/* RIGHT TITLE */

.mission-title{
    font-size: 72px;
    line-height: 1.02;
    font-weight: 800;

    letter-spacing: -3px;

    color: #0f172a;

    margin-bottom: 30px;
}

/* DESCRIPTION */

.vision-desc{
    font-size: 19px;
    line-height: 2;

    color: rgba(255,255,255,.88);

    max-width: 620px;
}

/* DIVIDER */

.vision-divider{
    width: 90px;
    height: 4px;

    border-radius: 999px;

    margin: 35px 0;

    background:
    linear-gradient(
        to right,
        #22c55e,
        #10b981
    );
}

/* FEATURES */

.vision-stats{
    display: flex;
    align-items: center;
    gap: 40px;

    margin-top: 45px;
}

/* ITEM */

.stat-item h4{
    font-size: 42px;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 5px;
}

.stat-item p{
    color: rgba(255,255,255,.72);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* QUOTE */

.vision-quote{
    margin-top: 45px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.quote-icon{
    width: 70px;
    height: 70px;

    border-radius: 50%;

    border: 1px solid rgba(34,197,94,.4);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #22c55e;

    font-size: 28px;
}

.vision-quote span{
    color: rgba(255,255,255,.88);
    font-size: 18px;
    font-style: italic;
}

/* =========================
RIGHT SIDE
========================= */

.vision-right{
    min-height: 950px;
    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

    padding: 110px 80px;
}

/* =========================
MISSION CARD
========================= */

.mission-list{
    margin-top: 40px;
}

.mission-card{
    display: flex;
    align-items: flex-start;
    gap: 24px;

    background: rgba(255,255,255,.85);

    border: 1px solid rgba(15,23,42,.06);

    border-radius: 32px;

    padding: 32px;

    margin-bottom: 24px;

    transition: .4s ease;

    box-shadow:
    0 10px 40px rgba(15,23,42,.04);
}

/* HOVER */

.mission-card:hover{
    transform:
    translateY(-8px)
    translateX(5px);

    border-color: rgba(25,135,84,.2);

    box-shadow:
    0 25px 60px rgba(15,23,42,.08);
}

/* ICON */

.mission-icon{
    width: 78px;
    height: 78px;

    min-width: 78px;

    border-radius: 26px;

    background:
    linear-gradient(
        135deg,
        #16a34a,
        #10b981
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 30px;

    transition: .35s ease;
}

.mission-card:hover .mission-icon{
    transform:
    rotate(-8deg)
    scale(1.06);
}

/* TEXT */

.mission-text h4{
    font-size: 30px;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 10px;
}

.mission-text p{
    font-size: 17px;
    line-height: 1.9;

    color: #64748b;

    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1400px){

    .vision-title,
    .mission-title{
        font-size: 60px;
    }

}

@media(max-width:1200px){

    .vision-content,
    .vision-right{
        padding: 90px 60px;
    }

    .vision-title,
    .mission-title{
        font-size: 52px;
    }

}

@media(max-width:991px){

    .vision-left,
    .vision-right{
        min-height: auto;
    }

    .vision-content,
    .vision-right{
        padding: 80px 35px;
    }

    .vision-title,
    .mission-title{
        font-size: 42px;
        line-height: 1.1;
    }

    .vision-bg img{
        object-position: center;
    }

}

@media(max-width:768px){

    .vision-content,
    .vision-right{
        padding: 70px 22px;
    }

    .vision-title,
    .mission-title{
        font-size: 34px;
        letter-spacing: -1px;
    }

    .vision-desc{
        font-size: 15px;
        line-height: 1.9;
    }

    .mission-card{
        padding: 24px;
        border-radius: 24px;
    }

    .mission-icon{
        width: 62px;
        height: 62px;
        min-width: 62px;
        font-size: 24px;
    }

    .mission-text h4{
        font-size: 22px;
    }

    .mission-text p{
        font-size: 14px;
    }

    .vision-stats{
        gap: 25px;
    }

}
/*--------------------------------------------------------------
# Program Unggulan Section
--------------------------------------------------------------*/
.program-unggulan {
    background: var(--bg-soft);
}

/* CARD */
.unggulan-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* GOLD LINE ANIMATION */
.unggulan-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    transition: 0.4s;
}

.unggulan-card:hover::before {
    width: 100%;
}

/* HOVER */
.unggulan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */
.unggulan-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: rgba(200,169,106,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    transition: 0.4s;
}

/* ICON HOVER */
.unggulan-card:hover .unggulan-icon {
    background: var(--accent);
    color: #fff;
}

/* TITLE */
.unggulan-card h5 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* TEXT */
.unggulan-card p {
    color: #666;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/* =========================
   PROMO CARD (HIJAU PREMIUM)
========================= */
.promo-card-premium {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.promo-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(34,197,94,0.15);
}

/* BADGE (GANTI DARI MERAH KE HIJAU ELEGAN) */
.promo-badge-premium {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 2;
}

/* IMAGE */
.promo-image-premium {
    width: 100%;
    background: #f0fdf4; /* soft green bg */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.promo-image-premium img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.4s;
}

.promo-card-premium:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.promo-content-premium {
    padding: 20px;
    text-align: center;
}

.promo-content-premium h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #022c22;
}

.promo-content-premium p {
    font-size: 14px;
    color: #64748b;
}

/* PRICE */
.promo-price-premium {
    margin: 12px 0;
}

.price-now {
    font-size: 26px;
    font-weight: 800;
    color: #16a34a;
}

.price-old {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* COUNTDOWN */
.countdown-premium {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 15px 0;
}

.countdown-premium div {
    flex: 1;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    padding: 8px;
}

.countdown-premium span {
    display: block;
    font-weight: bold;
    color: #16a34a;
}

.countdown-premium small {
    font-size: 10px;
    color: #64748b;
}

/* BUTTON */
.btn-premium {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(34,197,94,0.3);
}

/* TRUST TEXT */
.promo-trust {
    margin-top: 10px;
    font-size: 12px;
    color: #94a3b8;
}

/*--------------------------------------------------------------
# HERO PROMO SECTION (CLEAN VERSION)
--------------------------------------------------------------*/

/* ======================
   GRID
====================== */
.hero-promo{
    background: 
    radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc, #eef2f7);

    padding: 5%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
  background: 
    radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* ======================
   HERO MEDIA
====================== */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* IMAGE */
.hero-media img {
  display: block;
  width: 100%;
  max-width: 420px; /* desktop limit */
  height: auto;

  border-radius: 24px;

  transform: scale(0.96);
  transition: all 0.5s ease;

  position: relative;
  display: inline-block;
  z-index: 1;

  
}

/* GLOW */
.hero-media::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 65%;

  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent);
  filter: blur(45px);

  z-index: 0;
}

/* HOVER (desktop only) */
@media (hover: hover) {
  .hero-media:hover img {
    transform: scale(1);
  }
}
#heroImage {
  transition: opacity 0.5s ease;
}

/* ======================
   CONTENT
====================== */
.hero-content h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  margin-top: 15px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}

/* ======================
   CTA
====================== */
.hero-cta {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  transition: all 0.25s ease;

  min-height: 44px;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.btn-primary:active {
  transform: scale(0.96);
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

.btn-secondary:active {
  transform: scale(0.96);
}

/* FOCUS (ACCESSIBILITY) */
.btn-primary:focus,
.btn-secondary:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ======================
   MINI PROMO
====================== */
.hero-mini-promo {
  margin-top: 35px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;

  font-size: 13px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

@media (hover: hover) {
  .mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  }
}

.mini-card img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

/* ======================
   RESPONSIVE
====================== */

/* TABLET */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-mini-promo {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-promo {
    padding: 60px 0;
  }

  .hero-media img {
    max-width: 300px;
    border-radius: 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}


/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 22px;
  }

  .hero-media img {
    max-width: 260px;
  }
}

/* TOUCH FIX */
@media (hover: none) {
  .hero-media:hover img {
    transform: scale(0.96);
  }

  .mini-card:hover {
    transform: none;
  }
}
/*--------------------------------------------------------------
# Header Blog Post
--------------------------------------------------------------*/
.blog-section {
 padding: clamp(60px, 8vw, 100px) 0;
  background: 
    radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}
.blog-card-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.blog-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

/* TEXT */
.blog-overlay h5 {
    margin: 0;
    font-size: 16px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.blog-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* LINK */
.blog-link {
  background: rgba(13, 99, 46, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

/* HOVER */
.blog-card-premium:hover img {
    transform: scale(1.08);
}

/* GOLD HOVER PREMIUM */
.eskul-card-premium,
.galeri-card-premium,
.blog-card-premium,
.fasilitas-card-premium {
    position: relative;
    transition: 0.4s;
}
/*--------------------------------------------------------------
# Hover Swipper
--------------------------------------------------------------*/
/* HOVER NAIK */
.eskul-card-premium:hover,
.galeri-card-premium:hover,
.blog-card-premium:hover,
.fasilitas-card-premium:hover {
    transform: translateY(-10px) scale(1.01);
}

/* GOLD BORDER GLOW */
.eskul-card-premium::before,
.galeri-card-premium::before,
.blog-card-premium::before,
.fasilitas-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(120deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* AKTIF SAAT HOVER */
.eskul-card-premium:hover::before,
.galeri-card-premium:hover::before,
.blog-card-premium:hover::before,
.fasilitas-card-premium:hover::before {
    opacity: 1;
}

/* SHIMMER EFFECT */
.eskul-card-premium::after,
.galeri-card-premium::after,
.blog-card-premium::after,
.fasilitas-card-premium::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: skewX(-25deg);
}

/* ANIMASI SAAT HOVER */
.eskul-card-premium:hover::after,
.galeri-card-premium:hover::after,
.blog-card-premium:hover::after,
.fasilitas-card-premium:hover::after {
    left: 120%;
    transition: 0.8s;
}
.eskul-card-premium:hover,
.galeri-card-premium:hover,
.blog-card-premium:hover,
.fasilitas-card-premium:hover {
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.1),
        0 0 15px rgba(200,169,106,0.4);
}
.galeri-overlay h5,
.blog-overlay h5 {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
/*--------------------------------------------------------------
# Article
--------------------------------------------------------------*/
/* WRAPPER */
.article-wrapper {
    background: #fff;
}

/* IMAGE */
.article-image {
    text-align: center;
    margin-bottom: 30px;
}

.article-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* CONTENT */
.article-content {
    max-width: 100%; /* 🔥 biar enak dibaca */
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 1.9;
    color: #343a40;
    text-align: justify;
}

.article-content p:first-child {
    font-size: 16.5px;
    font-weight: 500;
}

/* PARAGRAF */
.article-content p {
    margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .article-content {
        font-size: 14px;
        line-height: 1.8;
    }
}

/*--------------------------------------------------------------
# Galeri Section
--------------------------------------------------------------*/
* SECTION */
.galeri-section {
    background: #f8f9fa;
    padding: 5%;
}
.galeri-card-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.galeri-card-premium img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.galeri-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

/* TEXT */
.galeri-overlay h5 {
    font-size: 16px;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* BADGE */
.badge-kategori {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 50px;
}

/* HOVER */
.galeri-card-premium:hover img {
    transform: scale(1.08);
}

/* TEXT */
.overlay h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.overlay p {
    font-size: 13px;
    opacity: 0.85;
}

/*--------------------------------------------------------------
#Prestasi Section
/*-------------------------------------------------------------/

/* CARD */
/* =========================
   PRESTASI PREMIUM
========================= */
.prestasi-card-premium {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

.prestasi-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

/* overlay gelap + gradasi */
.prestasi-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    color: #fff;
}

/* badge */
.badge-kategori {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f1e5ac);
    color: #000;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* title */
.prestasi-overlay h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}


/* akreditasi */
.prestasi-overlay .akreditasi {
    font-size: 13px;
    opacity: 0.85;
}

/* hover efek */
.prestasi-card-premium:hover img {
    transform: scale(1.1);
}

.prestasi-card-premium:hover {
    transform: translateY(-8px);
}

.empty-state {
    opacity: 0.8;
}

.empty-state i {
    color: #000000;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# TENTANG SECTION
--------------------------------------------------------------*/
.tentang-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: 
    radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* HEADER */
.section-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #1F3C88;
}

.section-header p {
  color: #C9A227;
  font-weight: 500;
  margin-top: 10px;
  font-size: 14px;
}

/* DESC */
.tentang-desc {
  max-width: 700px;
  margin: 20px auto;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* ROW FIX (SPACING UTAMA) */
.tentang-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.tentang-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);

  padding: 30px 20px;
  border-radius: 18px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 10px 40px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

/* EFFECT LAYER */
.tentang-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,0,0,0.03), transparent 60%);
  pointer-events: none;
}

/* ICON */
.tentang-box i {
  font-size: 24px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  border-radius: 50%;

  background: rgba(31, 122, 99, 0.1);
  color: var(--primary);
}

/* TEXT */
.tentang-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.tentang-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.tentang-box:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  border-color: rgba(31, 122, 99, 0.2);
}

/* TAP MOBILE */
.tentang-box:active {
  transform: scale(0.97);
}

/* BUTTON */
.btn-tentang {
  display: inline-block;
  padding: 12px 30px;

  background: linear-gradient(135deg, #1F3C88, #2ecc71);
  color: #fff;

  border-radius: 30px;
  text-decoration: none;

  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-tentang:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.tentang-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* lebih balance */
  gap: 32px; /* lebih halus dari 40px */
  align-items: start;
}

/* Video container */
.tentang-video {
  display: block;
}

/* Wrapper video */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* lebih modern dari padding hack */
  border-radius: 12px; /* lebih subtle */
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* soft shadow */
}

/* Iframe */
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 992px) {
  .tentang-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* LEFT MENU */
.tentang-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tentang-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,0.05);

  cursor: pointer;
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}
.tentang-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(31,122,99,0.08), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.tentang-item:hover::after {
  opacity: 1;
}

.tentang-item i {
  font-size: 20px;
  color: #1F3C88;
}


/* ACTIVE */
.tentang-item.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);

  box-shadow: 
    0 10px 25px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.tentang-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 4px;
  height: 60%;

  background: var(--accent);
  border-radius: 10px;
}

.tentang-item i {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(31,122,99,0.1);
  color: var(--primary);
}

.tentang-item.active i {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.tentang-item.active h5 {
  color: #fff;
}

.tentang-item.active small {
  color: rgba(255,255,255,0.8);
}
.tentang-item h5 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.tentang-item small {
  color: #777;
}

.tentang-item small {
  font-size: 13px;
  color: #777;
}

.tentang-item.active small {
  color: rgba(255,255,255,0.8);
}

/* RIGHT CONTENT */
.tentang-content {
  background: #fff;
  padding: 30px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Layout dalam content */
.content-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

/* Text */
.content-text h3 {
  margin-bottom: 10px;
}

.content-text p {
  line-height: 1.6;
  color: #555;
}

/* Image */
.content-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.content-box {
  display: none;
  animation: fadeIn 0.4s ease;
}

.content-box.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

.content-box h3 {
  color: #1F3C88;
  margin-bottom: 10px;
}



/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

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

  .section-header h2 {
    font-size: 30px;
  }

  .tentang-desc {
    padding: 0 15px;
  }

  .tentang-box {
    padding: 25px 18px;
  }
}

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

  .tentang-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .tentang-desc {
    font-size: 14px;
  }

  /* IMPORTANT: hilangin padding bootstrap */
  .tentang-row > div {
    padding: 0;
  }

  /* tambah space pinggir */
  .tentang-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tentang-box {
    border-radius: 20px;
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.08),
      0 5px 15px rgba(0,0,0,0.04);
  }

  .tentang-box i {
    font-size: 26px;
  }

  .btn-tentang {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .section-header h2 {
    font-size: 22px;
  }

  .tentang-desc {
    font-size: 13px;
  }

  .btn-tentang {
    width: 100%;
    text-align: center;
  }
}

/* FIX HOVER DI DEVICE TOUCH */
@media (hover: none) {
  .tentang-box:hover {
    transform: none;
    box-shadow: 
      0 10px 30px rgba(0,0,0,0.05),
      0 2px 10px rgba(0,0,0,0.03);
  }
}

@media (max-width: 768px) {
  .tentang-split {
    grid-template-columns: 1fr;
  }

  .tentang-item {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .content-flex {
    grid-template-columns: 1fr;
  }

  .content-image {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# KEUNGGULAN SECTION (FINAL WOW VERSION)
--------------------------------------------------------------*/

.keunggulan-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* glow background */
.keunggulan-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(13, 99, 46, 0.08);
  filter: blur(120px);
  z-index: 0;
}

.keunggulan-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(201, 162, 39, 0.08);
  filter: blur(120px);
  z-index: 0;
}

/* biar konten di atas */
.keunggulan-section .container {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-header p {
  max-width: 520px;
  margin: 10px auto 0;
  font-size: 15px;
  color: #888;
}
/* ======================
   STATS
====================== */
.stat-box {
  background: #fff;
  padding: 22px;
  border-radius: 16px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;

  border: 1px solid rgba(0,0,0,0.03);
}


.stat-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1F3C88;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.stat-box:hover {
  transform: translateY(-6px) scale(1.02);
}
/* ======================
   GRID SPACING FIX
====================== */
.stats-row .col-6 {
  margin-bottom: 15px;
}

.row.mt-4 > div,
.row.mt-5 > div {
  margin-bottom: 20px;
}

/* ======================
   FEATURE BOX
====================== */
.unggul-box {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);

  border-radius: 18px;
  padding: 26px;

  border: 1px solid rgba(0,0,0,0.04);

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}


.unggul-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON WRAP */
.icon-wrap {
  width: 60px;
  height: 60px;

  display: flex;              
  align-items: center;        
  justify-content: center; 
  margin: 0 auto 14px;     
  border-radius: 50%;
  position: relative;      

  background: linear-gradient(135deg, #eaf5ee, #f5f9f7);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.unggul-box i {
  font-size: 26px;
  color: #C9A227;
  line-height: 1; /* 🔥 biar ga offset */
}
/* TEXT */
.unggul-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  
}

.unggul-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.unggul-box.active h4,
.unggul-box.active p {
  color: #fff;
}

/* ======================
   HIGHLIGHT CARD (WOW EFFECT)
====================== */
.unggul-box.active {
  background: linear-gradient(135deg, #0d632e, #0f7a3a);
  color: #fff;

  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(13, 99, 46, 0.3);
}

.unggul-box.active::after {
  content: "⭐ Pilihan Utama";
  display: block;
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.8;
}

/* ======================
   Divider
====================== */
.section-divider {
  width: 80px;
  height: 4px;
  margin: 40px auto;
  background: linear-gradient(to right, #0d632e, #c9a227);
  border-radius: 10px;
}
/* ======================
   RESPONSIVE
====================== */

/* TABLET */
@media (max-width: 992px) {
  .keunggulan-section {
    padding: 60px 0;
  }
}

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

  .keunggulan-section {
    padding: 50px 0;
  }

  .stat-box h2 {
    font-size: 22px;
  }

  .stat-box p {
    font-size: 12px;
  }

  .unggul-box {
    padding: 18px;
  }

  .unggul-box h4 {
    font-size: 15px;
  }

  .unggul-box p {
    font-size: 12px;
  }

  .icon-wrap {
    width: 50px;
    height: 50px;
  }

  /* matiin scale biar ga aneh di mobile */
  .unggul-box.highlight {
    transform: none;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .stat-box {
    padding: 15px;
  }

  .stat-box h2 {
    font-size: 20px;
  }

  .unggul-box {
    padding: 16px;
  }

}

@media (hover: hover) {
  .unggul-box:not(.active):hover {
    transform: translateY(-6px);
    background: #0d632e;
    color: #fff;
  }

  .unggul-box:not(.active):hover i,
  .unggul-box:not(.active):hover p,
  .unggul-box:not(.active):hover h4 {
    color: #fff;
  }
}

/*--------------------------------------------------------------
# PPDB Section Section
--------------------------------------------------------------*/
.ppdb-flow {
  background: #f9fafc;
  padding: 40px;
  border-radius: 16px;
}
/* LINE TENGAH */
.ppdb-flow {
    position: relative;
    margin-top: 50px;
}

.ppdb-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

/* ITEM */
.flow-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.flow-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.flow-item .content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34,197,94,0.2);
}

/* STEP NUMBER */
.step {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 10px;
}

.step.span-gold {
    display: inline-block;
    font-size: 14px;
    
    background: linear-gradient(135deg, #d4af37, #f5d76e, #b8962e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
    text-shadow: 0 2px 10px rgba(212,175,55,0.25);
}

/* LEFT RIGHT POSITION */
.flow-item.left {
    left: 0;
    text-align: right;
}

.flow-item.right {
    left: 50%;
}

/* DOT */
.flow-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border-radius: 50%;
    border: 4px solid #ecfdf5;
    z-index: 2;
}

.flow-item.left::before {
    right: -9px;
}

.flow-item.right::before {
    left: -9px;
}

/* TEXT */
.flow-item h4 {
    color: #022c22;
    font-weight: 600;
}

.flow-item p {
    color: #64748b;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ppdb-flow::before {
        left: 10px;
    }

    .flow-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 15px;
    }

    .flow-item.right {
        left: 0;
    }

    .flow-item.left {
        text-align: left;
    }

    .flow-item::before {
        left: 0;
    }
}

@media (max-width: 768px) {

  .ppdb-flow::before {
    left: 20px;
  }

  .flow-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 15px;
  }

  .flow-item.left,
  .flow-item.right {
    left: 0;
    text-align: left;
  }

  .flow-item::before {
    left: 10px;
  }
}

/* TABS SEGMENTED CONTROL */
.vm-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.vm-tabs {
    background: rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 20px;
    display: inline-flex;
    gap: 5px;
}

.vm-btn {
    border: none;
    padding: 10px 30px;
    border-radius: 15px;
    background: transparent;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.vm-btn.active {
    background: #fff;
    color: #198754;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* MAIN CARD */
.vm-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.visi-side {
    background: #198754; /* Hijau Azmia */
    padding: 60px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visi-icon {
    font-size: 80px;
    position: absolute;
    top: -20px;
    right: -10px;
    opacity: 0.1;
}

.label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.visi-side h3 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
}

.visi-side h3 span {
    color: #ffc107; /* Warna Gold aksen */
}

.misi-side {
    padding: 60px;
    background: #fff;
}

.misi-side .label {
    color: #198754;
}

/* MISI LIST STYLE */
.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.misi-num {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
}

.misi-list p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .visi-side, .misi-side { padding: 40px; }
    .visi-side h3 { font-size: 26px; }
}

 
            .facility-card {
                position: relative;
                border-radius: 30px;
                overflow: hidden;
                height: 400px;
            }

            .facility-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .facility-card:hover .facility-img {
                transform: scale(1.1);
            }

            .facility-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 40px;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
                color: white;
            }

            .facility-overlay h4 {
                font-weight: 700;
                margin-bottom: 5px;
                color: #ffffff;
            }

            .facility-overlay p {
                opacity: 0.8;
                font-size: 14px;
            }
/* =========================================
   RESPONSIVE FOR NEW SECTIONS
   ========================================= */

@media (max-width: 992px) {
    /* VISI MISI RESPONSIVE */
    .visi-side {
        padding: 40px !important;
        min-height: auto;
    }
    
    .visi-side h3 {
        font-size: 24px !important;
    }

    .misi-side {
        padding: 40px !important;
    }

    /* FACILITIES RESPONSIVE */
    .facility-card {
        height: 300px; /* Lebih pendek di tablet */
    }
}

@media (max-width: 768px) {
    /* TAB MENU VISI MISI */
    .vm-tabs {
        width: 100%;
        display: flex;
        overflow-x: auto; /* Bisa di-swipe kiri kanan di HP */
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 8px;
    }
    
    .vm-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 14px;
    }

    /* VISI MISI CARD */
    .vm-card {
        border-radius: 25px; /* Radius lebih kecil di HP */
    }

    .visi-side {
        text-align: center;
    }

    .misi-list li {
        gap: 15px;
    }

    .misi-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 12px;
    }

    /* FACILITIES GRID */
    .facility-card {
        height: 250px;
        border-radius: 20px;
    }

    .facility-overlay {
        padding: 20px;
    }

    .facility-overlay h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    /* Merapikan alur padding di HP kecil */
    .section-title h2 {
        font-size: 28px;
    }

    .visi-side h3 {
        font-size: 20px !important;
    }

    .misi-side {
        padding: 30px 20px !important;
    }

    .misi-list p {
        font-size: 14px;
    }
}
/* =========================
   CARA MENDAFTAR MODERN
========================= */

.ppdb-guide-modern {
    padding: 60px 0;
}

/* WRAPPER */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

/* GARIS CONNECTOR */
.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: linear-gradient(to right, #22c55e, #16a34a);
    z-index: 0;
}

/* BOX */
.step-box {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

/* ICON */
.step-box .icon {
    width: 70px;
    height: 70px;
    background: #ecfdf5;
    border: 3px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #16a34a;
    transition: 0.3s;
}

/* HOVER */
.step-box:hover .icon {
    background: #22c55e;
    color: #fff;
    transform: scale(1.1);
}

/* TEXT */
.step-box h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #022c22;
}

.step-box p {
    font-size: 13px;
    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .steps-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .steps-wrapper::before {
        display: none;
    }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .guide-flow::before {
        left: 20px;
    }

    .guide-item,
    .guide-item.left,
    .guide-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 20px 20px 20px 50px;
    }

    .guide-item::before {
        left: 14px;
    }
}

@media (max-width: 576px) {

  h1 { font-size: 24px; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }

  p {
    font-size: 14px;
  }

  .vm-card,
  .jenjang-card,
  .kurikulum-card {
    padding: 20px;
  }
}
/* SECTION BACKGROUND */
.ppdb-choose-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 80px 0;
    position: relative;
}

/* TITLE */
.ppdb-choose-section h3 {
    font-family: 'Poppins', sans-serif;
}

/* CARD JENJANG */
.jenjang-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;

    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ICON */
.jenjang-card i {
    font-size: 36px;
    color: #16a34a;
    margin-bottom: 15px;
}

/* TITLE */
.jenjang-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* TEXT */
.jenjang-card p {
    font-size: 14px;
    color: #6b7280;
}

/* HOVER EFFECT */
.jenjang-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(22,163,74,0.15);
    border-color: rgba(22,163,74,0.2);
}

/* CTA BOX */
.ppdb-cta {
    margin-top: 70px;
    padding: 40px;
    border-radius: 20px;

    background: #ffffff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

/* CTA BUTTON */
.btn-cta-wa {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta-wa:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #15803d, #166534);
}

/* GOLD TEXT */
.text-gold {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ppdb-flow {
    position: relative;
    padding: 60px 0;
}

/* GARIS TENGAH */
.ppdb-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #22c55e, #15803d);
    transform: translateX(-50%);
}

/* ITEM */
.flow-item {
    width: 50%;
    position: relative;
    padding: 20px 40px;
}

/* LEFT */
.flow-item.left {
    left: 0;
    text-align: right;
}

/* RIGHT */
.flow-item.right {
    left: 50%;
}

/* TITIK STEP */
.flow-item::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
    z-index: 2;
}

.flow-item.left::before {
    right: -9px;
}

.flow-item.right::before {
    left: -9px;
}

/* CARD */
.flow-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* HOVER */
.flow-item .content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22,163,74,0.15);
}


/* ARROW */
.ppdb-flow::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #15803d; /* warna ujung */
}

@media (max-width: 768px) {

    .ppdb-flow::after {
        left: 20px; /* samakan dengan garis */
        transform: translateX(-50%);
    }

}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ppdb-flow::before {
        left: 20px;
    }

    .flow-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .flow-item.left,
    .flow-item.right {
        left: 0;
        text-align: left;
    }

    .flow-item::before {
        left: 11px;
    }
}

/* STEP NUMBER BULAT */
.step-box .icon {
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 700;

    color: #1f2937;

    background: linear-gradient(135deg, #d4af37, #f5d76e, #b8962e);
    border-radius: 50%;

    box-shadow: 0 4px 10px rgba(212,175,55,0.4);

    z-index: 2;
}

/* ICON */
.contact-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.profile-wrapper::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0,0,0,0);
    transition: 0.3s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =========================
   Kurikulum
========================= */
/* CARD */
.kurikulum-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HOVER */
.kurikulum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */
.kurikulum-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(25,135,84,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kurikulum-card .icon i {
    font-size: 28px;
    color: #198754;
}

/* TITLE */
.kurikulum-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* DESC */
.kurikulum-card p {
    font-size: 14px;
    color: #666;
}

/* ACTIVE */
.kurikulum-card.active {
    border: 2px solid #198754;
}
.modal-content {
    border-radius: 18px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.kurikulum-card:hover .icon {
    background: #198754;
}

.kurikulum-card:hover .icon i {
    color: #fff;
}
.section-intro {
    max-width: 700px;
    margin-bottom: 40px;
}

.section-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.badge-kurikulum {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(200,169,106,0.15);
    color: var(--accent);
    margin-bottom: 10px;
}

.kurikulum-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.kurikulum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.kurikulum-card .icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 10px;
}

/* =========================
   Fasilitas Section
========================= */
.fasilitas-premium {
    background: var(--bg-soft);
}

/* CARD */
.fasilitas-card-premium {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

/* IMAGE */
.fasilitas-card-premium img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.fasilitas-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
    transition: 0.4s;
}

/* TEXT */
.fasilitas-overlay h5 {
    margin: 0;
    font-size: 18px;
}

.fasilitas-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* BADGE */
.badge-jenjang {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
}

/* HOVER EFFECT */
.fasilitas-card-premium:hover img {
    transform: scale(1.08);
}

.fasilitas-card-premium:hover .fasilitas-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
}

.fasilitas-overlay h5 {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
/* =========================
   Ekskul
========================= */
.section.eskul.premium-eskul{
  padding: clamp(60px, 8vw, 100px) 0;
  background: 
    radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc, #eef2f7);

}

.eskul-card-premium {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

/* IMAGE */
.eskul-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* DARK GRADIENT BASE */
.eskul-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.05) 100%
  );

  color: #fff;
  transition: all 0.4s ease;
}

/* TEXT */
.eskul-overlay h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;

  transform: translateY(10px);
  transition: 0.4s;
  color: #fff;
}

.eskul-overlay p {
  font-size: 13px;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s;
}

/* BADGE */
.badge-jenjang {
  position: absolute;
  top: 15px;
  left: 15px;

  background: rgba(255,255,255,0.9);
  color: #0d632e;

  padding: 6px 14px;
  font-size: 11px;
  border-radius: 50px;
  font-weight: 500;

  backdrop-filter: blur(6px);
}

.click-hint {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 8px;

  display: inline-block;
  transition: 0.3s;
}

/* HOVER (DESKTOP ONLY) */
@media (hover: hover) {
  .eskul-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  }

  .eskul-card-premium:hover img {
    transform: scale(1.1);
  }

  .eskul-card-premium:hover .eskul-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.5),
      transparent
    );
  }

  .eskul-card-premium:hover p {
    opacity: 1;
    transform: translateY(0);
  }

  .eskul-card-premium:hover h5 {
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .eskul-card-premium:hover .click-hint {
    transform: translateX(6px);
    opacity: 1;
  }
}
/* =========================
   Play Button Di Berita Dashboard
========================= */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: #198754;
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================
   PAGE TITLE - PREMIUM HERO
========================= */
.page-title.premium {
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 40%),
            #ffffff;
}

/* ISLAMIC PATTERN (lebih subtle & classy) */
.page-title.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/pattern-islamic.png');
  background-size: 280px;
  opacity: 0.025;
}

/* CONTAINER FIX */
.page-title .container {
  position: relative;
  z-index: 2;
}
.page-title.premium {
  padding: 60px 0 40px;
}

/* =========================
   LEFT (TEXT)
========================= */
.pt-badge {
  display: inline-block;
  background: rgba(31,60,136,0.08);
  color: #1F3C88;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* TITLE */
.pt-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.pt-title span {
  display: block;
  font-weight: 500;
  color: #C9A227; /* gold accent */
  margin-top: 5px;
}

/* =========================
   RIGHT (DESC)
========================= */
.pt-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.9;
  max-width: 520px;
}

/* DIVIDER */
.pt-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #1F3C88, #C9A227);
  margin: 28px 0;
  border-radius: 2px;
}

/* QUOTE */
.pt-quote {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  border-left: 3px solid #C9A227;
  padding-left: 16px;
  max-width: 480px;
}

/* =========================
   BREADCRUMB
========================= */
.pt-breadcrumb {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  color: #64748b;
}

.pt-breadcrumb a {
  text-decoration: none;
  color: #64748b;
  transition: 0.3s;
}

.pt-breadcrumb a:hover {
  color: #1F3C88;
}

.pt-breadcrumb .divider {
  margin: 0 8px;
}

.pt-breadcrumb .current {
  font-weight: 600;
  color: #0f172a;
}

/* =========================
   RESPONSIVE
========================= */

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

  .page-title.premium {
    padding: 80px 20px;
  }

  .pt-title {
    font-size: 32px;
    text-align: center;
  }

  .pt-desc {
    text-align: center;
    margin: 0 auto;
  }

  .pt-badge {
    display: block;
    margin: 0 auto 15px;
    width: fit-content;
  }

  .pt-divider {
    margin: 25px auto;
  }

  .pt-quote {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .page-title.premium {
    padding: 60px 15px;
  }

  .pt-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .pt-desc {
    font-size: 14px;
  }
}

.pt-shape {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  opacity: 0.08;
  z-index: 1;
}

.pt-shape svg {
  width: 100%;
  height: auto;
}

.pt-shape {
  filter: blur(20px);
  opacity: 0.12;
}

/* SECTION */
.contact-ultra {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

/* TITLE */
.title-ultra {
  font-size: 32px;
  font-weight: 700;
}

/* MAP */
.map-ultra {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.map-ultra iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* GLASS EFFECT */
.map-glass {
  position: absolute;
  bottom: 20px;
  left: 20px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 15px;
  display: flex;
  gap: 10px;
}

.btn-glass {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  text-decoration: none;
}

/* CARD */
.card-ultra {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.card-ultra:hover {
  transform: translateY(-8px);
}

/* FLOATING LABEL */
.floating-group {
  position: relative;
  margin-bottom: 20px;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: transparent;
}

.floating-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #999;
  transition: 0.3s;
  background: #fff;
  padding: 0 5px;
}

.floating-group input:focus + label,
.floating-group input:valid + label,
.floating-group textarea:focus + label,
.floating-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #1F3C88;
}

/* BUTTON */
.btn-ultra {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #1F3C88, #2563eb);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-ultra:hover {
  transform: scale(1.05);
}

/* TOAST */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #16a34a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
}

#toast.show {
  opacity: 1;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #C9A227;
}

.info-item h6 {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
}

.info-item p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

/* INPUT */
.custom-input {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #1F3C88;
  box-shadow: 0 0 0 3px rgba(31,60,136,0.1);
}

/* BUTTON */
.btn-premium {
  background: #1F3C88;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-premium:hover {
  background: #162e66;
}

/* TITLE */
.title-section {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-premium {
    padding: 60px 15px;
  }
}

/* Kurikulum SECTION */
.kurikulum-section {
  padding: 100px 0;
  background: #f9fafc;
}
/* Prestasi SECTION */
.prestasi-section {
  padding: 100px 0;
  background: #f9fafc;
}
/* Alur SECTION */
.alur-section {
  padding: 100px 0;
  background: #f9fafc;
}


/* =========================
   RESPONSIVE + MODIFIKASI SEMUA SECTION
========================= */

.row-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-flex {
  flex: 1 1 calc(33.333% - 20px);
}

@media (max-width: 992px) {
  .col-flex {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .col-flex {
    flex: 1 1 100%;
  }
}



/* ===== SWIPER CONTAINER ===== */
.swiper {
    width: 100%;
    padding: 20px 10px;
    overflow: hidden; /* WAJIB - jangan visible */
    position: relative;
}

/* ===== SLIDE ===== */
.swiper-slide {
    height: auto;
}

/* ===== NAV BUTTON ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    color: #fff;
    z-index: 10;
    transition: 0.3s;
}

/* hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #198754;
}

/* icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
}

/* posisi tombol biar ga kepotong */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}


.swiper-button-next {
    right: -5px;
}

.swiper-button-prev {
    left: -5px;
}



/* SECTION */
.tabs {
    background: var(--bg-soft);
}

/* SIDEBAR */
.profile-sidebar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.profile-sidebar ul {
    list-style: none;
    padding: 0;
}

.profile-sidebar ul li {
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #555;
}

/* hover */
.profile-sidebar ul li:hover {
    background: rgba(31, 122, 99, 0.08);
    color: var(--primary);
}

/* ACTIVE MENU WOW */
.profile-sidebar ul li.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 61, 46, 0.2);
}

/* garis indicator */
.profile-sidebar ul li.active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--accent);
    border-radius: 10px;
}

/* CONTENT CARD */
body {
    font-family: 'Poppins', sans-serif;
    background: #fbfbfd; /* Apple's off-white */
    color: #1d1d1f;
    overflow-x: hidden;
}

/* HERO */
.hero-modern{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(to right,
    rgba(255,255,255,.96),
    rgba(255,255,255,.7)),
    url('../img/bg-school.jpg');

    background-size:cover;
    background-position:center;
}

.hero-title{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-3px;
}

.hero-title span{
    color:#198754;
}

.hero-desc{
    font-size:18px;
    line-height:2;
    color:#666;
    margin:30px 0;
}

.hero-image{
    width:100%;
    border-radius:40px;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.btn-primary-modern{
    background:#111;
    color:white;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary-modern{
    border:1px solid #ddd;
    color:#111;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
}

/* FLOATING */
.hero-image-wrapper{
    position:relative;
}

.floating-glass{
    position:absolute;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.55);
    border:1px solid rgba(255,255,255,.3);
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    padding:16px 24px;
    border-radius:18px;
    font-weight:600;
}

.glass-1{
    top:40px;
    left:-20px;
}

.glass-2{
    bottom:40px;
    right:-20px;
}

/* TAG */
.section-tag,
.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(25,135,84,.1);
    color:#198754;
    font-weight:600;
    margin-bottom:25px;
}

/* TITLE */
.display-title{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;
}

.section-desc{
    color:#666;
    line-height:2;
    font-size:18px;
}

/* EDITORIAL */
.editorial-row {
    margin-bottom: 40px;
    border-radius: 40px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 50px rgba(0,0,0,0.03); /* Soft shadow */
}
/* Tekstur background halus agar tidak polos */
.editorial-section, .academic-modern {
    position: relative;
    background: radial-gradient(circle at 0% 0%, rgba(25, 135, 84, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(25, 135, 84, 0.03) 0%, transparent 50%);
}
.editorial-img {
    width: 100%;
    height: 600px; /* Ukuran lebih proporsional */
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.editorial-row:hover .editorial-img {
    transform: scale(1.05);
}


.editorial-content {
    padding: 80px;
}

.editorial-content h2 {
    font-size: 48px; 
    font-weight: 700;
    letter-spacing: -1.5px;
}



.editorial-content p{
    color:#666;
    line-height:2;
    font-size:18px;
}

/* SECTION */
.section-modern{
    padding:120px 0;
}

/* ACADEMIC */
.academic-modern{
    padding:120px 0;
}



.academic-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

/* ACADEMIC CARD IMPROVEMENT */
.academic-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px); /* Efek Kaca */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 35px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.academic-card:hover {
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: translateY(-12px);
}

.academic-card.large{
    min-height:280px;
}

.academic-card.wide{
    grid-column:span 2;
}

.academic-card i {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(25, 135, 84, 0.08);
    text-align: center;
    border-radius: 20px;
    font-size: 32px;
    margin-bottom: 25px;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    padding: 8px 16px;
    background: #1d1d1f;
    color: #fff;
    margin-bottom: 20px;
}

/* =========================================
EXTRAKURIKULER MODERN PREMIUM
========================================= */

.section-modern{
    position: relative;
    padding: 120px 0;
    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8fafc
    );

    overflow: hidden;
}

/* SOFT BLUR */
.section-modern::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(25,135,84,.08),
        transparent 70%
    );

    top:-200px;
    right:-120px;

    border-radius:50%;

    filter:blur(40px);
}

/* TAG */
.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 26px;

    border-radius:999px;

    background:
    rgba(25,135,84,.08);

    color:#198754;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:24px;
}

/* TITLE */
.display-title{
    font-size:64px;
    font-weight:800;

    line-height:1.1;

    color:#0f172a;

    letter-spacing:-2px;
}

/* CARD */
.ekskul-modern{
    position:relative;

    display:flex;
    align-items:stretch;

    min-height:340px;

    overflow:hidden;

    border-radius:34px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    transition:.45s cubic-bezier(.165,.84,.44,1);

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

/* HOVER */
.ekskul-modern:hover{
    transform:translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.10);
}

/* IMAGE SIDE */
.ekskul-image{
    position:relative;

    width:45%;
    min-width:45%;

    overflow:hidden;
}

/* IMAGE */
.ekskul-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:transform 1.2s ease;
}

/* IMAGE HOVER */
.ekskul-modern:hover .ekskul-image img{
    transform:scale(1.08);
}

/* OVERLAY */
.ekskul-image::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent 60%
    );
}

/* CONTENT */
.ekskul-content{
    position:relative;

    width:55%;

    padding:45px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* SMALL LABEL */
.ekskul-content span{
    display:inline-flex;
    align-items:center;

    width:max-content;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(25,135,84,.08);

    color:#198754;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:22px;
}

/* TITLE */
.ekskul-content h3{
    font-size:34px;
    font-weight:800;

    line-height:1.2;

    color:#0f172a;

    margin-bottom:18px;
}

/* DESC */
.ekskul-content p{
    font-size:16px;
    line-height:1.9;

    color:#64748b;

    margin:0;
}

/* DECOR */
.ekskul-modern::before{
    content:'';

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(25,135,84,.08),
        transparent 70%
    );

    top:-80px;
    right:-80px;
}

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

    .display-title{
        font-size:46px;
    }

    .ekskul-modern{
        flex-direction:column;
        min-height:auto;
    }

    .ekskul-image{
        width:100%;
        min-width:100%;
        height:260px;
    }

    .ekskul-content{
        width:100%;
        padding:35px;
    }

}

/* MOBILE SMALL */
@media(max-width:576px){

    .section-modern{
        padding:80px 0;
    }

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

    .ekskul-content{
        padding:28px;
    }

    .ekskul-content h3{
        font-size:26px;
    }

    .ekskul-content p{
        font-size:15px;
        line-height:1.8;
    }

}

/* =========================================
LOAD MORE BUTTON
========================================= */

.btn-load-modern{
    border:none;

    padding:16px 34px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #198754,
        #20c997
    );

    color:white;

    font-size:15px;
    font-weight:700;

    letter-spacing:.5px;

    transition:.35s ease;

    box-shadow:
    0 15px 35px rgba(25,135,84,.25);
}

/* ICON */
.btn-load-modern i{
    font-size:18px;
    margin-left:6px;
}

/* HOVER */
.btn-load-modern:hover{
    transform:translateY(-5px);

    box-shadow:
    0 25px 45px rgba(25,135,84,.35);
}

/* HIDDEN ITEM ANIMATION */
.hidden-ekskul{
    opacity:0;
    transform:translateY(40px);
    transition:.5s ease;
}

/* SHOW */
.hidden-ekskul.show{
    opacity:1;
    transform:translateY(0);
}

/* ACHIEVEMENT */
.achievement-card{
    background:white;
    border-radius:36px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.achievement-image{
    position:relative;
}

.achievement-image img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.achievement-overlay{
    position:absolute;
    top:20px;
    left:20px;
    background:#198754;
    color:white;
    padding:8px 18px;
    border-radius:999px;
}

.achievement-content{
    padding:35px;
}

/* ORGANIZATION */
.organization-modern{
    padding:140px 0;
}

.org-wrapper{
    background:white;
    border-radius:40px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* GALLERY */
.gallery-modern{
    padding:120px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:300px;
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:30px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.tall{
    grid-row:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

/* VISION */
.vision-box{
    min-height:500px;
    padding:90px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.vision-box.dark{
    background:#111;
    color:white;
}

.vision-box.light{
    background:#f8f9fa;
}

.vision-box h2{
    font-size:58px;
    font-weight:800;
    margin:30px 0;
}

.vision-box ul{
    padding-left:20px;
}

.vision-box li{
    margin-bottom:20px;
    font-size:20px;
}

.btn-load-more{
    border:none;
    background:#111;
    color:white;
    padding:16px 40px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
}

.btn-load-more:hover{
    transform:translateY(-3px);
    background:#198754;
}

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

    .hero-title,
    .display-title,
    .editorial-content h2,
    .vision-box h2{
        font-size:38px;
    }

    .editorial-content{
        padding:50px 30px;
    }

    .editorial-img{
        height:400px;
    }

    .academic-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item.large,
    .gallery-item.wide{
        grid-column:span 1;
    }

    .vision-box{
        padding:50px 30px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}
/* PREMIUM QUOTE */
.highlight-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #f3f5f3);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    font-style: italic;
}

/* garis emas */
.highlight-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 4px;
    background: var(--accent);
    border-radius: 10px;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sitename {
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.tentang-desc {
  max-width: 600px;
}

.tentang-desc p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* LINK CTA */
.tentang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
  font-weight: 500;

  color: var(--primary);
  text-decoration: none;

  transition: all 0.3s ease;
}

.tentang-link:hover {
  gap: 10px;
  color: var(--secondary);
}

.tentang-link.highlight {
  background: rgba(13, 99, 46, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

/* =========================================
   RESPONSIVE MASTER SYSTEM
   ========================================= */

/* Layar Laptop/Tablet Besar (1200px kebawah) */
@media (max-width: 1200px) {
    .editorial-content { padding: 60px !important; }
    .editorial-content h2 { font-size: 40px; }
    .display-title { font-size: 54px; }
}

/* Layar Tablet (992px kebawah) */
@media (max-width: 992px) {
    /* Editorial: Gambar di atas, Text di bawah */
    .editorial-row { min-height: auto; margin-bottom: 30px; }
    .editorial-img { height: 400px; }
    .editorial-content { padding: 40px 30px !important; text-align: center; }
    .editorial-content h2 { font-size: 36px; }
    
    /* Academic Grid: Jadi 2 kolom tetap atau 1 kolom */
    .academic-grid { gap: 15px; }
    .academic-card { padding: 30px; border-radius: 25px; }

    /* Hero */
    .hero-title { font-size: 48px; letter-spacing: -1px; }
    .glass-1, .glass-2 { display: none; } /* Hilangkan floating di tablet agar tidak berantakan */
    
    /* Sidebar Profile (Jika ada) */
    .profile-sidebar { margin-bottom: 30px; }
}

/* Layar HP (768px kebawah) */
@media (max-width: 768px) {
    .section-modern, .academic-modern, .gallery-modern {
        padding: 80px 0;
    }

    .display-title { font-size: 34px; line-height: 1.2; }
    
    /* Grid system */
    .academic-grid { grid-template-columns: 1fr; } /* Kartu jadi tumpuk vertikal */
    .academic-card.wide { grid-column: span 1; }
    
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); /* Galeri 2 kolom di HP */
        grid-auto-rows: 200px; 
    }

    /* Vision Box */
    .vision-box { padding: 40px 20px; min-height: auto; }
    .vision-box h2 { font-size: 32px; }

    /* Buttons */
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary-modern, .btn-secondary-modern { text-align: center; width: 100%; }
}

/* Layar HP Kecil (576px kebawah) */
@media (max-width: 576px) {
    .hero-title { font-size: 36px; }
    .editorial-img { height: 280px; }
    .editorial-content h2 { font-size: 28px; }
    
    .gallery-grid { grid-template-columns: 1fr; } /* Galeri jadi 1 kolom */
    .gallery-item.large, .gallery-item.tall, .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .academic-card { padding: 25px; }
    .academic-card i { width: 50px; height: 50px; line-height: 50px; font-size: 24px; }
}

/* WELCOME SECTION */
.welcome-section {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}

.principal-wrapper {
    position: relative;
    padding-left: 20px;
}

.principal-img {
    width: 100%;
    border-radius: 40px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
    transition: transform 0.5s ease;
}

.principal-wrapper:hover .principal-img {
    transform: scale(1.02);
}

/* Floating Badge di atas Foto */
.experience-badge {
    position: absolute;
    top: -20px;
    left: -10px;
    background: #198754;
    color: white;
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(25,135,84,0.3);
}

.experience-badge span {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.experience-badge p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Name Card Melayang di bawah foto */
.name-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 25px 35px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.name-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1d1d1f;
}

.name-card p {
    margin: 0;
    color: #198754;
    font-size: 14px;
    font-weight: 500;
}

/* Teks Sambutan */
.quote-text {
    position: relative;
}

.quote-text i {
    font-size: 50px;
    color: rgba(25,135,84,0.15);
    display: block;
}

.quote-text p {
    font-size: 22px;
    line-height: 1.8;
    color: #424245;
    font-weight: 400;
}

.signature-img {
    height: 60px;
    opacity: 0.8;
    filter: grayscale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .welcome-section { padding: 80px 0; }
    .name-card { position: relative; right: 0; bottom: 0; margin-top: 20px; }
    .experience-badge { padding: 15px; }
    .quote-text p { font-size: 18px; }
    .display-title { font-size: 38px; }
}

.signature-font {
    font-family: 'Dancing Script', cursive; /* Pakai font yang di-import */
    font-size: 32px;
    color: #198754; /* Gunakan warna hijau Azmia agar senada */
    margin-bottom: -10px; /* Merapatkan dengan teks di bawahnya */
    opacity: 0.9;
    transform: rotate(-3deg); /* Sedikit miring agar terlihat natural */
}

/* Sembunyikan tab secara default dengan efek transisi */
.tab-content, .vm-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.tab-content.active, .vm-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Sidebar Active Style Apple-ish */
.profile-sidebar ul li.active {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    font-weight: 600;
    border-left: 4px solid #198754;
}

/* =========================================
REELS PREMIUM
========================================= */

.reels-modern{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

/* BLUR */
.reels-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

.blur-left{
    width:400px;
    height:400px;
    background:rgba(25,135,84,.12);
    top:-120px;
    left:-120px;
}

.blur-right{
    width:350px;
    height:350px;
    background:rgba(32,201,151,.12);
    right:-100px;
    bottom:-100px;
}

/* HEADER */
.reels-header{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;
}

.reels-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(25,135,84,.08);

    color:#198754;

    font-size:13px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:25px;
}

.reels-header h2{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;

    margin-bottom:25px;

    color:#111827;
}

.reels-header p{
    font-size:18px;
    line-height:1.9;
    color:#6b7280;
}

/* GRID */
.reels-grid{
    position:relative;
    z-index:2;

    column-count:3;
    column-gap:24px;
}

/* ITEM */
.reel-item{
    position:relative;

    margin-bottom:24px;

    overflow:hidden;

    border-radius:34px;

    cursor:pointer;

    break-inside:avoid;

    background:#000;
}

/* IMAGE */
.reel-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:
    transform .8s ease,
    filter .8s ease;
}

/* HEIGHT */
.reel-item{
    height:420px;
}

.reel-item.tall{
    height:620px;
}

/* HOVER */
.reel-item:hover img{
    transform:scale(1.08);
    filter:brightness(.75);
}

/* OVERLAY */
.reel-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15),
        transparent
    );

    padding:28px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    opacity:0;

    transition:.4s ease;
}

.reel-item:hover .reel-overlay{
    opacity:1;
}

/* PLAY */
.play-btn{
    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(14px);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:34px;

    transition:.4s ease;
}

.reel-item:hover .play-btn{
    transform:scale(1.1);
}

/* TEXT */
.reel-content span{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;

    color:rgba(255,255,255,.7);
}

.reel-content h4{
    color:white;
    font-size:28px;
    font-weight:700;
    margin-top:10px;
}

/* LOAD MORE */
.load-more-btn{
    border:none;

    padding:18px 34px;

    border-radius:999px;

    background:#111827;
    color:white;

    font-weight:600;

    transition:.35s ease;
}

.load-more-btn:hover{
    background:#198754;
    transform:translateY(-4px);
}

/* MODAL */
.reel-modal-content{
    background:black;
    border:none;
    border-radius:30px;
    overflow:hidden;
}

.modal-close{
    position:absolute;
    right:20px;
    top:20px;
    z-index:10;
}

/* HIDDEN */
.hidden-reel{
    display:none;
}

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

    .reels-grid{
        column-count:2;
    }

    .reels-header h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .reels-modern{
        padding:90px 0;
    }

    .reels-grid{
        column-count:1;
    }

    .reels-header h2{
        font-size:34px;
    }

    .reel-item,
    .reel-item.tall{
        height:500px;
    }

}

.reel-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
}

.reel-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        transparent
    );
}

.play-reel-btn{
    width:80px;
    height:80px;
    border:none;
    border-radius:50%;
    background:white;
    font-size:34px;
    cursor:pointer;
    z-index:10;
}

/* SECTION WRAPPER */
.welcome-tabs-section {
    padding: 120px 0;
    background: #fbfbfd; /* Apple Background */
}

/* SIDEBAR PILLS - FIXED STICKY POSITION */
.sidebar-pill-wrapper {
    position: sticky;
    /* Sesuaikan 'top' dengan tinggi header kamu. 
       Jika header tingginya 80px, maka pakai 100px agar ada jarak */
    top: 100px; 
    z-index: 10; /* Pastikan lebih rendah dari header (header biasanya 999) */
    background: transparent;
}

.sidebar-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #86868b;
    margin-bottom: 20px;
    padding-left: 15px;
}

.nav-pills-apple {
    list-style: none;
    padding: 0;
}

.pill-item {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5); /* Sedikit transparan agar modern */
}

.pill-icon {
    width: 32px;
    height: 32px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #1d1d1f;
}

.pill-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.pill-item.active {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    color: #198754;
}

.pill-item.active .pill-icon {
    background: #198754;
    color: #ffffff;
}

/* Solusi Mobile: Hilangkan sticky di layar kecil agar tidak menumpuk */
@media (max-width: 991px) {
    .sidebar-pill-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

/* PROFILE CARD */
.profile-card-apple {
    position: relative;
    border-radius: 35px;
    overflow: visible;
}

.image-inner {
    border-radius: 35px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.image-inner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card-apple:hover .image-inner img {
    transform: scale(1.03);
}

.profile-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.profile-badge h5 { font-size: 17px; font-weight: 700; margin: 0; }
.profile-badge p { font-size: 13px; margin: 0; color: #198754; font-weight: 500; }

/* CONTENT TEXT */
.title-bold { font-size: 38px; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
.lead-text { font-size: 20px; font-weight: 500; color: #198754; line-height: 1.5; margin-bottom: 25px; }
.body-text p { font-size: 17px; line-height: 1.8; color: #424245; margin-bottom: 15px; }

/* SIGNATURE */
.signature-font {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: #1d1d1f;
    margin-bottom: 0;
}

.sign-divider {
    width: 50px;
    height: 3px;
    background: #198754;
    border-radius: 10px;
    margin: 5px 0 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .welcome-tabs-section { padding: 60px 0; }
    .image-inner img { height: 400px; }
    .profile-badge { right: 10px; bottom: 10px; padding: 15px 20px; }
    .title-bold { font-size: 28px; }
}
