/*


*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #1E5AA8;
    --primary-color: #ffffff;
    --secondary-color: #0d6efd;
    --section-bg-color: #f0f8ff;
    --dark-color: #000000;
    --navbar-bg-color: rgb(245, 202, 72);
    --highlight-bg-color: #262E4B;   /* contoh warna oranye */
    --p-color: #000000;
    --highlight-icon-color: #ff0100;
    --body-font-family: 'DM Sans', sans-serif;
    --h1-font-size: 62px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 32px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --menu-font-size: 16px;
    --copyright-text-font-size: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

body {
    background: var(--primary-color);
    font-family: var(--body-font-family); 
}



/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}

.avatar-image {
  border: 2px solid var(--white-color);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.avatar-info {
  display: inline-block;
  vertical-align: top;
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.custom-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 30px;
  border: 2px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 2px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transition: border-top-color .15s linear,border-right-color .15s linear .1s,border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
  border-top: 2px solid var(--primary-color);
  border-left-width: 2px;
  border-right-width: 2px;
  transform: rotate(270deg);
  transition: transform .4s linear 0s,border-left-width 0s linear .35s;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: var(--navbar-bg-color);
  border-radius: 100px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: var(--secondary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  margin-left: 20px;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.navbar-nav .nav-link.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION (FINAL – SUPER SLIM & ALIGN)
-----------------------------------------*/
.sticky-wrapper {
  background: var(--navbar-bg-color);
}

.navbar {
  background: var(--navbar-bg-color);
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s ease;
  padding-top: 4px;        /* LEBIH KECIL */
  padding-bottom: 4px;     /* LEBIH KECIL */
  min-height: 56px;        /* KUNCI TINGGI */
  display: flex;
  align-items: center;     /* SEJAJAR LOGO & MENU */
}

/* ================= BRAND ================= */
.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-transform: uppercase;
}

/* LOGO IMAGE */
.brand-image {
  height: 34px;            /* PAS DENGAN MENU */
  width: auto;
  display: block;
}

/* ================= MENU ================= */
.navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 12px;     /* DIPADATKAN */
  padding-left: 12px;
}

.navbar-nav .nav-link {
  color: var(--white-color);
  font-size: 16px;         /* TETAP BESAR */
  font-weight: var(--font-weight-medium);
  padding-top: 4px;        /* DIPADATKAN */
  padding-bottom: 4px;
  line-height: 1.1;        /* KUNCI BIAR TIDAK TURUN */
  white-space: nowrap;
}

/* ACTIVE & HOVER */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* ================= TOGGLER ================= */
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 30px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  display: block;
  width: 26px;             /* DIPERKECIL */
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 26px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 6px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .navbar {
    min-height: 52px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .brand-image {
    height: 32px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 6px 0;
    line-height: 1.2;
  }
}


/*---------------------------------------
  HIGHLIGHT               
-----------------------------------------*/
.highlight {
  background: var(--highlight-bg-color);
  padding-bottom: 16px;
}

.highlight-thumb {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: transparent;
}

/* OVERLAY */
.highlight-thumb::after {
  content: "";
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* HOVER EFFECT */
.highlight-thumb:hover .highlight-title {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.highlight-thumb:hover .highlight-icon {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.highlight-thumb:hover .highlight-image {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

/* INFO CENTER */
.highlight-info {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

/* IMAGE */
.highlight-image {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}

/* TITLE */
.highlight-title {
  color: var(--primary-color);
  transition: opacity 0.5s ease;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.2;
  font-size: 35px;
  font-weight: 700;
}

/* ICON */
.highlight-icon {
  color: var(--highlight-icon-color);
  font-size: var(--h1-font-size);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.highlight-icon:hover {
  color: var(--white-color);
  transition: color 0.3s ease;
}

/*---------------------------------------
  PROGRAM CARD (BIG PROGRAM)
-----------------------------------------*/
.big-program {
  max-width: 500px;              /* 🔹 perkecil kotak */
  margin: 0 auto 24px;
  border-radius: 14px;     /* 🔹 kuning */
  overflow: hidden;
}

/* tinggi gambar program */
.big-program .highlight-image {
  height: 220px;
  object-fit: cover;
}

/* overlay program lebih soft */
.big-program::after {
  background: rgba(0, 0, 0, 0.35);
}

/* judul program */
.big-program .highlight-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
}

/*---------------------------------------
  RESPONSIVE
-----------------------------------------*/
@media (max-width: 768px) {
  .big-program {
    max-width: 100%;
  }

  .big-program .highlight-image {
    height: 180px;
  }

  .big-program .highlight-title {
    font-size: 18px;
  }
}



/*---------------------------------------
  HERO (WELCOME) - STABLE VERSION
-----------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 600px; /* fallback */
  overflow: hidden;
}

/* DESKTOP */
@media (min-width: 769px) {
  .hero {
    height: calc(100vh - 84px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 140px 0 100px; /* ruang aman teks + arrow */
  }
}

/* overlay gradient */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(39, 48, 83, 0.15) 0%,
    rgba(39, 48, 83, 0.9) 100%
  );
  z-index: 1;
}

/* hero text */
.hero-text {
  position: relative;
  z-index: 2;
  transform: translateX(-40px);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.00;
    margin-bottom: 5px;   /* INI KUNCI */
}

.date-text,
.location-text {
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 9px 19px !important;
}


.hero-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 500;
    color: #fff;
    margin-top: 0;         /* biar rapi */
}


/* MOBILE TEXT FIX */
@media (max-width: 768px) {
  .hero-text {
    transform: none;
    text-align: center;
    padding: 0 20px;
  }
}

/* arrow */
.hero .arrow-icon {
  animation: floatDown 2s ease-in-out infinite;
  display: block;
  text-align: center;
  margin-top: 24px;
}

@keyframes floatDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* video wrapper */
.video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* video */
.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE VIDEO */
@media (max-width: 768px) {
  .custom-video {
    object-fit: cover; /* JANGAN contain */
  }
}

/* badge text */
.date-text,
.location-text {
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.date-text {
  border-right: 0;
}




/*---------------------------------------
  VENUE (SMOOTH & MODERN - FIX NO BLUE)
-----------------------------------------*/

/* SECTION */
.speakers {
  background: var(--section-bg-color);
}

/* LINK WRAPPER (ANTI LINK BIRU) */
.venue-link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}

/* CARD */
.speakers-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: fadeUp 0.8s ease both;
}

.speakers-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* SMALL CARD */
.speakers-thumb-small {
  margin-top: 24px;
}

/* IMAGE */
.speakers-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  filter: none !important; /* pastikan tidak ada overlay warna */
}

.speakers-thumb:hover .speakers-image {
  transform: scale(1.08);
}

/* ===============================
   INFO BOX (KUNING - FIX)
================================ */
.speakers-info {
  background-color: rgb(245, 202, 72); /* KUNING */
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 16px;
  padding: 12px 16px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: all 0.4s ease;
}

/* MATIKAN TOTAL OVERLAY / BAR BIRU */
.speakers-info::before,
.speakers-thumb::before,
.speakers-thumb::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* TEXT */
.speakers-title {
  color: #1e1e1e !important;
  font-weight: 700;
  margin: 0;
}

.speakers-text {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.85;
  color: #1e1e1e !important;
}

/* FEATURED BADGE */
.speakers-featured-text {
  background: #000;
  border-radius: 30px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 600;
  z-index: 2;
}

/* SOCIAL ICON (AMAN) */
.speakers-thumb .social-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.speakers-thumb:hover .social-icon {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT INFO LEFT */
.speakers-text-info {
  padding: 100px;
}

/* SPONSOR */
.sponsor-image {
  max-width: 130px;
  margin: 10px auto;
  height: auto;
}

/* FADE IN ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*---------------------------------------
  EVENT / PROGRAM – SMOOTH & MODERN
-----------------------------------------*/

.sc-pr {
  position: relative;
  overflow: hidden;
}

/* PARALLAX BACKGROUND */
.parallax-bg {
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: 0;
}

/* GRADIENT OVERLAY */
.sc-pr::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgb(245, 202, 72);
}



/* Ensure content above parallax */
.sc-pr > * {
  position: relative;
  z-index: 2;
}

/* ================= TAB NAVIGATION ================= */

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link {
  background: var(--white-color);
  border: 0;
  border-left: 3px solid transparent;
  padding: 20px 30px;
  width: 25%;
  font-weight: 500;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;

  will-change: transform;
}

.nav-tabs .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,.15);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus {
  border-left-color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transform: translateY(-3px);
}

