/**
* Template Name: Evently
* Template URL: https://bootstrapmade.com/evently-bootstrap-events-template/
* Updated: Jul 19 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", 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: "Rubik", sans-serif;
  --nav-font: "Kanit", sans-serif;
}

/* 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: #40372e;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #281a0c;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7879FF;
  /* 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: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #7879FF;
  /* 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: #40372e;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #7879FF;
  /* 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: #fffbf7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #100901;
  --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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  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-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-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);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(34, 18, 2, 0.9);
}

/*--------------------------------------------------------------
# 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,
  .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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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 {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.25rem;      /* setara Bootstrap h2 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-title p {
  font-size: 1rem;         /* Bootstrap body */
  line-height: 1.6;
  margin: 0;
  color: #6c757d;          /* text-muted */
}


.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/events/showcase-1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }
}

.hero .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}

@media (max-width: 768px) {
  .hero .hero-content {
    padding: 100px 0 60px;
  }
}

.hero .hero-text {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .hero .hero-text {
    margin-bottom: 40px;
  }
}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .hero .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.hero .hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

.hero .event-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero .event-details {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

.hero .detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero .detail-item i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero .detail-item {
    font-size: 1rem;
  }
}

.hero .countdown-section {
  margin-bottom: 50px;
}



.hero .countdown-label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


.hero .countdown {
  gap: 30px;
  margin-bottom: 0;
}

/* MOBILE: countdown 4 sejajar dan PASTI terlihat */
@media (max-width: 768px) {
  .hero .countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    overflow: hidden; /* cegah keluar layar */
  }

  .hero .countdown div {
    flex: 1;                 /* otomatis mengecil */
    min-width: 0;            /* PENTING agar bisa menyusut */
    padding: 6px 4px;        /* kecilkan padding */
    text-align: center;
  }

  .hero .countdown div h3 {
    font-size: 14px;         /* angka countdown */
    line-height: 1.1;
  }

  .hero .countdown div span {
    font-size: 10px;         /* label (Days, Hours, dll) */
  }
}



.hero .countdown div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero .countdown div:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}



.hero .countdown div h4 {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color) 90%, white 15%);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.hero .btn-cta {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero .btn-cta {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 160px;
  }
}

.hero .btn-cta.btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .btn-cta.btn-primary:hover {
  transform: translateY(-2px);
}

.hero .btn-cta.btn-secondary {
  background: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-cta.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero .cta-note {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .hero .cta-note {
    font-size: 0.9rem;
  }
}

.hero .sponsors-section {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}

@media (max-width: 768px) {
  .hero .sponsors-section {
    padding-top: 30px;
  }
}

.hero .sponsors-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .sponsors-label {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
}

.hero .sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero .sponsors-logos {
    gap: 24px;
  }
}

.hero .sponsor-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero .sponsor-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero .sponsor-logo {
    height: 40px;
  }
}

/* Tombol agar tidak memaksa melebar */
@media (max-width: 480px) {
  .hero .btn-cta {
    min-width: auto !important;
    width: 100%;
    text-align: center;
  }
}
/* === FIX UTAMA ANTI MELEBAR UNTUK MOBILE === */
@media (max-width: 768px) {

  /* Pastikan semua isi hero tidak menyamping */
  .hero,
  .hero * {
    max-width: 100% !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }

  /* Hero container padding dikurangi */
  .hero .hero-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Event details: Pastikan turun ke bawah dan center */
  .hero .event-details {
    flex-direction: column !important;
    align-items: center;
    gap: 10px !important;
    width: 100%;
  }


  /* CTA buttons */
  .hero .cta-buttons {
    flex-direction: column !important;
    width: 100%;
  }

  /* Background jangan fixed untuk mencegah overflow */
  .hero {
    background-attachment: scroll !important;
  }
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
:root {
  --accent-color: #7879FF;
}

.intro {
  position: relative;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  transform: rotate(-15deg);
  z-index: 1;
}

.intro .container {
  position: relative;
  z-index: 2;
}

.intro .content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background-clip: text;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .intro .content h2 {
    font-size: 2.5rem;
  }
}

.intro .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.intro .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.intro .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.intro .stat-item {
  text-align: center;
  position: relative;
}

.intro .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.intro .stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.intro .stat-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  border-radius: 2px;
}

.intro .cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.intro .cta-section .btn {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .cta-section .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  border: none;
  color: var(--contrast-color);
   display: block;
  width: fit-content;   /* kunci lebar tombol */
  margin: 0 auto;       /* center presisi */
}

.intro .cta-section .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.intro .cta-section .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.intro .cta-section .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.intro .visual-section {
  position: relative;
}

.intro .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: all 0.3s ease;
}

.intro .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.intro .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}



.intro .image-wrapper .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intro .image-wrapper .floating-badge i {
  font-size: 1.1rem;
}

.intro .highlight-cards {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .intro .highlight-cards {
    flex-direction: column;
  }
}

.intro .highlight-card {
  flex: 1;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.intro .highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.intro .highlight-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro .highlight-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.intro .highlight-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.6;
}

.intro .founder-quote {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  position: relative;
  overflow: hidden;
}

.intro .founder-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-weight: bold;
  line-height: 1;
}

.intro .founder-quote .founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .founder-quote blockquote {
  margin: 0;
}

.intro .founder-quote blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .intro .founder-quote blockquote p {
    font-size: 1.1rem;
  }
}

.intro .founder-quote blockquote cite {
  display: block;
  text-align: left;
}

.intro .founder-quote blockquote cite strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.intro .founder-quote blockquote cite span {
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .intro .founder-quote {
    text-align: center;
  }

  .intro .founder-quote .founder-img {
    margin-bottom: 2rem;
  }

  .intro .founder-quote blockquote cite {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .intro .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .intro .cta-section {
    justify-content: center;
  }

  .intro .cta-section .btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================
   MOBILE FIX (≤ 768px ONLY)
   ============================ */
@media (max-width: 768px) {

  /* 1. Gambar pindah ke atas setelah header */
  .intro .visual-section {
    order: -1;             /* letakkan gambar di atas konten */
    margin-bottom: 2rem;   /* beri jarak */
  }

  /* Beri tata letak fleksibel pada row */
  .intro .row {
    display: flex;
    flex-direction: column;
  }

  /* 2. Stats grid jadi 1 kolom per baris */
  .intro .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }

  /* 3. Button jadi lebar & besar */
  .intro .cta-section {
    width: 100%;
    flex-direction: column;
  }

  .intro .cta-section .btn {
    width: 70%;
    padding: 1.3rem 1.5rem; 
    font-size: 1.05rem;
    text-align: center;
    display: block;
  margin: 0 auto;
  }

  /* 4. Buat gambar lebih proporsional di mobile */
  .intro .image-wrapper img {
    height: 260px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .intro .row {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Gambar pindah ke paling atas */
  .intro .visual-section {
    order: -1 !important;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 768px) {
  .intro .col-lg-6:nth-child(1) { order: 2; }
  .intro .col-lg-6:nth-child(2) { order: 1; }
}


/* SECTION BACKGROUND */
#reasons-run {
  padding: 60px 0;
  color: black;
}

/* TITLE */
.reasons-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  color: black;
}

/* WRAPPER */
.reasons-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  color: white;
}

/* CARD */
.reason-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 25px 20px;
  width: 180px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: .3s ease;
  background-color: #7879FF;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  background-color: #7879FF;
}

/* ICON */
.reason-card img {
  width: 60px;
  margin-bottom: 10px;
}

/* TEXT */
.reason-card p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

@media(max-width: 768px) {

  .reasons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .reason-card {
    flex: 0 0 calc(50% - 15px) !important;
  }
}