/* ================= SCHEDULE IMAGE ================= */

.schedule-image {
  border-radius: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

/* ================= FADE UP EFFECT ================= */

.schedule-image,
.nav-tabs .nav-link {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 992px) {
  .nav-tabs .nav-link {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .nav-tabs .nav-link {
    padding: 16px 18px;
    font-size: 14px;
  }

  .schedule-image {
    border-radius: 20px;
  }
}

/* ================= MOBILE COACH IMAGE FIX ================= */
@media (max-width: 768px) {

  .sc-pr {
    background-position: center center;
    background-size: cover;
    min-height: 60vh;
  }

  .parallax-bg {
    background-position: center center;
    background-size: cover;
    filter: brightness(0.85);
  }

}





/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.pricing-title-wrap,
.pricing-body {
  padding: 40px;
}

.pricing-title-wrap {
  background: var(--navbar-bg-color);
  padding: 20px 40px;
}

.pricing-title {
  color: var(--white-color);
}


/*---------------------------------------
  Merchandise        
-----------------------------------------*/
.venue {
  background: var(--section-bg-color);
}

.venue-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.venue-info-title,
.venue-info-body {
  padding: 40px;
}

.venue-info-title {
  background: var(--navbar-bg-color);
  padding: 20px 40px;
}

.google-map {
  border-radius: 20px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--section-bg-color);
  border: 0;
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--navbar-bg-color);
}


/* ================= FOOTER BSS (SLIM & SEIMBANG) ================= */

.bss-footer-section {
    background: #f5ca48;
    padding: 16px 0; /* KECIL & SLIM */
}

/* ROW */
.footer-row {
    align-items: center;
}

/* ================= LEFT ================= */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* BRAND ROW */
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* LOGO */
.footer-logos {
    display: flex;
    gap: 6px;
    flex-shrink: 0; /* PENTING: logo tidak ikut mengecil */
    margin-top: 15px;
}

.footer-logo-card {
    width: 70px;
    background: #fff;
    padding: 4px;
    border-radius: 6px;
}

/* TEXT WRAP */
.footer-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 260px; 
}

/* BUTTON */
.footer-btn {
    background: #084298;
    padding: 5px 14px;
    border-radius: 16px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

/* ================= CENTER ================= */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.follow-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.follow-icons {
    display: flex;
    gap: 8px;
}

.follow-icon {
    width: 36px;
    height: 36px;
}

/* ================= RIGHT ================= */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-address {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        align-items: center;
        text-align: center;
        margin-bottom: 12px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .follow-icons {
        justify-content: center;
        width: 32px;
        height: 32px;
    }
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--white-color);
  border-radius: 100px;
  font-size: var(--p-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1500px) {
   .speakers-text-info {
    padding: 50px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .site-footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    height: calc(75vh - 78.39px);
  }

  .nav-tabs .nav-link {
    width: 50%;
  }

  .copyright-text-wrap {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .hero-text {
    width: 100%;
  }

  .site-footer .social-icon-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .footer-menu-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-menu,
  .copyright-text-wrap {
    justify-content: center;
  }
}

/* ===== AUTH MODAL STYLING ===== */

.auth-modal {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
}

.auth-header {
    border: none;
    padding-bottom: 0;
}

.auth-tabs .nav-link {
    background: transparent;
    color: #bbb;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
}

.auth-tabs .nav-link.active {
    color: cyan;
    border-bottom: 3px solid cyan;
}

.auth-modal .form-control {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.15);
    color: white !important;
    border-radius: 10px;
}

.auth-modal .form-control:focus {
    border-color: cyan;
    box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.auth-modal label {
    font-size: 14px;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 5px;
}

.auth-btn {
    background: linear-gradient(90deg, #00d2ff, #007bff);
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    transition: .2s;
}

.auth-btn:hover {
    opacity: .85;
}

/*---------------------------------------
  USER AVATAR (LOGIN)
-----------------------------------------*/

.avatar-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initial {
    width: 100%;
    height: 100%;
    background: #0d47a1;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}


/* Supaya navbar tidak turun */
.nav-item .nav-link.d-flex {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Parent dropdown */
.nav-item.dropdown {
    position: relative;
}

/* ===============================
   DESKTOP (CENTER KE AVATAR)
=================================*/
@media (min-width: 992px) {
    .nav-item.dropdown .dropdown-menu {
        position: absolute;
        top: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }
}

.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: none;
}



/* ===============================
   MOBILE (FULL WIDTH, TIDAK MELAYANG)
=================================*/
@media (max-width: 991px) {

    .navbar-nav,
    .navbar-nav .nav-item {
        width: 100%;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 8px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        text-align: left;
    }

    .navbar-nav .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

/* Hilangkan margin bawaan Popper */
.dropdown-menu[data-bs-popper] {
    margin-top: 0 !important;
}


/*---------------------------------------
  GOOGLE MAP FULL WIDTH
-----------------------------------------*/

.map-full {
    width: 100%;
    height: 500px;
    border: 100;
    float: right;
}

/* ==========================================
   USER AVATAR RESPONSIVE (MOBILE FIX)
   ========================================== */

/* Default */
.user-avatar-mobile {
    position: relative;
}

/* MOBILE */
@media (max-width: 991px) {

    /* Avatar tetap di flow navbar */
    .navbar-collapse.show .user-avatar-mobile {
        position: relative !important;
        margin-left: auto;
        margin-right: 0;
    }

    /* Rapikan spacing */
    .navbar-nav .user-avatar-mobile {
        margin: 8px 0 0 auto;
        padding: 0;
    }

    .navbar-nav .user-avatar-mobile > a {
        padding: 0;
    }

    /* Dropdown menu aman */
    .user-avatar-mobile .dropdown-menu {
        position: static;
        margin-top: 8px;
        width: 100%;
    }
}

/*---------------------------------------
  LOGO BOX (WRAPPER KUNING LOGO)
-----------------------------------------*/

.logo-box {
    width: 175px;
    min-height: 80px;
    padding: 0;
    background: #ecd159;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* JIKA ADA LOGO KEDUA LEBIH KECIL (OPSIONAL) */
.brand-image.small {
    height: 50px;
}



/*---------------------------------------
  CUSTOM TABS STYLE
-----------------------------------------*/
/* Default state */
.nav-tabs .nav-link {
    background: transparent !important;
    border: 0;
    border-left: 3px solid transparent;
    padding: 20px 30px;
    color: #000000 !important;
    transition: 0.25s ease;
    box-shadow: none !important;
}

/* Hover → teks biru + border kiri biru */
.nav-tabs .nav-link:hover {
    color: var(--secondary-color) !important; /* biru */
    border-left-color: var(--secondary-color) !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

/* Hover → teks di dalam h5 span ikut biru */
.nav-tabs .nav-link:hover h5 span {
    color: var(--secondary-color) !important;
}

/* Active → sama seperti hover */
.nav-tabs .nav-link.active {
    color: var(--secondary-color) !important;
    border-left-color: var(--secondary-color) !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}

/* Active → teks di dalam h5 span tetap biru */
.nav-tabs .nav-link.active h5 span {
    color: var(--secondary-color) !important;
}


/*---------------------------------------
  CUSTOM FIXING LAPANGAN IMAGE
-----------------------------------------*/
.field-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/*---------------------------------------
  LINK H4 COLOR TRANSITION FIX
-----------------------------------------*/
a.text-dark h4 {
    transition: color 0.3s ease;
}

a.text-dark h4:hover {
    color: #0d6efd !important;
}

/* ==== MOBILE: BACKGROUND BERGERAK IKUT SCROLL ==== */
@media screen and (max-width: 768px) {
  .sc-pr {
    background-attachment: scroll;  /* mengikuti scroll */
    background-position: center top; 
    background-size: cover;         /* tetap memenuhi layar */
    background-repeat: no-repeat;
  }
}

/* ===== EVENT CARD ===== */
.event-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover hanya untuk device yang benar-benar support hover (desktop) */
@media (hover: hover) {
    .event-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.12);
    }
}

/* Efek klik untuk semua device */
.event-box:active {
    transform: scale(0.98);
}

/* IMAGE */
.event-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.event-content {
    padding: 14px;
    position: relative;   /* memastikan tombol tidak tertutup */
    z-index: 2;
}

.event-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.event-content p {
    font-size: .9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Pastikan tombol selalu bisa diklik */
.event-content a {
    position: relative;
    z-index: 5;
}

/* ===== SWIPER / SLIDER ===== */
.event-slider {
    padding: 12px 8px 36px;
    position: relative;
    overflow: hidden;
}

/* 🔥 PENTING: BIAR TIDAK PERNAH BERHENTI */
.event-slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: linear !important;
}

/* ukuran card slider (WAJIB FIXED) */
.event-slider .swiper-slide {
    width: 280px;      /* jangan auto */
    height: auto;
    margin-right: 16px;
}

/* ===== NAV BUTTON ===== */
/* ❗ DISARANKAN DIMATIKAN JIKA MODE AUTO CONTINUOUS */
.event-slider .swiper-button-next,
.event-slider .swiper-button-prev {
    display: none; /* 🔥 ini kunci agar autoplay tidak pause */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .event-image-wrapper {
        height: 150px;
    }

    .event-slider .swiper-slide {
        width: 240px;
        margin-right: 14px;
    }
}

.event-date {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}



.map-full {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}


/* ================= SPONSOR ================= */

.sponsor-section {
    padding: 10px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* WRAPPER */
.sponsor-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* TRACK */
.sponsor-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: sponsorScroll 25s linear infinite;

    /* 🔥 INI YANG MEMPERBAIKI BUG KLIK */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* LINK */
.sponsor-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* 🔥 KUNCI AGAR POSISI KLIK = POSISI VISUAL */
    position: relative;
    transform: translateZ(0);
    z-index: 5;
}

/* LOGO */
.sponsor-track img {
    height: 60px;
    width: auto;
    transition: 0.3s;
    display: block;
    pointer-events: auto;
}

/* HOVER */
.sponsor-track img:hover {
    transform: scale(1.05);
}

/* ANIMASI */
@keyframes sponsorScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


/* =====================================
   FINAL FIX: NAVBAR IKUT SCROLL
===================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* =======================================
   WARNA JUDUL SECTION - BSS BINTARO
======================================= */

/* Semua judul section (WHO / OUR) */
.section-title,
.section-title span {
    color: #1E5AA8;
}

/* Judul About */
.about h3 {
    color: #1E5AA8;
}

/* (Opsional) Pertegas judul */
.section-title {
    font-weight: 800;
}

.section-title span {
    font-weight: 900;
}

/* ================= TESTIMONIAL ================= */

.testimonial-section {
    padding: 80px 0;
    background: #fff;
    overflow-x: hidden; /* ⬅️ pengaman utama */
}

.testimonial-header {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* ================= SLIDER ================= */
.testimonial-slider {
    position: relative;
    overflow: hidden; /* ✅ WAJIB: supaya tidak keluar layar */
    width: 100%;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

/* ================= 1 SLIDE ================= */
.testimonial-group {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 60px;
    box-sizing: border-box;
}

/* ================= LINK WRAPPER ================= */
.testimonial-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ================= ITEM ================= */
.testimonial-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* 🔥 ZIG ZAG FIX */
.testimonial-item-link:nth-child(even) .testimonial-item {
    flex-direction: row-reverse;
}

/* ================= AVATAR ================= */
.testimonial-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #000;
    background: #fff;
    flex-shrink: 0;
}

/* ================= BOX ================= */
.testimonial-box {
    background: #f7cf4a;
    padding: 20px 25px;
    border-radius: 16px;
    max-width: 420px;
    position: relative;
    transition: 0.3s ease;
    box-sizing: border-box;
}

/* ================= TEXT ================= */
.testimonial-box h5 {
    font-weight: 800;
    margin-bottom: 6px;
}

.testimonial-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ================= HOVER ================= */
.testimonial-item-link:hover .testimonial-box {
    transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .testimonial-group {
        padding: 0 20px;
    }

    .testimonial-item {
        flex-direction: column !important;
        text-align: center;
    }

    .testimonial-box {
        max-width: 100%;
    }
}

/* ================= OUR EVENT TABS ================= */
#section_5 .nav-tabs {
    border-bottom: none;
    gap: 16px;
}

/* TAB NORMAL */
#section_5 .nav-tabs .nav-link {
    width: auto;
    border-left: none;
    border-radius: 14px;
    padding: 18px 30px;
    background: #fff;
    font-weight: 600;
    color: #1E5AA8 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* HOVER */
#section_5 .nav-tabs .nav-link:hover {
    background: rgb(245, 202, 72) !important;
    color: #1E5AA8 !important;
    transform: translateY(-3px);
}

/* ACTIVE */
#section_5 .nav-tabs .nav-link.active {
    background: rgb(245, 202, 72) !important;
    color: #1E5AA8 !important;
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* FOCUS (hilangkan biru Bootstrap) */
#section_5 .nav-tabs .nav-link:focus {
    color: #1E5AA8 !important;
}

/* MOBILE */
@media (max-width: 768px) {
    #section_5 .nav-tabs .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
}

.wa-float:hover {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.05);
}

html, body {
    height: 100%;
}