/*--------------------------------------------------------------
# Featured Speakers Section
--------------------------------------------------------------*/
.featured-speakers .speaker-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px 0 color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-speakers .speaker-card.featured {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.featured-speakers .speaker-card.featured .speaker-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.featured-speakers .speaker-card.featured .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a i {
  font-size: 16px;
}

.featured-speakers .speaker-card.featured .speaker-content {
  padding: 30px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-company {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session {
  margin-bottom: 25px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.featured-speakers .speaker-card.featured .speaker-content .btn-speaker {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-content .btn-speaker:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-speakers .speaker-card.featured .speaker-image {
    height: 250px;
  }

  .featured-speakers .speaker-card.featured .speaker-content {
    padding: 20px;
  }

  .featured-speakers .speaker-card.featured .speaker-content .speaker-name {
    font-size: 20px;
  }
}

.featured-speakers .speaker-card.compact {
  text-align: center;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.featured-speakers .speaker-card.compact .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--default-color), transparent 30%) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social {
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a {
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a i {
  font-size: 14px;
}

.featured-speakers .speaker-card.compact .speaker-image:hover .speaker-overlay {
  opacity: 1;
}

.featured-speakers .speaker-card.compact .speaker-image:hover .speaker-overlay .speaker-social {
  transform: translateY(0);
}

.featured-speakers .speaker-card.compact .speaker-image:hover img {
  transform: scale(1.05);
}

.featured-speakers .speaker-card.compact .speaker-content {
  padding: 25px 20px;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-company {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-topic {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 768px) {
  .featured-speakers .speaker-card.compact .speaker-image {
    height: 250px;
  }

  .featured-speakers .speaker-card.compact .speaker-content {
    padding: 20px 15px;
  }

  .featured-speakers .speaker-card.compact .speaker-content .speaker-name {
    font-size: 16px;
  }
}

.featured-speakers .speaker-quote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.featured-speakers .speaker-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--accent-color);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.featured-speakers .speaker-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.featured-speakers .speaker-quote blockquote p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 25px;
}

.featured-speakers .speaker-quote .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.featured-speakers .speaker-quote .quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.featured-speakers .speaker-quote .quote-author .author-info {
  text-align: left;
}

.featured-speakers .speaker-quote .quote-author .author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.featured-speakers .speaker-quote .quote-author .author-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .featured-speakers .speaker-quote {
    padding: 30px 20px;
  }

  .featured-speakers .speaker-quote::before {
    font-size: 60px;
    top: -5px;
  }

  .featured-speakers .speaker-quote blockquote p {
    font-size: 16px;
  }

  .featured-speakers .speaker-quote .quote-author {
    flex-direction: column;
    text-align: center;
  }

  .featured-speakers .speaker-quote .quote-author .author-info {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
/* Section Fasilitas Run */
.fasilitas-run {
  padding: 60px 0;
  background-color: #0000f9;
}

.fasilitas-run .section-title h2 {
  font-size: 2.4rem;
  color: white;
}
.fasilitas-run .section-title p {
  color: white;
  font-size: 1.3rem;
}
.fasilitas-card {
  border: none;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}
/* Efek saat di-hover */
.fasilitas-card:hover {
  transform: translateY(-8px); /* naik sedikit */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* bayangan lebih tebal */
}

/* FOTO FULL DI KIRI */
.fasilitas-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* LIST RUN */
.run-list li {
  margin-bottom: 6px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* MOBILE — foto di atas */
@media (max-width: 768px) {
  .fasilitas-img {
    height: 100%;
  }
}



.run-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border-top: 6px solid black;
}

.run-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Untuk 10K dibuat warna berbeda */
.run-card-10k {
  border-top: 6px solid black;
}

.run-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.run-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.run-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.run-list i {
  color: #28a745;
  font-size: 20px;
  margin-right: 10px;
}
/* Header Foto + Judul */
.fasilitas-run .run-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.fasilitas-run .run-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #007bff;
}

/* Responsif */
@media (max-width: 575.98px) {
  .run-card {
    padding: 20px;
  }

  .run-title {
    font-size: 20px;
  }
}

 .download-cta {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-left: 30px;
  margin-right: 30px;
}

.download-cta h4 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.download-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
  font-size: 1.2rem;
}

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

.download-cta .cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.download-cta .cta-buttons .btn i {
  margin-right: 8px;
}

.download-cta .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.download-cta .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.download-cta .cta-buttons .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.download-cta .cta-buttons .btn.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/events/showcase-1.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .display-4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.call-to-action .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.call-to-action .stats-wrapper {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
  text-align: center;
  padding: 1rem 0;
}

.call-to-action .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.call-to-action .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.call-to-action .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-to-action .stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.call-to-action .cta-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 2rem;
}

.call-to-action .cta-buttons .btn {
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .cta-buttons .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: transparent;
}

.call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .security-note {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.call-to-action .security-note small {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .security-note small i {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .call-to-action .display-4 {
    font-size: 2rem;
  }

  .call-to-action .stats-wrapper {
    padding: 2rem 1rem;
  }

  .call-to-action .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action .stat-item .stat-number {
    font-size: 2rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .call-to-action .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }

}

/* ==== EVENT SCHEDULE – MODERN STYLE ==== */
.event-schedule {
  background-color:  #f5f7fa;
}
.event-schedule .section-title p {
  font-size: 1.2rem;
}
.event-schedule .schedule-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 28px;
  border-radius: 18px;
  border-left: 6px solid #7879FF;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  transition: all .35s ease;
  position: relative;
}

/* Accent gradient glow on hover */
.event-schedule .schedule-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(13,110,253,0.18);
  border-left-color: #4bb8ff;
}

/* Title styling */
.event-schedule .schedule-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #003c89;
}

/* List styling */
.event-schedule .schedule-list li {
  list-style: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(to right, #f6f9ff, #ffffff);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  transition: .3s ease;
}

@media (max-width: 576px) {

  .schedule-list {
    padding-left: 0;
    margin: 0;
  }

  .schedule-list li {
    display: flex;
    align-items: flex-start;     /* teks panjang aman */
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .schedule-list li i {
    font-size: 16px;             /* ikon proporsional */
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .schedule-list li strong {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .schedule-list li {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}



/* Hover li effect */
.event-schedule .schedule-list li:hover {
  background: linear-gradient(to right, #edf4ff, #ffffff);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

/* Icon styling */
.event-schedule .schedule-list i {
  font-size: 22px;
  color: #0d6efd;
  margin-right: 10px;
  transition: .3s ease;
}

.event-schedule .schedule-list li:hover i {
  color: #4bb8ff;
  transform: scale(1.15);
}

/* Special color for 10K card */
.schedule-card-10k {
  border-left-color: #ff8800 !important;
}

.schedule-card-10k:hover {
  box-shadow: 0 12px 40px rgba(255,136,0,0.23);
}

/* Icons for 10k change color slightly */
.schedule-card-10k .schedule-list i {
  color: #ff8800;
}

.schedule-card-10k .schedule-list li:hover i {
  color: #ffa84d;
}

/* Background gradasi seperti contoh */
#size-chart {
  background: #F2F2F2;
  padding: 80px 0;
}

/* Judul */
#size-chart .chart-title {
  color: black;
  font-weight: 700;
  font-size: 32px;
}

/* Toggle Button */
.chart-toggle .toggle-btn {
  background: transparent;
  border: 2px solid black;
  color: black;
  padding: 8px 22px;
  border-radius: 25px;
  margin: 0 6px;
  font-weight: 600;
  transition: 0.3s;
}

.chart-toggle .toggle-btn.active {
  background: #7879FF;
  color: #000;
}
.chart-toggle .toggle-btn:hover {
  background: #7879FF;
  color: #000;
}

/* Card besar putih */
.chart-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  display: flex;
  gap: 190px;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  max-width: 950px; /* atau 380px sesuai selera */
  margin: 0 auto;   /* agar tetap center */
}

/* Jersey image */
.jersey-img {
  width: 180%;
  border-radius: 12px;
}

/* Table Style */
.size-table {
  width: 170%;
  border-collapse: collapse;
  font-size: 16px;
}

.size-table th {
  background: #f5f5f5;
  padding: 12px;
  border-bottom: 2px solid #e0e0e0;
  text-align: left;
  font-weight: 700;
}

.size-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #e6e6e6;
}

/* Responsive */
@media (max-width: 991px) {
  .chart-box {
    flex-direction: column;
    text-align: center;
  }

  .chart-right {
    width: 100%;
  }

  .jersey-img {
    max-width: 300px;
  }
}

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

  /* Judul */
  #size-chart .chart-title {
    font-size: 22px;
    text-align: center;
  }

  /* Toggle button */
  .chart-toggle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .chart-toggle .toggle-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  /* Card putih */
  .chart-box {
    padding: 20px;
    gap: 24px;
    max-width: 100%;
  }

  /* Gambar jersey */
  .jersey-img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  /* Table */
  .size-table {
    width: 100%;
    font-size: 14px;
  }

  .size-table th,
  .size-table td {
    padding: 8px;
    text-align: center;
  }
}

/* SECTION WRAPPER */
/* SECTION WRAPPER */
.regulasi-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.regulasi-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5px;
  color: #e63946;
}

.regulasi-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 45px;
  color: #555;
}

/* GRID - DESKTOP 1 KOLOM */
.regulasi-grid {
  display: grid;
  grid-template-columns: 1fr;          /* SATU KOLOM */
  gap: 30px;
  max-width: 900px;                    /* AGAR TIDAK TERLALU LEBAR */
  margin: 0 auto;                      /* CENTER */
}

/* CARD STYLE */
.regulasi-card {
  background: #fff;
  padding: 32px 36px;
  border-radius: 18px;
  border-left: 6px solid #7879FF;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.regulasi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* TITLE INSIDE */
.regulasi-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #333;
  font-weight: 700;
}

/* TEXT / LIST */
.regulasi-card p,
.regulasi-card ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.regulasi-card ul {
  padding-left: 18px;
}

.regulasi-card ul li {
  margin-bottom: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .regulasi-grid {
    max-width: 100%;
    padding: 0 10px;
  }

  .regulasi-title {
    font-size: 28px;
  }

  .regulasi-card {
    padding: 22px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.about .content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}

.about .content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .content .quote-section {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin: 2rem 0;
}

.about .content .quote-section blockquote {
  margin: 0;
}

.about .content .quote-section blockquote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .content .quote-section blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.about .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about .content .cta-buttons .btn-primary,
.about .content .cta-buttons .btn-secondary {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.about .content .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .content .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.about .content .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.about .content .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about .stats-grid .stat-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stats-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stats-grid .stat-card .stat-icon {
  margin-bottom: 1rem;
}

.about .stats-grid .stat-card .stat-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.about .stats-grid .stat-card .stat-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .stats-grid .stat-card .stat-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.9rem;
}

.about .audience-section {
  text-align: center;
}

.about .audience-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .audience-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
}

.about .audience-section .audience-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about .audience-section .audience-item:hover {
  background-color: var(--surface-color);
  transform: translateY(-5px);
}

.about .audience-section .audience-item:hover .audience-icon i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.about .audience-section .audience-item .audience-icon {
  margin-bottom: 1rem;
}

.about .audience-section .audience-item .audience-icon i {
  font-size: 2rem;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.about .audience-section .audience-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .audience-section .audience-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 3rem;
  }

  .about .content .cta-buttons {
    justify-content: center;
  }

  .about .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 1.8rem;
  }

  .about .content .quote-section {
    padding: 1.5rem;
  }

  .about .content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about .content .cta-buttons .btn-primary,
  .about .content .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .about .audience-section .audience-item {
    padding: 1rem 0.5rem;
  }

  .about .audience-section .audience-item .audience-icon i {
    font-size: 1.8rem;
  }

  .about .audience-section .audience-item h5 {
    font-size: 0.9rem;
  }

  .about .audience-section .audience-item p {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers .speakers-list .speaker-entry {
  margin-bottom: 2rem;
}

.speakers .speakers-list .speaker-profile {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
}

.speakers .speakers-list .speaker-profile:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transform: translateY(-3px);
}

.speakers .speakers-list .speaker-profile:hover .speaker-photo img {
  transform: scale(1.05);
}

.speakers .speakers-list .speaker-meta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.speakers .speakers-list .speaker-photo {
  flex-shrink: 0;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.speakers .speakers-list .speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.speakers .speakers-list .speaker-info {
  flex-grow: 1;
}

.speakers .speakers-list .speaker-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.speakers .speakers-list .speaker-info .speaker-position {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-color);
  margin-bottom: 3px;
}

.speakers .speakers-list .speaker-info .speaker-org {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.speakers .speakers-list .speaker-info .speaker-track {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 15%));
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 15px;
}

.speakers .speakers-list .speaker-details .speaker-topic {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.speakers .speakers-list .speaker-details .speaker-topic i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.speakers .speakers-list .speaker-details .speaker-topic span {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
  line-height: 1.4;
}

.speakers .speakers-list .speaker-details .speaker-summary {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.speakers .speakers-list .speaker-details .speaker-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speakers .speakers-list .speaker-details .speaker-actions .profile-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers .speakers-list .speaker-details .speaker-actions .profile-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-2px);
}

.speakers .speakers-list .speaker-details .speaker-actions .speaker-social {
  display: flex;
  gap: 8px;
}

.speakers .speakers-list .speaker-details .speaker-actions .speaker-social .social-link {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.speakers .speakers-list .speaker-details .speaker-actions .speaker-social .social-link:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .speakers .speakers-list .speaker-profile {
    padding: 20px;
  }

  .speakers .speakers-list .speaker-meta {
    gap: 15px;
  }

  .speakers .speakers-list .speaker-photo {
    width: 75px;
    height: 75px;
  }

  .speakers .speakers-list .speaker-info h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .speakers .speakers-list .speaker-entry {
    margin-bottom: 1.5rem;
  }

  .speakers .speakers-list .speaker-profile {
    padding: 18px;
  }

  .speakers .speakers-list .speaker-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .speakers .speakers-list .speaker-photo {
    width: 80px;
    height: 80px;
  }

  .speakers .speakers-list .speaker-details .speaker-actions {
    flex-direction: column;
    gap: 15px;
  }

  .speakers .speakers-list .speaker-details .speaker-actions .profile-btn {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .speakers .speakers-list .speaker-profile {
    padding: 15px;
  }

  .speakers .speakers-list .speaker-info h4 {
    font-size: 17px;
  }

  .speakers .speakers-list .speaker-info .speaker-position {
    font-size: 14px;
  }

  .speakers .speakers-list .speaker-details .speaker-topic {
    padding: 10px;
  }

  .speakers .speakers-list .speaker-details .speaker-topic span {
    font-size: 13px;
  }

  .speakers .speakers-list .speaker-details .speaker-summary {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Speaker Details 2 Section
--------------------------------------------------------------*/
.speaker-details-2 .speaker-profile-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper {
  position: relative;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .speaker-details-2 .speaker-profile-card .profile-image-wrapper img {
    height: 280px;
  }
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge.keynote {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
}

.speaker-details-2 .speaker-profile-card .profile-content {
  padding: 2rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-company i {
  color: var(--accent-color);
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item {
  text-align: center;
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item .stat-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
  background: color-mix(in srgb, #0077b5, transparent 95%);
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  background: color-mix(in srgb, #1da1f2, transparent 95%);
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.website:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.speaker-details-2 .speaker-highlight {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.speaker-details-2 .speaker-highlight .quote-container {
  position: relative;
}

.speaker-details-2 .speaker-highlight .quote-container .quote-icon {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-details-2 .speaker-highlight .quote-container .quote-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.speaker-details-2 .speaker-highlight .quote-container blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  margin: 0;
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .speaker-details-2 .speaker-highlight .quote-container blockquote {
    font-size: 1.1rem;
    padding-left: 2rem;
  }
}

.speaker-details-2 .speaker-biography,
.speaker-details-2 .session-schedule {
  margin-bottom: 2.5rem;
}

.speaker-details-2 .speaker-biography .section-header,
.speaker-details-2 .session-schedule .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.speaker-details-2 .speaker-biography .section-header h3,
.speaker-details-2 .session-schedule .section-header h3 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin: 0;
  white-space: nowrap;
}

.speaker-details-2 .speaker-biography .section-header .header-line,
.speaker-details-2 .session-schedule .section-header .header-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.speaker-details-2 .speaker-biography .bio-content p,
.speaker-details-2 .session-schedule .bio-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas,
.speaker-details-2 .session-schedule .bio-content .expertise-areas {
  margin-top: 2rem;
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas h4,
.speaker-details-2 .session-schedule .bio-content .expertise-areas h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas .tags-list,
.speaker-details-2 .session-schedule .bio-content .expertise-areas .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas .tags-list .expertise-tag,
.speaker-details-2 .session-schedule .bio-content .expertise-areas .tags-list .expertise-tag {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.speaker-details-2 .schedule-timeline {
  position: relative;
  padding-left: 2rem;
}

.speaker-details-2 .schedule-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.speaker-details-2 .schedule-timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.speaker-details-2 .schedule-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.speaker-details-2 .schedule-timeline .timeline-item.featured .timeline-content {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 8px;
  border: 3px solid var(--surface-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.keynote {
  background: var(--accent-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.workshop {
  background: #10b981;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.panel {
  background: #8b5cf6;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.keynote {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.workshop {
  background: #10b981;
  color: white;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.panel {
  background: #8b5cf6;
  color: white;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-name {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
    grid-template-columns: 1fr;
  }
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-summary {
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.speaker-details-2 .speaker-cta {
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details-2 .speaker-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .speaker-details-2 .speaker-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.speaker-details-2 .speaker-cta .cta-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: center;
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-secondary {
  background: var(--heading-color);
  color: var(--background-color);
  border: 2px solid var(--heading-color);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-secondary:hover {
  background: transparent;
  color: var(--heading-color);
  transform: translateY(-2px);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-outline {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-outline:hover {
  background: var(--default-color);
  color: var(--background-color);
  border-color: var(--default-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Tickets Section
--------------------------------------------------------------*/
.tickets .ticket-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.tickets .ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tickets .ticket-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.tickets .ticket-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.tickets .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === MOBILE: Popular Badge lebih kecil & proporsional === */
@media (max-width: 576px) {
  .tickets .popular-badge {
    top: -8px;                /* lebih dekat ke card */
    padding: 4px 12px;        /* diperkecil */
    font-size: 10px;          /* skala mobile */
    border-radius: 14px;
    letter-spacing: 0.3px;
    font-weight: 600;
  }
}


.tickets .ticket-header {
  text-align: center;
  margin-bottom: 20px;
}

.tickets .ticket-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.tickets .ticket-header .ticket-price {
  margin-bottom: 10px;
}

.tickets .ticket-header .ticket-price .currency {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 600;
  vertical-align: top;
}

.tickets .ticket-header .ticket-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.tickets .ticket-header .ticket-price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.tickets .ticket-header .ticket-price .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-right: 10px;
}

.tickets .ticket-header .ticket-duration {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.tickets .ticket-body {
  margin-bottom: 30px;
}

.tickets .ticket-body .ticket-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tickets .ticket-body .ticket-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--default-color);
}

.tickets .ticket-body .ticket-features li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tickets .ticket-body .ticket-features li:last-child {
  margin-bottom: 0;
}

.tickets .ticket-footer {
  text-align: center;
}

.tickets .ticket-footer .btn-ticket {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  width: 100%;
  margin-bottom: 15px;
}

.tickets .ticket-footer .btn-ticket:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.tickets .ticket-footer .availability-info {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.tickets .ticket-info-bar {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.tickets .ticket-info-bar .countdown-info {
  margin-bottom: 30px;
}

.tickets .ticket-info-bar .countdown-info h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tickets .ticket-info-bar .countdown-info h4 i {
  color: var(--accent-color);
  margin-right: 10px;
}

.tickets .ticket-info-bar .countdown-info .countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.tickets .ticket-info-bar .countdown-info .countdown>div {
  background: var(--surface-color);
  padding: 20px 15px;
  border-radius: 10px;
  min-width: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tickets .ticket-info-bar .countdown-info .countdown>div h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0 0 5px 0;
  line-height: 1;
}

.tickets .ticket-info-bar .countdown-info .countdown>div h4 {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tickets .ticket-info-bar .support-info p {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--default-color);
}

.tickets .ticket-info-bar .support-info .contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.tickets .ticket-info-bar .support-info .contact-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.tickets .ticket-info-bar .support-info .divider {
  margin: 0 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 768px) {
  .tickets .ticket-card {
    padding: 30px 20px;
  }

  .tickets .ticket-card.featured {
    transform: none;
  }

  .tickets .ticket-card.featured:hover {
    transform: translateY(-5px);
  }

  .tickets .ticket-header .ticket-price .amount {
    font-size: 36px;
  }

  .tickets .ticket-info-bar {
    padding: 30px 20px;
  }

  .tickets .ticket-info-bar .countdown {
    gap: 15px !important;
  }

  .tickets .ticket-info-bar .countdown>div {
    padding: 15px 10px;
    min-width: 60px;
  }

  .tickets .ticket-info-bar .countdown>div h3 {
    font-size: 24px;
  }

  .tickets .ticket-info-bar .countdown>div h4 {
    font-size: 12px;
  }

  .tickets .ticket-info-bar .support-info .divider {
    display: block;
    margin: 10px 0;
  }
}
/* Ubah layout Tickets menjadi 2 kolom menyamping TANPA ubah struktur */
#tickets .col-lg-4 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

/* Mobile tetap 1 kolom (otomatis) */
@media (max-width: 768px) {
  #tickets .col-lg-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
/* Tambah jarak antar kolom (horizontal & vertical) */
#tickets .row {
  gap: 25px !important;      /* jarak antar kartu */
}

/* Karena pakai flex 50%, kita kecilkan sedikit supaya jarak tidak memaksa turun */
#tickets .col-lg-4 {
  flex: 0 0 calc(50% - 12.5px) !important;
  max-width: calc(50% - 12.5px) !important;
}
/* Mengecilkan ukuran box (kartu) */
#tickets .col-lg-4 {
  flex: 0 0 45% !important;          /* dulu 50%, sekarang lebih kecil */
  max-width: 45% !important;
}

/* Kurangi padding dalam card */
#tickets .ticket-card {
  padding: 28px 22px !important;     /* dulu 40px 30px */
}

/* Atur gap antar card supaya tetap seimbang */
#tickets .row {
  gap: 20px !important;
}

/* Mobile tetap 1 kolom full */
@media (max-width: 768px) {
  #tickets .col-lg-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
/* Kurangi jarak antara judul dan box */
#tickets .section-title {
  margin-bottom: 20px !important;   /* sebelumnya terlalu besar, kini lebih rapat */
}

/* Sedikit kurangi jarak vertikal baris pertama */
#tickets .row.gy-4 {
  --bs-gutter-y: 20px !important;   /* dari 2–3rem menjadi lebih rapat */
}


/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 5%);
}

.buy-tickets .ticket-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.buy-tickets .event-info {
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 30px;
}

.buy-tickets .event-info h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.buy-tickets .event-info .event-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.buy-tickets .event-info .event-meta span {
  display: flex;
  align-items: center;
  color: var(--default-color);
  font-size: 14px;
}

.buy-tickets .event-info .event-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .buy-tickets .event-info .event-meta {
    flex-direction: column;
    gap: 15px;
  }
}

.buy-tickets .ticket-types {
  margin-bottom: 40px;
}

.buy-tickets .ticket-types h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}

.buy-tickets .ticket-types .ticket-option {
  margin-bottom: 20px;
}

.buy-tickets .ticket-types .ticket-option input[type=radio] {
  display: none;
}

.buy-tickets .ticket-types .ticket-option .ticket-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}

.buy-tickets .ticket-types .ticket-option .ticket-label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.buy-tickets .ticket-types .ticket-option input[type=radio]:checked+.ticket-label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.buy-tickets .ticket-types .ticket-option .ticket-info {
  flex: 1;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-description {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-benefits span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 8px;
  border-radius: 4px;
}

.buy-tickets .ticket-types .ticket-option .ticket-price {
  text-align: right;
}

.buy-tickets .ticket-types .ticket-option .ticket-price .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.buy-tickets .ticket-types .ticket-option .ticket-price .current-price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .buy-tickets .ticket-types .ticket-option .ticket-label {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .buy-tickets .ticket-types .ticket-option .ticket-benefits {
    justify-content: center;
  }
}

/* WRAPPER */


.buy-tickets .ticket-form .form-group label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.buy-tickets .ticket-form .form-group input[type=text],
.buy-tickets .ticket-form .form-group input[type=email],
.buy-tickets .ticket-form .form-group input[type=tel],
.buy-tickets .ticket-form .form-group select,
.buy-tickets .ticket-form .form-group textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.buy-tickets .ticket-form .form-group input[type=text]:focus,
.buy-tickets .ticket-form .form-group input[type=email]:focus,
.buy-tickets .ticket-form .form-group input[type=tel]:focus,
.buy-tickets .ticket-form .form-group select:focus,
.buy-tickets .ticket-form .form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.buy-tickets .ticket-form .form-group input[type=text]::placeholder,
.buy-tickets .ticket-form .form-group input[type=email]::placeholder,
.buy-tickets .ticket-form .form-group input[type=tel]::placeholder,
.buy-tickets .ticket-form .form-group select::placeholder,
.buy-tickets .ticket-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.buy-tickets .ticket-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.buy-tickets .pricing-summary {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}

.buy-tickets .pricing-summary h5 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.buy-tickets .pricing-summary .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--default-color);
}

.buy-tickets .pricing-summary .summary-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.buy-tickets .pricing-summary .summary-row.total .total-price {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.buy-tickets .pricing-summary .tax-note {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

.buy-tickets .terms-checkbox,
.buy-tickets .newsletter-checkbox {
  margin-bottom: 20px;
}

.buy-tickets .terms-checkbox input[type=checkbox],
.buy-tickets .newsletter-checkbox input[type=checkbox] {
  margin-right: 10px;
}

.buy-tickets .terms-checkbox label,
.buy-tickets .newsletter-checkbox label {
  color: var(--default-color);
  font-size: 14px;
  cursor: pointer;
}

.buy-tickets .terms-checkbox label a,
.buy-tickets .newsletter-checkbox label a {
  color: var(--accent-color);
  text-decoration: none;
}

.buy-tickets .terms-checkbox label a:hover,
.buy-tickets .newsletter-checkbox label a:hover {
  text-decoration: underline;
}

.buy-tickets .form-submit {
  text-align: center;
  margin-top: 30px;
}

.buy-tickets .form-submit .btn-submit {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}

.buy-tickets .form-submit .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.buy-tickets .form-submit .btn-submit:active {
  transform: translateY(0);
}

.buy-tickets .security-info {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 30px;
}

.buy-tickets .security-info .security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.buy-tickets .security-info .security-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}

.buy-tickets .security-info .security-badges .badge-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.buy-tickets .security-info .payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.buy-tickets .security-info .payment-methods .payment-label {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

.buy-tickets .security-info .payment-methods .payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buy-tickets .security-info .payment-methods .payment-icons i {
  color: var(--accent-color);
  font-size: 24px;
}

.buy-tickets .security-info .payment-methods .payment-icons .payment-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}

@media (max-width: 768px) {
  .buy-tickets .security-info .security-badges {
    flex-direction: column;
    gap: 15px;
  }

  .buy-tickets .security-info .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .buy-tickets .ticket-form-wrapper {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .venue-content h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.venue-2 .venue-content .venue-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 500;
}

.venue-2 .venue-content .venue-address i {
  font-size: 1.2rem;
}

.venue-2 .venue-content p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.venue-2 .venue-image {
  position: relative;
}

.venue-2 .venue-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-image .venue-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.venue-2 .venue-features {
  margin-bottom: 30px;
}

.venue-2 .venue-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.venue-2 .venue-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.venue-2 .venue-features .feature-item span {
  font-weight: 500;
}

.venue-2 .venue-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.venue-2 .venue-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.venue-2 .venue-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.venue-2 .venue-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.venue-2 .venue-actions .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.venue-2 .venue-actions .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.venue-2 .venue-map h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
  text-align: center;
}

.venue-2 .venue-map .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-map .map-container iframe {
  width: 100%;
  height: 400px;
}

.venue-2 .travel-info {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s ease;
}

.venue-2 .travel-info:hover {
  transform: translateY(-5px);
}

.venue-2 .travel-info .travel-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-2 .travel-info .travel-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.venue-2 .travel-info h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.venue-2 .travel-info p {
  margin: 0;
  line-height: 1.6;
}

.venue-2 .accommodation-section h4 {
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

.venue-2 .accommodation-section .hotel-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.venue-2 .accommodation-section .hotel-card:hover {
  transform: translateY(-5px);
}

.venue-2 .accommodation-section .hotel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.venue-2 .accommodation-section .hotel-card .hotel-info {
  padding: 20px;
}

.venue-2 .accommodation-section .hotel-card .hotel-info h6 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-price {
  font-weight: 600;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .venue-2 .venue-actions {
    justify-content: center;
  }

  .venue-2 .venue-actions .btn {
    flex: 1;
    min-width: 150px;
  }

  .venue-2 .venue-map .map-container iframe {
    height: 300px;
  }

  .venue-2 .travel-info {
    margin-bottom: 30px;
  }

  .venue-2 .hotel-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.sponsors .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .sponsors .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.sponsors .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

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

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}


/* Section Layanan */
#layanan .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

/* Card */
.layanan-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  height: 100%;
}

.layanan-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.layanan-title i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Rundown List */
.rundown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rundown-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  font-size: 15px;
}

.rundown-list li:last-child {
  border-bottom: none;
}

.rundown-list .time {
  width: 70px;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 16px;
}

/* Payment */
.payment-box ul {
  padding-left: 20px;
}

.bank-box {
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  padding: 15px 20px;
  border-radius: 12px;
  margin: 10px 0 20px 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.note {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Responsiveness */
@media (max-width: 768px) {
  .layanan-card {
    padding: 25px 20px;
  }

  .rundown-list .time {
    width: 60px;
  }
}


/* GENERAL */
#rundown .subtitle {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* CARD BASE */
.rundown-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
  transition: 0.35s ease;
  height: 100%;
}

.rundown-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.1);
}

/* HEADER */
.badge-rundown {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.rundown-header h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--heading-color);
}

/* LIST */
.rundown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rundown-list li {
  display: flex;
  align-items: center;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.rundown-list li:last-child {
  border-bottom: none;
}

.rundown-list i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 12px;
}

.rundown-list .time {
  width: 75px;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 16px;
  display: inline-block;
}

/* FOOTER */
.rundown-footer {
  margin-top: 25px;
}

.rundown-footer .note {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* SPECIAL COLOR THEMES */
.rundown-10k {
  border-left: 6px solid #FF5F5F;
}

.rundown-5k {
  border-left: 6px solid #5F8CFF;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rundown-card {
    padding: 28px 22px;
  }
  .rundown-list .time {
    width: 60px;
  }
}


.buy-ticket-section {
  background: #F5F5F5;
}

.ticket-form-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
}

.ticket-form-card input,
.ticket-form-card select,
.ticket-form-card textarea {
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #dcdcdc;
}

.btn-run {
  background: #e5e5e5;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-run:hover,
.btn-run.active {
  background: #7879FF;
  color: #fff;
}

.payment-box {
  background: #F2F2F2;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.payment-box h5 {
  font-weight: 700;
}

.payment-box ul {
  padding-left: 20px;
}

.btn-primary {
  background: #7879FF;
  border: none;
  border-radius: 10px;
  font-weight: 600;
}

.ticket-image-box img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Category Buttons */
.btn-run {
  background: #E5E5E5;
  padding: 10px 26px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-run.active,
.btn-run:hover {
  background: #7879FF;
  color: #fff;
}

/* Size Buttons */
.btn-size {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-size:hover {
  background: #7879FF;
  color: #fff;
  border-color: #7879FF;
}

/* Quantity */
.quantity-box .qty-btn {
  width: 40px;
  height: 40px;
  background: #E5E5E5;
  border-radius: 10px;
  border: none;
  font-size: 20px;
  font-weight: bold;
}

.qty-number {
  font-size: 20px;
  font-weight: 700;
}

/* Buy Button */
.btn-primary {
  background: #7879FF;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
}
/* BUY TICKET STYLE */

.btn-run {
  background: #E5E5E5;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}
.btn-run.active,
.btn-run:hover {
  background: #7879FF;
  color: #fff;
}

.btn-size {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 500;
}
.btn-size:hover {
  background: #7879FF;
  color: #fff;
  border-color: #7879FF;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #E5E5E5;
  font-size: 22px;
  font-weight: bold;
}

.qty-number {
  font-size: 20px;
  font-weight: bold;
}

/* POPUP */
.modal-content {
  border-radius: 16px;
}

.payment-box {
  background: #F5F5F5;
  border-radius: 10px;
}

.btn-run {
  background: #E5E5E5;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}
.btn-run.active,
.btn-run:hover {
  background: #7879FF;
  color: #fff;
}

.btn-size {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 500;
}
.btn-size:hover {
  background: #7879FF;
  color: #fff;
  border-color: #7879FF;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #E5E5E5;
  font-size: 22px;
}

.payment-box {
  background: #F5F5F5;
  border-radius: 10px;
}
.btn-size {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
}
.btn-size.active {
  background: #7879FF;
  color: #fff;
  border-color: #7879FF;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #E5E5E5;
  font-size: 22px;
  cursor: pointer;
}

.payment-box {
  background: #F5F5F5;
  border-radius: 10px;
}

#popupKategoriImg {
  width: 100%;
  border-radius: 12px;
}
.btn-size-sec,
.btn-size {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-size-sec.active,
.btn-size.active {
  background: #7879FF;
  color: white;
  border-color: #7879FF;
}
#jenisID {
  min-width: 100%;
}


/* ================================
   BASE STYLE
================================ */
#tabs {
  padding: 60px 0;
}

.tabs-container {
  width: 100%;
  max-width: 1150px;
  margin: auto;
}

/* ================================
   TAB BUTTONS
================================ */
.custom-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.custom-tab-btn {
  padding: 12px 22px;
  background: #f2f3ff;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: 0.3s ease;
  color: #444;
}

.custom-tab-btn i {
  font-size: 1.2rem;
}

.custom-tab-btn:hover {
  background: #e4e5ff;
  border-color: #7879FF;
  color: #7879FF;
}

.custom-tab-btn.active {
  background: #7879FF;
  color: #fff;
  border-color: #7879FF;
}

/* ================================
   TAB CONTENT
================================ */
.custom-tab-content {
  display: none;
}

.custom-tab-content.active {
  display: block;
}

/* ================================
   TWO COLUMN LAYOUT
================================ */
.tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.tab-left {
  flex: 1;
}

.tab-right {
  flex: 1;
  text-align: center;
}

.tab-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ================================
   ICON BADGE
================================ */
.icon-badge {
  width: fit-content;
  padding: 12px 15px;
  background: #7879FF;
  border-radius: 14px;
  margin-bottom: 15px;
}

.icon-badge i {
  font-size: 1.6rem;
  color: #fff;
}

/* ================================
   FEATURE GRID
================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 20px 0 25px;
}

.feature-item i {
  color: #7879FF;
  margin-right: 6px;
}

/* ================================
   STATS ROW
================================ */
.stats-row {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-item {
  background: #f6f7ff;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  min-width: 110px;
  flex: 1;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4A4BFF;
  margin-bottom: 5px;
}

/* ================================
   RESPONSIVE — TABLET
================================ */
@media (max-width: 991px) {
  .tab-row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    justify-content: center;
  }
}

/* ================================
   RESPONSIVE — MOBILE
================================ */
@media (max-width: 600px) {
  .custom-tab-btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    min-width: 100px;
  }

  .feature-grid {
    gap: 8px;
  }
}
/* ============================
   REGULATIONS MOBILE STYLE
   ============================ */
@media (max-width: 768px) {

  /* Container Section */
  .regulasi-section {
    padding: 40px 24px; /* kanan kiri lebih longgar */
  }

  /* Title utama */
  .regulasi-section h2.section-title {
    font-size: 26px;
    text-align: center;
    line-height: 1.3;
    color: #7879FF;
    margin-bottom: 25px;
    padding: 0 10px; /* tambah ruang */
  }

  .regulasi-section p.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: #444;
    margin-top: -10px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* Card setiap bagian */
  .regulasi-box {
    background: #ffffff;
    padding: 22px 20px; /* kiri-kanan tambah */
    margin-bottom: 26px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }

  /* Heading setiap card */
  .regulasi-box h3 {
    font-size: 20px;
    color: #7879FF;
    font-weight: 700;
    margin-bottom: 12px;
    border-left: 4px solid #7879FF;
    padding-left: 10px;
  }

  /* Paragraph & list */
  .regulasi-box p,
  .regulasi-box li {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
  }

  /* List spacing */
  .regulasi-box ul {
    padding-left: 18px;
  }

  /* Footer */
  .regulasi-footer {
    margin-top: 40px;
    padding: 0 10px;
    text-align: center;
  }
}
/* ============================
   FIX SPACING MOBILE BETUL-BETUL ADA JARAK
   ============================ */
@media (max-width: 768px) {

  /* Paksa semua container punya padding kiri-kanan besar */
  .container,
  .tabs-container,
  .regulasi-section,
  #tabs .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* Tambah jarak aman agar tidak nempel */
  .custom-tab-content,
  .regulasi-box {
    margin-left: 4px;
    margin-right: 4px;
  }

  /* Membuat tab button tidak mepet */
  .custom-tabs {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {

  /* Pastikan feature grid rata kiri */
  .feature-grid {
    justify-content: flex-start !important;
    text-align: left !important;
    display: grid;
    grid-template-columns: 1fr; /* satu kolom di HP */
    gap: 10px;
  }

  /* Item juga dipaksa rata kiri */
  .feature-item {
    text-align: left !important;
    justify-content: flex-start !important;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Kadang icon-nya masih center → paksa kiri */
  .feature-item i {
    margin-right: 6px;
    margin-left: 0 !important;
  }
}
#qrisBox {
  border: 2px dashed #0d6efd;      /* warna primary bootstrap */
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

#qrisBox img {
  max-width: 220px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

#qrisBox p {
  font-size: 0.9rem;
}

.faq-section {
margin-bottom: 50px;
}

.faq-title {
  text-align: center;
}
.faq-subtitle {
  text-align: center;
}


.faq-list {
max-width: 800px;
margin: 0 auto;
}


.faq-item {
background: #fff;
border-radius: 14px;
margin-bottom: 16px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


.faq-question {
width: 100%;
background: none;
border: none;
padding: 18px 22px;
font-size: 16px;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}


.faq-question .icon {
font-size: 22px;
transition: transform 0.3s ease;
}


.faq-item.active .icon {
transform: rotate(45deg);
}


.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
padding: 0 22px;
}


.faq-item.active .faq-answer {
max-height: 200px;
padding-bottom: 18px;
}


.faq-answer p {
margin: 0;
color: #555;
line-height: 1.6;
}


/* Mobile */
@media (max-width: 768px) {
.faq-title {
font-size: 24px;
}


.faq-question {
font-size: 15px;
}
}

.route-section {
  padding: 80px 20px;
  background: #f7f8fc;
}

.route-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.route-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* Preview map */
.route-preview {
  position: relative;   /* PENTING */
}

.route-preview img {
  max-width: 420px;
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* CARD OVERLAY */
.route-card {
  position: absolute;
  right: 18px;
  bottom: 18px;

  background: #0e0e2c;
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  text-align: center;

  min-width: 140px;
  max-width: 160px;
}

/* Text 5KM */
.route-distance {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Button */
.route-btn {
  background: #7879FF;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}


/* Detail image */
.route-detail {
  display: none;
  margin-bottom: 60px;
}

.route-detail img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.route-detail.show {
  display: block;
}

@media (max-width: 768px) {

  /* Grid kembali normal (stack ke bawah) */
  .route-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;

    overflow-x: visible;
  }

  /* Card wajib full width */
  .route-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Box gambar full width */
  .route-img-box {
    width: 100%;
  }

  .route-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Info juga full */
  .route-info {
    width: 100%;
  }
}


.route-detail {
  display: none;
  margin-top: 30px;
}

.route-detail.show {
  display: block;
}

/* SECTION */
.gallery-section {
  padding: 80px 20px;
  background: #f7f8fc;
}

/* TITLE */
.gallery-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.gallery-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* TABLET */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    font-size: 26px;
  }

  .gallery-subtitle {
    font-size: 14px;
  }
}



:root {
        --navy-main: #001f3f;
        --gold-accent: #ffc107;
        --white: #ffffff;
    }

    body {
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', sans-serif;
    }

    /* Section Utama */
    .gallery-section {
        padding: 60px 5%;
        background-color: #f9f9f9;
        text-align: center;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-header h2 {
        font-size: 1.8rem; 
        color: var(--navy-main);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0;
    }

    /* --- GRID SYSTEM (DEFAULT DESKTOP: 4 KOLOM) --- */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* --- CARD ITEM --- */
    .gallery-item {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        position: relative;
        cursor: pointer;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 31, 63, 0.2);
    }

    .img-frame {
        width: 100%;
        height: 250px; 
        position: relative;
        overflow: hidden;
    }

    .img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Efek Zoom saat Hover */
    .gallery-item:hover .img-frame img {
        transform: scale(1.1);
    }

    /* Ikon Search/Zoom */
    .zoom-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 31, 63, 0.4); 
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .zoom-overlay {
        opacity: 1;
    }

    .zoom-overlay i {
        color: var(--gold-accent);
        font-size: 2rem;
    }

    /* Caption */
    .card-caption {
        background-color: var(--navy-main);
        padding: 15px;
        text-align: center;
    }

    .card-caption h4 {
        margin: 0;
        color: var(--white);
        font-size: 1.1rem; /* Sedikit diperkecil agar aman */
        font-weight: 600;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    /* --- MODAL (POPUP) STYLE --- */
    .modal {
        display: none; 
        position: fixed; 
        z-index: 1000; 
        left: 0; top: 0; width: 100%; height: 100%; 
        background-color: rgba(0, 0, 0, 0.95); 
        align-items: center; 
        justify-content: center;
        backdrop-filter: blur(5px);
        padding: 20px;
        box-sizing: border-box;
    }

    .modal-content {
        background-color: transparent;
        width: auto;
        max-width: 100%;
        max-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        animation: zoomIn 0.3s ease;
    }

    .modal-img-wrapper img {
        max-width: 95vw;
        max-height: 90vh;
        width: auto; 
        height: auto;
        object-fit: contain;
        border-radius: 4px;
        box-shadow: 0 0 50px rgba(0,0,0,0.8);
        display: block;
    }

    /* --- TOMBOL CLOSE (DESKTOP) --- */
    .close-btn {
        position: fixed; 
        top: 40px;       
        right: 40px;     
        z-index: 2147483647; 
        color: #ffffff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.5); 
        width: 60px; 
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0; 
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.3s ease;
    }

    .close-btn:hover { 
        background-color: #ffc107; 
        color: #000;
        border-color: #ffc107;
        transform: rotate(90deg) scale(1.1);
    }

    @keyframes zoomIn {
        from {transform: scale(0.9); opacity: 0;}
        to {transform: scale(1); opacity: 1;}
    }

    /* =========================================
       RESPONSIVE / MOBILE VERSION (KUNCI PERBAIKAN)
       ========================================= */
    
    /* Tablet & Laptop Kecil (Max Width 992px) */
    @media (max-width: 992px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr); /* Ubah jadi 2 Kolom */
        }
        .gallery-header h2 { font-size: 2.8rem; }
    }

    /* HP / Mobile (Max Width 600px) */
    @media (max-width: 600px) {
        /* Ubah Grid jadi 1 Kolom (Memanjang ke bawah) */
        .gallery-grid {
            grid-template-columns: 1fr; 
            gap: 30px; /* Jarak antar kartu lebih renggang */
        }
        
        .gallery-section {
            padding: 40px 5%; /* Padding luar dikurangi */
        }

        .gallery-header h2 { 
            font-size: 2.2rem; /* Ukuran font judul disesuaikan */
        }

        .card-caption h4 {
            font-size: 1.3rem; /* Font caption disesuaikan */
        }

        .img-frame {
            height: 220px; /* Tinggi gambar di HP */
        }

        /* Perbaikan Posisi Tombol Close di HP */
        .close-btn {
            top: 15px;   /* Lebih mepet ke atas */
            right: 15px; /* Lebih mepet ke kanan */
            width: 45px; /* Ukuran tombol lebih kecil */
            height: 45px;
            font-size: 30px; /* Ukuran ikon X lebih kecil */
        }
    }

    /* --- PALET WARNA (ALL NAVY) --- */
    :root {
        --navy-main: #001f3f;       /* Biru Navy Gelap (Utama) */
        --navy-accent: #004080;     /* Biru Navy Sedikit Terang (Hover/Highlight) */
        --navy-faint: #e6f0ff;      /* Biru Sangat Pucat (Background Badge) */
        --bg-color: #f5f8fb;        /* Background Halaman (Putih Kebiruan) */
        --white: #ffffff;
        --text-heading: #001f3f;    /* Teks Judul Hitam Kebiruan */
        --text-body: #3a4b5f;       /* Teks Isi Abu Kebiruan */
    }

    /* --- LAYOUT UTAMA --- */
    .faq-section {
        padding: 80px 5%; 
        background-color: linear-gradient(135deg, #001f3f 0%, #003366 100%);
        position: relative;
        overflow: hidden; 
        font-family: 'Segoe UI', sans-serif;
    }

    /* --- BACKGROUND GARIS (NAVY) --- */
    .bg-line-container {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 0; 
        pointer-events: none; 
        overflow: hidden;
    }

    .bg-line-container svg {
        width: 100%; height: 100%;
        position: absolute; top: 0;
    }

    .the-wave-line {
        opacity: 0.12; /* Sedikit lebih tebal opasitasnya agar terlihat biru */
        filter: drop-shadow(0px 10px 5px rgba(0,31,63,0.1)); 
        animation: floatLine 6s ease-in-out infinite alternate; 
    }

    @keyframes floatLine {
        from { transform: translateY(0); }
        to { transform: translateY(-20px); }
    }

    .konten-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 2; 
    }

    /* --- HEADER (FONT DIPERBESAR) --- */
    .header-faq {
        text-align: center;
        margin-bottom: 70px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .badge-faq {
        background: var(--navy-faint); /* Biru Pucat */
        color: var(--navy-main);
        font-weight: 800;
        font-size: 0.9rem; /* Diperbesar */
        padding: 8px 18px;
        border-radius: 50px;
        letter-spacing: 1.5px;
        display: inline-block;
        margin-bottom: 20px;
    }

    .judul-faq {
 font-size: 2.6rem;
        margin: 0 0 20px 0;
        color: var(--text-heading);
        font-weight: 900;
        line-height: 1.1;
    }

    .text-highlight {
        color: var(--navy-main);
        position: relative;
        display: inline-block;
        z-index: 1;
    }
    
    /* Highlight Garis Bawah (Ganti Biru) */
    .text-highlight::after {
        content: '';
        position: absolute;
        bottom: 5px; left: 0; width: 100%; height: 15px; /* Lebih tebal */
        background-color: #b3d1ff; /* Biru Langit Muda */
        opacity: 0.6;
        z-index: -1;
    }

    .deskripsi-faq {
        color: var(--text-body);
        font-size: 1.1rem; /* Deskripsi Besar */
        margin: 0;
        line-height: 1.6;
    }

    /* --- GRID --- */
    .faq-grid {
    display: grid;
    grid-template-rows: repeat(6, auto); /* jumlah baris maksimal */
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 30px;
}


    .faq-column {
        display: flex; flex-direction: column; gap: 25px;
    }

    /* --- CARD --- */
    .faq-card {
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 31, 63, 0.08); 
        border: 1px solid rgba(0,31,63,0.05);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
        border-color: rgba(0, 31, 63, 0.2);
    }

    /* --- FAQ HEADER (FONT DIPERBESAR) --- */
    .faq-header {
        width: 100%;
        padding: 20px; /* Padding lebih lega */
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        position: relative;
    }

    /* Indikator Samping (Sekarang Biru Navy) */
    .faq-header::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 6px;
        background-color: var(--navy-main); /* GANTI KUNING JADI NAVY */
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .faq-header.active::before {
        transform: scaleY(1);
    }

    .faq-title {
        font-size: 1.05rem; /* Font Pertanyaan BESAR */
        font-weight: 700;
        color: var(--text-heading);
        padding-right: 20px;
       line-height: 1.4;
    }

    .faq-header.active .faq-title {
        color: var(--navy-accent); /* Warna aktif jadi biru terang */
    }

    /* --- ICON BOX --- */
    .faq-icon-box {
        width: 32px;
  height: 32px; /* Icon lebih besar */
        background: rgba(0, 31, 63, 0.05);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .icon-state {
        font-size: 15px;
        color: var(--navy-main); /* Icon Biru */
        transition: transform 0.3s ease;
    }

    .faq-header.active .faq-icon-box {
        background-color: var(--navy-main); /* Background Biru Navy */
    }

    .faq-header.active .icon-state {
        color: var(--white);
        transform: rotate(45deg); 
    }

    /* --- BODY CONTENT (FONT DIPERBESAR) --- */
    .faq-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: var(--white);
    }

    .faq-text {
        color: var(--text-body);
        padding: 0 20px 22px 20px;
  font-size: 1rem;     /* sebelumnya 1.6rem */
  line-height: 1.7;
    }

    /* --- RESPONSIVE MOBILE --- */
    @media (max-width: 900px) {
        .faq-grid { grid-template-columns: 1fr; }
        
        /* Penyesuaian font di HP agar tidak terlalu raksasa */
        .judul-faq { font-size: 2.8rem; }
        .faq-title { font-size: 1.2rem; }
        .faq-text { font-size: 1.1rem; }
        
        .header-faq { margin-bottom: 50px; }
        .faq-header { padding: 25px; }
        .the-wave-line { opacity: 0.08; }
    }
    @media (max-width: 576px) {

  .judul-faq {
    font-size: 1.8rem;   /* bukan lagi ukuran hero */
    line-height: 1.2;
  }

  .faq-title {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .faq-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .header-faq {
    margin-bottom: 30px;
  }

  .faq-header {
    padding: 16px;
  }

  .the-wave-line {
    opacity: 0.05;
  }
}


    /* Countdown Timer */
    .countdown-container { margin-bottom: 40px; margin-top: 10px; }
    .countdown-label { 
        font-size: 14px; letter-spacing: 4px; text-transform: uppercase; 
        margin-bottom: 20px; font-weight: 800; color: #1e40af; /* Biru Tua */
    }
    .countdown-wrapper { display: flex; justify-content: center; gap: 20px; }
    .time-box { 
        background: #ffffff; /* Kotak Putih */
        border: 1px solid #bfdbfe; /* Garis Biru Muda */
        border-radius: 16px; width: 100px; height: 105px; 
        display: flex; flex-direction: column; justify-content: center; 
        align-items: center; 
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1); /* Bayangan Biru Halus */
    }
    .time-box span:first-child { 
        font-size: 38px; font-weight: 700; line-height: 1; 
        color: #1e3a8a; /* Angka Biru Gelap */
    }
    .time-box .label { 
        font-size: 12px; margin-top: 8px; color: #64748b; font-weight: 600; 
    }
    /* MOBILE RESPONSIVE FIX */
    @media (max-width: 768px) {
        .renggang { padding-top: 30px; padding-bottom: 30px; }
        .hero-logo { width: 220px; margin-bottom: 25px; } 
        .countdown-wrapper { gap: 10px; }
        .time-box { width: 75px; height: 80px; }
        .time-box span:first-child { font-size: 26px; }
        .time-box .label { font-size: 10px; }
        .btn-container { flex-direction: column; width: 100%; gap: 15px; }
        .btn-custom { width: 100%; text-align: center; padding: 15px; }
    }

.option-row{
  display:none !important;
}

/*--------------------------------------------------------------
# awal tiket Section Section
--------------------------------------------------------------*/
/* === GLOBAL & LAYOUT === */

.option-row {
  display: none !important;
}

.brosur-wrap {
  max-width: 1100px;
  margin: 60px auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin-top: 80px;
}

@media(max-width: 900px) {
  .brosur-wrap {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 20px;
    gap: 30px;
  }
}

/* === LEFT SIDE: GALLERY & CATEGORY INFO === */
.brosur-left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brosur-main-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brosur-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.brosur-main-img:hover img {
  transform: scale(1.03);
}

.brosur-thumbs {
  display: flex;
  gap: 12px;
}

.brosur-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  opacity: 0.7;
}

.brosur-thumbs img:hover,
.brosur-thumbs img.active {
  border-color: #0d6efd;
  opacity: 1;
  transform: translateY(-2px);
}

/* === RACE CATEGORIES (Under Photo) === */
.race-categories {
  margin-top: 10px;
  display: grid;
  gap: 15px;
}

.cat-card {
  background: #f8faff;
  border: 1px solid #e1e8f5;
  border-radius: 16px;
  padding: 15px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.2s;
}

.cat-card:hover {
  background: #fff;
  border-color: #0d6efd;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
  transform: translateY(-2px);
}

.cat-icon {
  background: #0d6efd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.cat-icon.ten-k {
  background: #fd0d5e;
}

.cat-detail h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.cat-detail p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* === RIGHT SIDE: INFO & CTA === */
.brosur-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-event {
  display: inline-block;
  background: #eef2ff;
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  width: fit-content;
}

.brosur-info h1 {
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
}

.brosur-price {
  font-size: 32px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brosur-price span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.brosur-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  border-left: 4px solid #0d6efd;
  padding-left: 15px;
}

/* Info Boxes Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.info-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 15px;
  transition: 0.2s;
}

.info-box:hover {
  border-color: #ccc;
}

.info-box h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.info-box ul li {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

/* PERBAIKAN: Menggunakan kode hex \2022 agar bullet point muncul benar */
.info-box ul li::before {
  content: "\2022"; 
  color: #0d6efd;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CTA BUTTON */
.brosur-cta {
  margin-top: auto;
}

.brosur-cta button {
  width: 100%;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d6efd 0%, #0045ff 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.brosur-cta button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.4);
}

/* PERBAIKAN: Menggunakan kode hex \2794 agar panah muncul benar */
.brosur-cta button::after {
  content: "\2794"; 
  margin-left: 10px;
  transition: margin 0.2s;
}

.brosur-cta button:hover::after {
  margin-left: 15px;
}
  /* Styling Logo Bank */
    .bank-logo-img {
        height: 25px; 
        margin-bottom: 5px;
        object-fit: contain;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .bank-card-visual {
        text-align: center;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Styling Detail Pembayaran */
    .payment-detail-box {
        margin-top: 20px;
        padding: 15px;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        text-align: center;
    }
    .payment-rek-info {
        font-size: 16px;
        margin-bottom: 10px;
        color: #333;
    }
    .rek-number {
        font-weight: bold;
        font-size: 18px;
        color: #000;
        display: block;
        margin: 5px 0;
    }
    .copy-btn {
        background: #e0e0e0;
        border: none;
        padding: 5px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        transition: 0.2s;
    }
    .copy-btn:hover { background: #d0d0d0; }
    
    /* Styling QRIS */
    .qris-display img {
        max-width: 200px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    /* Styling Form Peserta Tambahan */
    .participant-card {
        border-bottom: 2px dashed #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .participant-card:last-child {
        border-bottom: none;
    }
/* === CORE STYLE === */
* { box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, sans-serif; }

/* ANIMATION */
@keyframes popUp {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* OVERLAY - GLASSMORPHISM */
.modal-overlay {
    position: fixed; inset: 0; 
    background: rgba(0,0,0,0.6); 
    backdrop-filter: blur(8px); 
    display: none; justify-content: center; align-items: start;
    z-index: 99999; 
    padding: 20px; 
    overflow: hidden; 
}

/* CONTAINER UTAMA (CARD) */
.modal-main-container {
    background: #f0f2f5; 
    width: 100%; max-width: 1000px;
    margin-top: 2vh; 
    border-radius: 20px; 
    box-shadow: 0 25px 60px rgba(0,0,0,0.3); 
    display: flex; flex-direction: column; 
    max-height: 90vh; 
    position: relative;
    animation: popUp 0.3s ease-out forwards; 
    border: 1px solid rgba(255,255,255,0.3); 
}

/* HEADER */
.modal-top-bar {
    background: #fff; padding: 18px 25px; border-bottom: 1px solid #eee; 
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0; z-index: 10;
    border-radius: 20px 20px 0 0; 
}
.modal-top-bar h2 { margin: 0; font-size: 16px; color: #333; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.close-modal { font-size: 28px; cursor: pointer; color: #888; line-height: 0.8; padding: 0 5px; transition: 0.2s; }
.close-modal:hover { color: #000; }

/* AREA SCROLL */
.modal-scroll-area {
    overflow-y: auto; 
    flex-grow: 1; 
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch; 
}

/* GRID LAYOUT */
.modal-grid-layout {
    display: grid; grid-template-columns: 1.8fr 1fr; gap: 25px; padding: 25px; align-items: start;
}

.card-style {
    background: #fff; border-radius: 16px; padding: 25px; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.02); border: 1px solid #f0f0f0;
}

/* JUDUL SECTION */
.form-section { margin-bottom: 25px; border-bottom: 1px dashed #eee; padding-bottom: 20px; }
.form-section:last-of-type { border-bottom: none; }

/* INPUTS */
.form-row { display: flex; gap: 15px; margin-bottom: 15px; width: 100%; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { width: 100%; }
.form-group.half { width: 50%; }

/* WRAPPER */
.form-group {
  position: relative; /* WAJIB */
}

.form-group select {
  width: 100%;
  height: 52px;                 /* FIX tinggi */
  padding: 0 44px 0 16px;       /* vertikal nol, horizontal saja */
  font-size: 16px;
  line-height: 52px;            /* SAMA dengan height */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-sizing: border-box;
}


/* ICON DROPDOWN */
.form-group:has(select)::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 55%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #6b7280;
  pointer-events: none;
}


.form-group label { 
    font-size: 15px !important; 
    font-weight: 600; color: #444; margin-bottom: 6px; 
}

input, select {
    width: 100%; height: 45px; padding: 0 15px; border: 1px solid #e0e0e0;
    border-radius: 10px; 
    font-size: 13px; background: #fff; outline: none; transition: 0.2s;
    appearance: none; -webkit-appearance: none;
}
input:focus, select:focus { border-color: #545ae8; box-shadow: 0 0 0 3px rgba(84, 90, 232, 0.1); }

/* === TICKET CARDS === */
.ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.ticket-card {
    border: 1px solid #eee; border-radius: 12px; cursor: pointer;
    overflow: hidden; background: #fafafa; transition: 0.2s; position: relative;
    display: flex; flex-direction: column;
}
.ticket-card:has(input:checked) { border: 2px solid #545ae8; background: #fff; box-shadow: 0 8px 20px rgba(84, 90, 232, 0.1); }
.ticket-card input { display: none; }

.tc-content { padding: 15px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; }
.tc-details { display: flex; flex-direction: column; }
.tc-name { font-size: 14px; font-weight: 700; color: #222; }
.tc-desc { font-size: 11px; color: #777; margin-bottom: 5px; }
.tc-price { font-weight: 800; color: #545ae8; font-size: 13px; background: #eef2ff; padding: 4px 8px; border-radius: 6px; width: fit-content; }
.tc-image { width: 80px; height: 55px; border-radius: 8px; overflow: hidden; flex-shrink: 0; border: 1px solid #eee; }
.tc-image img { width: 100%; height: 100%; object-fit: cover; }

/* === QUANTITY (AESTHETIC) === */
.qty-section { 
    display: flex; align-items: center; justify-content: space-between; 
    background: #f8f9fa; padding: 12px 15px; border-radius: 10px; border: 1px solid #eee; margin-top: 10px; 
    width: 100%; 
}
.qty-text { display: flex; flex-direction: column; }
.qty-text label { font-weight: 700; font-size: 13px; color: #333; margin: 0; }
.qty-hint { font-size: 11px; color: #10b981; font-weight: 600; margin-top: 2px; }

.qty-controls { display: flex; align-items: center; background: #fff; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.qty-btn { 
    width: 38px; height: 38px; border: none; background: #f4f4f4; cursor: pointer; 
    font-weight: bold; font-size: 18px; color: #555; transition: 0.2s; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:active { background: #ddd; }
.qty-controls input { 
    width: 45px; text-align: center; border: none; height: 38px; 
    font-weight: bold; padding: 0; pointer-events: none; font-size: 14px; background: #fff; color: #000;
}

/* === JERSEY SECTION (FULL WIDTH) === */
.img-preview { margin-bottom: 15px; background: #f8f9fa; padding: 15px; border-radius: 12px; text-align: center; border: 1px dashed #ccc; }
.img-preview img { height: 130px; object-fit: contain; }

.jersey-sizes-container { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; width: 100%; }
.jersey-list-item { 
    display: flex; align-items: center; justify-content: space-between; 
    background: #fff; padding: 10px 15px; border: 1px solid #ddd; border-radius: 10px; width: 100%;
}
.jersey-list-item label { font-size: 13px; font-weight: 600; margin: 0; }
.jersey-select { width: 100px; height: 35px; font-size: 12px; padding: 0 5px; }

.size-detail-box {
    background: #eef2ff; color: #4338ca; padding: 12px; border-radius: 10px; 
    font-size: 12px; margin-top: 10px; border: 1px solid #c7d2fe; display: flex; align-items: center; gap: 8px; width: 100%;
}

/* === BANK & QRIS BUTTONS === */
.bank-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
.bank-card-option { cursor: pointer; position: relative; }
.bank-card-option input { display: none; }
.bank-card-visual {
    border: 1px solid #ddd; border-radius: 10px; padding: 15px 10px;
    text-align: center; background: #fff; transition: 0.2s; height: 100%; min-height: 65px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.bank-title { font-weight: 800; font-size: 15px; color: #0d6efd; }
.bank-card-option input:checked + .bank-card-visual { border: 2px solid #0d6efd; background: #f0f6ff; }

/* QRIS Button Style */
.qris-card { border: 1px dashed #777; background: #f9f9f9; }
.qris-card .bank-title { color: #333; }
.bank-subtitle { font-size: 10px; color: #666; margin-top: 3px; }

.bank-card-option input[value="QRIS"]:checked + .qris-card { border: 2px solid #333; background: #333; }
.bank-card-option input[value="QRIS"]:checked + .qris-card .bank-title,
.bank-card-option input[value="QRIS"]:checked + .qris-card .bank-subtitle { color: #fff; }

/* === SYARAT & KETENTUAN STYLE === */
.tnc-wrapper {
    margin: 15px 0 20px;
    display: flex;
    align-items: center;
}
.tnc-label {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    line-height: 1.4;
}
.tnc-checkbox {
    width: 18px !important; 
    height: 18px !important;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    appearance: auto !important; 
    -webkit-appearance: checkbox !important;
}
.tnc-link {
    color: #0045ff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #0045ff;
}
.tnc-link:hover {
    color: #003cc5;
    border-bottom: 2px solid #003cc5;
}

/* === ACTION BUTTON === */
.pay-btn {
    width: 100%; padding: 18px; background: #0045ff; color: #fff;
    font-size: 16px; font-weight: 800; border: none; border-radius: 12px;
    cursor: pointer; box-shadow: 0 8px 20px #0045ff; transition: 0.2s;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pay-btn:hover { background: #059669; transform: translateY(-2px); }

/* === SUMMARY SIDE === */
.sticky-summ { position: sticky; top: 0; }
.summary-side h3 { margin: 0 0 15px; font-size: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.summ-item { display: flex; gap: 12px; margin-bottom: 15px; align-items: center; }
.summ-item img { width: 50px; height: 50px; border-radius: 8px; border: 1px solid #eee; object-fit: cover; flex-shrink: 0; }
.summ-name { font-weight: 700; font-size: 13px; color: #222; }
.summ-val { font-size: 12px; color: #666; }
.summ-line { border-top: 1px dashed #ccc; margin: 15px 0; }
.summ-row { display: flex; justify-content: space-between; font-size: 13px; color: #555; margin-bottom: 6px; }

.summ-total { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-top: 15px; padding-top: 15px; border-top: 2px solid #eee; 
}
.summ-total span:first-child { font-size: 13px; font-weight: 600; color: #555; }
.summ-total span:last-child { font-size: 18px; font-weight: 800; color: #000; }

/* =========================================
   MOBILE RESPONSIVE (SCROLL FIX & LAYOUT)
   ========================================= */
@media (max-width: 900px) {
    /* 1. LAYAR PENUH & HILANGKAN MARGIN */
    .modal-main-container { 
        margin-top: 15px; 
        height: 95dvh; 
        max-height: 95dvh;
        border-radius: 20px 20px 0 0; 
        display: flex;
        flex-direction: column;
        border: none;
    }
    .modal-overlay { 
        padding: 0; 
        display: flex;
        align-items: flex-end; 
    }
    
    /* 2. SCROLL AREA FILL */
    .modal-scroll-area {
        flex: 1; 
        overflow-y: auto; 
        padding-bottom: 50px;
    }

    /* 3. LAYOUT STACK */
    .modal-grid-layout { 
        display: flex; 
        flex-direction: column;
        padding: 20px; 
        gap: 20px;
    }
    
    /* 4. Ringkasan di bawah */
    .summary-side { 
        order: 1; 
        width: 100%; 
        margin-bottom: 40px; 
    } 
    .card-style.summary-side { 
        padding: 20px; 
        box-shadow: none; border: 1px solid #eee; 
    }
    
    /* 5. Input vertikal */
    .form-row { flex-direction: column; gap: 12px; }
    .form-group.half { width: 100%; }
    
    /* 6. Ticket Card Stack */
    .ticket-grid { grid-template-columns: 1fr; } 
    
    /* 7. Button Adjust */
    .qty-btn { width: 42px; height: 42px; font-size: 20px; }
}
/*--------------------------------------------------------------
# akhir tiket Section Section
--------------------------------------------------------------*/

 /* ==============================
   PARTICIPANT SECTION – FINAL
   Professional & Bootstrap-safe
================================ */

/* CONTAINER */
.participant-wrapper {
  padding: 70px 40px;
  background-color: #f8fafc; /* soft admin background */
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.participant-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* ==============================
   ALERT BOX
================================ */
.alert-box {
  background-color: #f0f7ff;
  color: #1e3a8a;
  border-left: 4px solid #1e3a8a;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.alert-box strong {
  font-weight: 700;
  color: #b91c1c;
}

/* ==============================
   CONTROLS (SEARCH & FILTER)
================================ */
.controls-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-box input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  transition: 0.25s;
  background-color: #ffffff;
}

.search-box input:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

.filter-box select {
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  background-color: #ffffff;
  cursor: pointer;
  outline: none;
}

/* ==============================
   TABLE
================================ */
.table-responsive-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #ffffff;
}

.participant-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 13px;
}

.participant-table thead {
  background-color: #f1f5f9;
  color: #1e293b;
}

.participant-table th {
  padding: 14px 15px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}

.participant-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.participant-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.participant-table tbody tr:hover {
  background-color: #eef2ff;
}

/* ==============================
   PAGINATION
================================ */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.page-info {
  font-size: 12px;
  color: #64748b;
}

.pagination-buttons {
  display: flex;
  gap: 6px;
}

.pagination-buttons button {
  padding: 7px 14px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #334155;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s ease;
}

.pagination-buttons button:hover:not(:disabled) {
  background-color: #1e3a8a;
  color: #ffffff;
  border-color: #1e3a8a;
}

.pagination-buttons button:disabled {
  background-color: #f1f5f9;
  color: #cbd5e1;
  cursor: not-allowed;
}

/* ==============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 600px) {

  .participant-container {
    padding: 20px;
  }

  .controls-row {
    flex-direction: column;
  }

  .pagination-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box input,
  .filter-box select {
    font-size: 13px;
  }

  .participant-table {
    font-size: 13px;
  }
}



/* 1. HERO GLOBAL */
  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 124, 255, 0.85), rgba(0, 182, 219, 0.85)),
    url('https://images.unsplash.com/photo-1532444458054-01a7dd3e9fca?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
    
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* 2. LOGO */
  .hero-logo-wrapper {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
  }

  .hero-logo-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }

  /* 3. EVENT DETAILS */
  .event-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
  }

  .detail-item i {
    color: white;
    font-size: 20px;
  }

  .detail-item span {
    color: black;
  }

  /* 4. COUNTDOWN */
  .countdown-container {
    margin: 20px auto;
    max-width: 800px;
  }

  .countdown-title {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
    text-transform: uppercase;
  }

  .countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .countdown-box {
    background: rgba(255, 255, 255, 0.95);
    color: #0088cc;
    padding: 15px 10px;
    border-radius: 12px;
    width: 110px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .countdown-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
  }

  .countdown-box p {
    font-size: 12px;
    font-weight: 700;
    margin: 5px 0 0;
    color: #555;
    letter-spacing: 1px;
  }

  /* 5. CTA */
  .cta-section {
    margin-top: 40px;
    margin-bottom: 5px;
  }

  .cta-btn {
    background: #fff;
    color: #0088cc !important;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
  }

  .cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #f0f8ff;
  }

  .cta-note {
    margin-top: 10px;
    font-size: 13px;
    color: #e0f7fa;
    font-style: italic;
    margin-bottom: 0;
  }

  /* 6. SPONSOR SLIDER (FIXED) */
  .sponsors-section {
    margin-top: 20px;
    opacity: 0.9;
  }

  .sponsors-title {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #eee;
    text-transform: uppercase;
  }

  .sponsor-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .sponsor-track {
    display: flex;
    width: fit-content;
    animation: scrollSponsors 20s linear infinite;
    /* Sedikit diperlambat agar smooth */
  }

  .sponsor-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* PENTING: Mencegah logo menyusut */
    padding-right: 50px;
    /* Jarak antar grup logo */
  }

  .sponsor-group img {
    height: 35px;
    margin: 0 25px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: 0.3s;
  }

  .sponsor-group img:hover {
    opacity: 1;
    transform: scale(1.1);
  }

  @keyframes scrollSponsors {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }

    /* Bergeser sejauh satu grup penuh */
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* MOBILE */
  /* ==============================
   MOBILE RESPONSIVE (COUNTDOWN FIX)
================================ */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 45px;
    background-attachment: scroll;
  }

  .hero-logo-img {
    max-width: 220px;
  }

  .detail-item {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* === COUNTDOWN FIX === */
  .countdown-container {
    padding: 0 12px;
    overflow: hidden; /* cegah overflow */
  }

  .countdown-wrapper {
    display: flex;
    flex-wrap: nowrap;          /* tetap 1 baris */
    gap: 6px;                   /* dipersempit */
    justify-content: center;
  }

  .countdown-box {
    flex: 1 1 0;                /* bagi rata */
    min-width: 0;               /* PENTING agar tidak kepotong */
    padding: 8px 0;
    border-radius: 6px;
  }

  .countdown-box h2 {
    font-size: 20px;
    line-height: 1.1;
  }

  .countdown-box p {
    font-size: 9px;
    margin-top: 2px;
    letter-spacing: 0.3px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px 0;
  }

  .sponsor-group img {
    height: 24px;
    margin: 0 12px;
  }
}

/* ==============================
   EXTRA SMALL DEVICE
================================ */
@media (max-width: 360px) {

  .countdown-wrapper {
    gap: 4px;
  }

  .countdown-box {
    padding: 6px 0;
  }

  .countdown-box h2 {
    font-size: 17px;
  }

  .countdown-box p {
    font-size: 8px;
  }
}

/* =========================
   RACE HERO SECTION (REVISED)
========================= */

.race-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  
  /* UPDATED BACKGROUND STYLE (Matching Main Hero) */
  background: linear-gradient(135deg, rgba(11, 124, 255, 0.85), rgba(0, 182, 219, 0.85)),
    url('https://images.unsplash.com/photo-1532444458054-01a7dd3e9fca?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat fixed;
    
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff; /* Ensure text is white on blue background */
}

/* Overlay Structure (Made transparent so the blue gradient shows) */
.race-overlay {
  position: absolute;
  inset: 0;
  background: transparent; /* Changed from black to transparent */
  z-index: 1;
}

/* Content */
.race-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

/* Title */
.race-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* Subtitle */
.race-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #e0f7fa; /* Adjusted slightly for better contrast on blue */
  margin-bottom: 28px;
}

/* Breadcrumb */
.race-breadcrumb {
  font-size: 14px;
  color: #e0f7fa;
}

.race-breadcrumb a {
  color: #fff; /* Changed to white for better visibility on blue */
  text-decoration: none;
  font-weight: 700;
}

.race-breadcrumb span {
  margin: 0 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .race-hero {
    min-height: 340px;
    background-attachment: scroll; /* Disable parallax on mobile for performance */
  }

  .race-title {
    font-size: 36px;
  }

  .race-subtitle {
    font-size: 15px;
  }
}


/* Dropdown container */
.dropdown {
  position: relative;
}

/* Parent link */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 999;
}

/* Menu item */
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Arrow styling */
.arrow {
  font-size: 12px;
}


 /* 1. SETUP WRAPPER (Background Putih Polos) */
    .waruturi-wrapper-sleek {
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 20px; /* Padding luar agar tidak terlalu mepet layar */
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    /* 2. KARTU UTAMA (Memanjang dan Ramping) */
    .cta-card-sleek {
    /* Background tetap */
    background: linear-gradient(135deg, #f0f3ff 0%, #dfe5ff 100%);

    width: 100%;
    max-width: 1180px; /* 🔥 LEBIH PANJANG KANAN-KIRI */

    border-radius: 35px;

    /* 🔥 LEBIH RAMPING (atas-bawah diperkecil) */
    padding: 32px 90px;

    text-align: center;

    /* 🔵 BORDER NAVY HALUS */
    border: 2px solid #0A1A2F;

    /* Shadow tetap lembut */
    box-shadow: 0 20px 40px -10px rgba(10, 26, 47, 0.18);

    display: flex;
    flex-direction: column;
    align-items: center;
}


    /* 3. IKON ROKET (Kotak Gelap) */
    .icon-box-sleek {
        width: 55px;
        height: 55px;
        background-color: #0a0a1a; /* Warna gelap pekat */
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .icon-box-sleek svg {
        width: 28px;
        height: 28px;
        color: #6a6af0;
    }

    /* 4. TYPOGRAPHY (Teks Putih dan Abu Terang) */
    .cta-card-sleek h3 {
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 15px 0;
        color: #0A1A2F; /* Teks Putih agar kontras dengan background terang */
        text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Sedikit bayangan agar teks putih terbaca */
    }

    .cta-card-sleek p {
        font-size: 16px;
        color: #8a8a9e; /* Abu-abu terang */
        margin: 0 0 30px 0; /* Margin bawah ke tombol */
        max-width: 650px;
        line-height: 1.6;
    }

    /* 5. TOMBOL (BUTTONS) */
    .btn-group-sleek {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    /* Tombol Kiri (Solid Biru Ungu) */
    .btn-primary-sleek {
        background-color: #5652e5; /* Warna solid dari gambar */
        color: white;
        text-decoration: none;
        padding: 12px 35px; /* Padding agak lebar */
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        border: none;
        transition: background 0.3s;
        box-shadow: 0 4px 12px rgba(86, 82, 229, 0.3);
    }
    .btn-primary-sleek:hover {
        background-color: #4338ca;
    }

    /* Tombol Kanan (Outline Transparan) */
    .btn-secondary-sleek {
        background-color: transparent;
        color: #8a8a9e; /* Warna teks abu */
        text-decoration: none;
        padding: 12px 35px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        border: 1px solid #c0c0d0; /* Border abu tipis */
        transition: all 0.3s;
    }
    .btn-secondary-sleek:hover {
        border-color: #5652e5;
        color: #5652e5;
        background-color: rgba(86, 82, 229, 0.05);
    }

    /* Responsif untuk HP (Agar tetap rapi di layar kecil) */
    @media (max-width: 768px) {
    .cta-card-sleek {
        padding: 32px 24px;
        border-radius: 24px;
    }
        .cta-card-sleek h3 {
            font-size: 22px;
        }
        .btn-group-sleek {
            flex-direction: column;
            width: 100%;
            gap: 10px;
        }
        .btn-primary-sleek, .btn-secondary-sleek {
            width: 100%;
            box-sizing: border-box; /* Penting agar padding tidak menambah width */
        }
    }


    /* ============================= */
/* 1. CONTAINER UTAMA */
/* ============================= */
.route-wrapper {
    width: 100%;
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.box-route {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ============================= */
/* 2. HEADER */
/* ============================= */
.route-header {
    text-align: center;
    margin-bottom: 60px;
}

.route-main-title {
    color: #1e3a8a;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.route-sub-title {
    color: #64748b;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================= */
/* 3. GRID LAYOUT */
/* DESKTOP: 2 KOLOM */
/* ============================= */
/* DESKTOP DEFAULT */
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}


/* ============================= */
/* 4. CARD */
/* ============================= */
.route-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    position: relative;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ============================= */
/* BADGE */
/* ============================= */
.route-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.badge-5k  { background-color: #0ea5e9; }
.badge-10k { background-color: #1e3a8a; }

/* ============================= */
/* GAMBAR */
/* ============================= */
.route-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;   /* lebih cocok untuk map */
    overflow: hidden;
    background-color: #e5e7eb;
}

.route-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.route-card:hover .route-img-box img {
    transform: scale(1.06);
}

/* ============================= */
/* INFO */
/* ============================= */
.route-info {
    padding: 28px 32px;
}

.route-info h3 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.route-info p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 100%;
}

/* ============================= */
/* SPESIFIKASI */
/* ============================= */
.route-specs {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px dashed #cbd5e1;
}

.route-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    margin-bottom: 10px;
    font-weight: 600;
}

.route-specs li i {
    color: #1e3a8a;
    font-size: 16px;
}

/* ============================= */
/* 5. MOBILE */
/* MOBILE: 1 KOLOM */
/* ============================= */
@media (max-width: 768px) {

  /* Grid 1 kolom + center */
  .route-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;   /* CENTER CARD */
  }

  /* Card benar-benar di tengah */
  .route-card {
    width: 100%;
    max-width: 420px;        /* agar tidak terlalu lebar di HP */
  }

  /* Judul section */
  .route-main-title {
    font-size: 28px;
    text-align: center;
  }

  /* Badge tetap rapi */
  .route-badge {
    top: 16px;
    left: 16px;
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Konten text center */
  .route-info {
    padding: 24px;
    text-align: center;
  }

  .route-info h3 {
    font-size: 20px;
  }

  .route-info p {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  /* List specs center tapi tetap readable */
  .route-specs {
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
  }

  .route-specs li {
    font-size: 14px;
    justify-content: flex-start;
  }
}



/* SECTION */
.daftar-section {
  padding: 90px 0;
  background: #f9fafb;
}

/* HEADER */
.daftar-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.daftar-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.daftar-subtitle {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
}

/* STEP WRAPPER */
.daftar-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

/* REVERSE STEP */
.daftar-step.reverse {
  direction: rtl;
}
.daftar-step.reverse > * {
  direction: ltr;
}

/* IMAGE */
.daftar-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CONTENT */
.daftar-content {
  padding: 10px 20px;
}

.step-number {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: #1e3a8a;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.daftar-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #111827;
}

.daftar-content p {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 14px;
}

.daftar-content ul {
  padding-left: 18px;
}

.daftar-content ul li {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 8px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .daftar-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .daftar-step.reverse {
    direction: ltr;
  }

  .daftar-title {
    font-size: 28px;
  }

  .daftar-content h3 {
    font-size: 20px;
  }
}


/* ============================= */
/* FOOTER WRAPPER */
/* ============================= */
.fitur.latar-biru {
  background: linear-gradient(135deg, #0b5ed7, #0dcaf0);
  padding: 60px 0;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.konten.kecil.putih {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ============================= */
/* KOLOM */
/* ============================= */
.kol-footer {
  width: 100%;
}

.kol-14 {
  grid-column: span 1;
}

.kol4 {
  grid-column: span 1;
}

/* ============================= */
/* BOX */
/* ============================= */
.kol-footer .box {
  line-height: 1.7;
}

.kol-footer p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #e0f2fe;
}

/* ============================= */
/* JUDUL KOLOM */
/* ============================= */
.tebal.normal {
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 14px;
}

/* ============================= */
/* LINK */
/* ============================= */
.kol-footer a.putih {
  color: #e0f2fe;
  text-decoration: none;
  transition: color 0.25s ease;
}

.kol-footer a.putih:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ============================= */
/* ICON */
/* ============================= */
.kol-footer i {
  margin-right: 8px;
  color: #bae6fd;
}

/* ============================= */
/* SOSIAL MEDIA */
/* ============================= */
.btn-mp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-right: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-putih {
  background-color: #ffffff;
}

.btn-mp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.img-mp {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ============================= */
/* ALIGNMENT */
/* ============================= */
.teks-kanan {
  text-align: right;
}

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

  .konten.kecil.putih {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Paksa semua jadi rata kiri */
  .teks-kanan {
    text-align: left;
  }

  .btn-mp {
    margin-right: 10px;
  }
}

/* ============================= */
/* FLOATING BUTTON BASE */
/* ============================= */
.fab-btn {
  width: 54px;
  height: 54px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */
.fab-btn:hover {
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* ============================= */
/* CUSTOM COLOR (OPTIONAL) */
/* ============================= */
.fab-trophy {
  background-color: #0d6efd;
  border: none;
  margin-bottom: 25px;
}

.fab-wa {
  background-color: #198754;
  border: none;
}

/* ============================= */
/* MOBILE ADJUSTMENT */
/* ============================= */
@media (max-width: 480px) {
  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}



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