/*--------------------------------------------------------------
# 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3690e7; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #3690e7; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3690e7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 13px 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: 1;
  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 26px;
  margin: 0;
  border-radius: 20px;
  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 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    /* TAMBAHKAN 2 BARIS INI: */
    margin-right: 40px; /* Mendorong elemen lain (tombol registrasi) ke kanan jauh */
    margin-left: auto;  /* Memberi jarak sedikit agar tidak menempel dengan Logo */
  }

  .navmenu ul {
    /* ... kode lainnya tetap sama ... */
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  /* ... sisa kode di bawahnya biarkan tetap sama ... */

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    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;
  padding-bottom: 50px;
  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-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.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 50%);
  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 20%);
  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-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.footer .credits {
  margin-top: 6px;
  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;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

/*--------------------------------------------------------------
# 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: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding-top: 83px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 40%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  padding-bottom: 60px;
}

.hero-2::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  border-radius: 50%;
  top: -20%;
  right: -10%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-2::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  filter: blur(40px);
  animation: float 4s ease-in-out infinite reverse;
  z-index: 1;
}

.hero-2 .hero-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-2 .hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-2 .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-title {
    font-size: 28px;
  }
}

.hero-2 .hero-title .typed {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #8b5cf6 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-2 .hero-title .typed::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #8b5cf6 50%) 100%);
  border-radius: 2px;
}

.hero-2 .hero-description {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-2 .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-2 .hero-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-2 .hero-actions .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero-2 .hero-actions .action-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #8b5cf6 30%) 0%, var(--accent-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-2 .hero-actions .action-btn.primary span,
.hero-2 .hero-actions .action-btn.primary i {
  position: relative;
  z-index: 1;
}

.hero-2 .hero-actions .action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-2 .hero-actions .action-btn.primary:hover::before {
  opacity: 1;
}

.hero-2 .hero-actions .action-btn.secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero-2 .hero-actions .action-btn.secondary:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-2 .hero-image-showcase {
  position: relative;
}

.hero-2 .hero-image-showcase .image-wrapper {
  position: relative;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero-2 .hero-image-showcase .image-wrapper img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.hero-2 .hero-image-showcase .floating-card {
  position: absolute;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.hero-2 .hero-image-showcase .floating-card.card-1 {
  top: 20%;
  left: -60px;
  animation: float 3s ease-in-out infinite;
}

.hero-2 .hero-image-showcase .floating-card.card-2 {
  bottom: 15%;
  right: -60px;
  animation: float 3s ease-in-out infinite reverse;
}

.hero-2 .hero-image-showcase .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-2 .hero-image-showcase .floating-card .card-content .card-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 .hero-image-showcase .floating-card .card-content .card-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.hero-2 .hero-image-showcase .floating-card .card-content .card-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.hero-2 .hero-image-showcase .floating-card .card-content .card-info p {
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.85rem;
  white-space: nowrap;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

@media (max-width: 991px) {
  .hero-2 {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero-2 .floating-card.card-1 {
    left: -30px;
    top: 10%;
  }

  .hero-2 .floating-card.card-2 {
    right: -30px;
    bottom: 10%;
  }

  .hero-2 .hero-actions {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero-2 .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-2 .hero-actions .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-2 .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-2 {
    padding: 60px 0 30px;
  }

  .hero-2 .hero-badge {
    margin-bottom: 20px;
  }

  .hero-2 .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-2 .hero-actions {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 {
  padding-top: 60px;
  padding-bottom: 21px;
}

.about-4 .section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.about-4 .section-intro .subtitle {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-4 .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-4 .section-intro .title {
    font-size: 3rem;
  }
}

.about-4 .section-intro .desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-4 .highlight-cards {
  margin-top: 5rem;
}

.about-4 .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.about-4 .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .about-4 .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.about-4 .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-4 .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-4 .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.about-4 .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-4 .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.about-4 .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

.about-4 .values-section {
  margin-top: 6rem;
}

.about-4 .values-section .values-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-4 .values-section .values-image img {
  width: 100%;
  transition: transform 0.7s ease;
}

.about-4 .values-section .values-image:hover img {
  transform: scale(1.05);
}

.about-4 .values-section .values-content {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .about-4 .values-section .values-content {
    padding: 0 0 0 2rem;
  }
}

.about-4 .values-section .values-content .values-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-4 .values-section .values-content .values-title {
    font-size: 2.25rem;
  }
}

.about-4 .values-section .values-content .values-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-4 .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.about-4 .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-4 .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-4 .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline;
}

.about-4 .values-section .values-content .values-list .value-item .value-text p {
  display: inline;
  margin-left: 0.5rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 23px;
  padding-bottom: 0px;
}

.about .image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}

.about .image-wrapper .main-image {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about .content-wrapper {
  padding: 20px;
}

.about .content-wrapper .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-block;
}

.about .content-wrapper h2 {
  color: var(--heading-color);
  line-height: 1.2;
}

.about .content-wrapper p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
}

.about .content-wrapper .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.about .content-wrapper .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about .content-wrapper .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about .content-wrapper .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about .content-wrapper .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .content-wrapper .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .content-wrapper .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}

.about .content-wrapper .custom-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .content-wrapper .custom-btn .text {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about .content-wrapper .custom-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.about .content-wrapper .custom-btn .arrow-icon i {
  font-size: 18px;
  transform: rotate(-45deg);
}

.about .content-wrapper .custom-btn:hover .text,
.about .content-wrapper .custom-btn:hover .arrow-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .content-wrapper .custom-btn:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .about .image-wrapper {
    height: 400px;
    margin-bottom: 20px;
  }

  .about .content-wrapper {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .about .image-wrapper {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding-top: 4px;
  padding-bottom: 1px;
}

.about-2 .image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}

.about-2 .image-wrapper .main-image {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-2 .content-wrapper {
  padding: 20px;
}

.about-2 .content-wrapper .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-block;
}

.about-2 .content-wrapper h2 {
  color: var(--heading-color);
  line-height: 1.2;
}

.about-2 .content-wrapper p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
}

.about-2 .content-wrapper .feature-list li {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.about-2 .content-wrapper .feature-list li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 20px;
}

.about-2 .content-wrapper .custom-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-2 .content-wrapper .custom-btn .text {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-2 .content-wrapper .custom-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.about-2 .content-wrapper .custom-btn .arrow-icon i {
  font-size: 18px;
  transform: rotate(-45deg);
}

.about-2 .content-wrapper .custom-btn:hover .text,
.about-2 .content-wrapper .custom-btn:hover .arrow-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-2 .content-wrapper .custom-btn:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .about-2 .image-wrapper {
    height: 400px;
    margin-bottom: 20px;
  }

  .about-2 .content-wrapper {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .about-2 .image-wrapper {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 {
  padding-top: 12px;
  padding-bottom: 60px;
}

.about-5 .image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}

.about-5 .image-wrapper .main-image {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-5 .content-wrapper {
  padding: 20px;
}

.about-5 .content-wrapper .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-block;
}

.about-5 .content-wrapper h2 {
  color: var(--heading-color);
  line-height: 1.2;
}

.about-5 .content-wrapper p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
}

.about-5 .content-wrapper .feature-list li {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.about-5 .content-wrapper .feature-list li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 20px;
}

.about-5 .content-wrapper .custom-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-5 .content-wrapper .custom-btn .text {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-5 .content-wrapper .custom-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.about-5 .content-wrapper .custom-btn .arrow-icon i {
  font-size: 18px;
  transform: rotate(-45deg);
}

.about-5 .content-wrapper .custom-btn:hover .text,
.about-5 .content-wrapper .custom-btn:hover .arrow-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-5 .content-wrapper .custom-btn:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .about-5 .image-wrapper {
    height: 400px;
    margin-bottom: 20px;
  }

  .about-5 .content-wrapper {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .about-5 .image-wrapper {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-2 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-2:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-2 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* --- 1. SETUP SECTION & CARD UTAMA --- */
.team {
  padding-top: 28px;
  padding-bottom: 31px;
}

.team .member-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* FIX PENTING: Agar kartu memenuhi kolom Bootstrap dan tidak eror layout */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.team .member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

/* --- 2. SETUP GAMBAR & HOVER OVERLAY --- */
.team .member-image-wrapper {
  overflow: hidden;
  position: relative; /* Wajib ada agar overlay tidak lari */
  width: 100%;
  margin: 0;
  padding: 0;
}

.team .member-image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1.1; /* Membuat ukuran gambar seragam */
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

/* Efek Zoom Gambar saat Hover */
.team .member-card:hover .member-image-wrapper img {
  transform: scale(1.05);
}

/* --- BAGIAN OVERLAY GRADASI & TOMBOL (INI YANG SEBELUMNYA HILANG) --- */
.team .member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Gradasi Hitam Transparan di Bawah */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  
  /* Posisi Tombol */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  
  /* Animasi Sembunyi/Muncul */
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 10;
}

/* Munculkan Overlay saat Mouse Hover */
.team .member-image-wrapper:hover .member-overlay {
  opacity: 1;
}

/* Tombol Lihat Profil */
.team .btn-profile-view {
  background-color: #fff;
  color: #333;
  padding: 8px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Animasi Tombol Naik */
.team .member-image-wrapper:hover .btn-profile-view {
  transform: translateY(0);
}

.team .btn-profile-view:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* --- 3. KONTEN TEKS & SOSMED --- */
.team .member-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.team .member-role {
  font-size: 0.875rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.team .member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.team .member-socials {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .member-socials a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 8px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.team .member-socials a:hover {
  color: var(--accent-color);
}

/* --- 4. TOMBOL 'TEAM LAIN' DI BAWAH --- */
.btn-team-more {
  display: inline-block;
  padding: 10px 30px;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-team-more:hover {
  background-color: var(--heading-color);
  color: #fff;
  border-color: var(--heading-color);
  transform: translateY(-3px);
}

.btn-team-more i {
  margin-left: 8px;
}

/* --- 5. MEDIA QUERIES (RESPONSIVE) --- */
@media (max-width: 991.98px) {
  .team .member-name { font-size: 1.15rem; }
  .team .member-role { font-size: 0.8rem; }
}

@media (max-width: 767.98px) {
  .team .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
  .team .member-card {
    box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

/* Style Link Judul Portofolio */
.portfolio-link {
    color: #0d6efd; /* Warna Biru Link Standar */
    text-decoration: underline; /* Garis bawah */
    text-decoration-thickness: 2px; /* Ketebalan garis (opsional, agar terlihat jelas) */
    text-underline-offset: 4px; /* Jarak garis dengan teks (agar rapi) */
    transition: color 0.3s ease;
}

/* Efek saat mouse diarahkan (Hover) */
.portfolio-link:hover {
    color: #0a58ca; /* Biru yang lebih gelap saat disentuh */
    text-decoration-color: #0a58ca;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding-top: 41px;
  padding-bottom: 60px;
}

.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;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 37px;
}

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

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Speaker Details Section
--------------------------------------------------------------*/
.speaker-details .speaker-header {
  position: relative;
}

.speaker-details .speaker-header .speaker-image {
  position: relative;
  display: inline-block;
}

.speaker-details .speaker-header .speaker-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(54, 144, 231, 0.15);
  border: 6px solid var(--surface-color);
}

.speaker-details .speaker-header .speaker-image .keynote-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4f46e5 30%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-details .speaker-header .speaker-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.speaker-details .speaker-header .speaker-title {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.speaker-details .speaker-header .company-info .company-name {
  background: var(--surface-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.speaker-details .speaker-header .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.speaker-details .speaker-header .social-links .social-link {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.speaker-details .speaker-header .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.25);
}

.speaker-details .speaker-quote {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 5px solid var(--accent-color);
}

.speaker-details .speaker-quote .quote-content {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.6;
  position: relative;
}

.speaker-details .speaker-quote .quote-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
  font-family: serif;
}

.speaker-details .speaker-bio .bio-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.speaker-details .speaker-bio .bio-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

.speaker-details .speaker-bio .bio-text:last-child {
  margin-bottom: 0;
}

.speaker-details .speaker-sessions {
  margin-bottom: 3rem;
}

.speaker-details .speaker-sessions h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.speaker-details .speaker-sessions .session-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.speaker-details .speaker-sessions .session-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.speaker-details .speaker-sessions .session-item.keynote {
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.speaker-details .speaker-sessions .session-item .session-header {
  margin-bottom: 1rem;
}

.speaker-details .speaker-sessions .session-item .session-header .session-type {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.speaker-details .speaker-sessions .session-item .session-header .session-title {
  font-size: 1.4rem;
  margin: 0;
  color: var(--heading-color);
}

.speaker-details .speaker-sessions .session-item .session-details .session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .speaker-details .speaker-sessions .session-item .session-details .session-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.speaker-details .speaker-sessions .session-item .session-details .session-meta>div {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.speaker-details .speaker-sessions .session-item .session-details .session-meta>div i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.speaker-details .speaker-sessions .session-item .session-details .session-description {
  line-height: 1.6;
  margin: 0;
}

.speaker-details .speaker-sessions .session-item:last-child {
  margin-bottom: 0;
}

.speaker-details .speaker-actions .btn-action {
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.speaker-details .speaker-actions .btn-action.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.speaker-details .speaker-actions .btn-action.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.speaker-details .speaker-actions .btn-action.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

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

@media (max-width: 768px) {
  .speaker-details .speaker-header .speaker-name {
    font-size: 2rem;
  }

  .speaker-details .speaker-header .speaker-image img {
    width: 150px;
    height: 150px;
  }

  .speaker-details .speaker-header .social-links {
    gap: 10px;
  }

  .speaker-details .speaker-header .social-links .social-link {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .speaker-details .speaker-quote {
    padding: 25px;
  }

  .speaker-details .speaker-quote .quote-content {
    font-size: 1.1rem;
  }

  .speaker-details .speaker-actions .btn-action {
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }

  .speaker-details .speaker-actions .btn-action.me-3 {
    margin-right: 0 !important;
  }
}

/*--------------------------------------------------------------
# Post List Section
--------------------------------------------------------------*/
/* Style untuk filter blog */
.faculty-search .filter-item {
  cursor: pointer;
  padding: 8px 16px;
  margin-right: 10px;
  border-radius: 50px;
  border: 1px solid var(--default-color); /* Sesuaikan warna border */
  transition: all 0.3s;
}

.faculty-search .filter-item:hover,
.faculty-search .filter-item.active {
  background-color: var(--accent-color); /* Warna utama website */
  color: #fff;
  border-color: var(--accent-color);
}

/* Animasi sederhana saat filter */
.post-item {
  transition: all 0.4s ease-in-out;
}

.post-list {
  padding-top: 31px;
  padding-bottom: 60px;
}

.post-list .faculty-search {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.post-list .faculty-search .input-group .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.post-list .faculty-search .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.post-list .faculty-search .input-group .form-control:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.post-list .faculty-search .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.post-list .faculty-search .input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.post-list .faculty-search .search-filters {
  gap: 0.8rem;
}

.post-list .faculty-search .search-filters .filter-item {
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.post-list .faculty-search .search-filters .filter-item:hover {
  background-color: #e9e9e9;
}

.post-list .faculty-search .search-filters .filter-item.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .post-list .search-filters .filter-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}

.post-list article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.post-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.post-list .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.post-list .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.post-list .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.post-list .title a:hover {
  color: var(--accent-color);
}

/* Pastikan class ini ada di CSS Anda */
.post-author-img {
  width: 50px;          /* Tentukan lebar tetap */
  height: 50px;         /* Tentukan tinggi yang SAMA persis dengan lebar */
  object-fit: cover;    /* Wajib: Agar foto tidak gepeng/lonjong */
  border-radius: 50%;   /* Membuat bentuk lingkaran */
  object-position: center; /* Memastikan wajah di tengah */
}

/* Menyamakan tinggi gambar thumbnail artikel */
.post-list .post-img img {
  width: 100%;           /* Lebar selalu mengikuti wadah */
  height: 250px;         /* Tinggi dipaksa sama (bisa diubah angka ini) */
  object-fit: cover;     /* Kunci: Memotong gambar agar pas tanpa gepeng */
  object-position: center; /* Fokus gambar di tengah */
  border-radius: 8px 8px 0 0; /* Opsional: Memberi sedikit lengkungan di sudut atas */
}

.post-list .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.post-list .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/* =========================================
   BLOG DETAILS PAGE STYLING
   ========================================= */

/* --- 1. Layout & Grid System --- */
.blog-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Kolom Artikel (Lebar) : Sidebar (Sempit) */
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

/* Responsif untuk Tablet/HP */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom memanjang ke bawah */
    }
}

/* --- 2. Reading Progress Bar (Garis Merah di Atas) --- */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%; /* Nanti diisi JS */
    height: 5px;
    background: var(--accent-color, #007bff); /* Warna sesuai tema */
    z-index: 9999;
    transition: width 0.1s;
}

/* --- 3. Hero Section (Judul & Header) --- */
.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.post-category-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #0d47a1;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid var(--accent-color, #007bff);
    padding-left: 20px;
}

/* Meta Data (Penulis & Tanggal) */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Container untuk Teks (Nama & Tanggal) */
.post-meta {
    /* UBAH DI SINI: */
    display: flex; 
    flex-direction: column; /* KUNCI: Memaksa elemen disusun ke bawah (vertikal) */
    align-items: flex-start; /* Rata kiri */
    justify-content: center; 
    margin-left: 15px; /* Memberi jarak agar tidak menempel dengan foto profil */
    
    /* Reset style lama yang tidak perlu */
    border-bottom: none; 
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Styling Nama Penulis (Sesuai Class HTML: post-author) */
.post-author {
    font-weight: 700;
    color: #333;
    font-size: 16px; /* Sesuaikan ukuran font */
    margin-bottom: 2px; /* Jarak tipis antara nama dan tanggal */
    margin-top: 0;
    line-height: 1.2;
}

/* Styling Tanggal (Sesuai Class HTML: post-date) */
.post-date {
    font-size: 13px;
    color: #888; /* Warna abu-abu agar kontras dengan nama */
    margin-bottom: 0;
    margin-top: 0;
}

.author-name {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    margin-bottom: 2px;
}

.meta-detail {
    font-size: 0.85rem;
    color: #888;
}

/* Container Utama: Memisahkan Kiri dan Kanan */
.article-meta-bar {
    display: flex;
    justify-content: space-between; /* INI KUNCINYA: Kiri & Kanan mentok ujung */
    align-items: center; /* Agar posisi vertikal sejajar tengah */
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee; /* Garis tipis di bawah agar rapi */
}

/* Grup Kiri (Foto + Teks) */
.meta-left {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antara foto bulat dan teks nama */
}

/* Foto Profil Bulat */
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Teks Nama & Tanggal */
.meta-text .author-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.meta-text .post-date {
    font-size: 13px;
    color: #888;
}

/* Tombol Share (Kode Lama Anda + Sedikit Perbaikan) */
.btn-share {
    display: flex;
    align-items: center;
    gap: 8px; /* Jarak ikon share dan tulisan */
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #333;
    transform: translateY(-2px); /* Efek naik sedikit saat disentuh */
}

/* RESPONSIF: Agar di HP tidak berantakan */
@media (max-width: 576px) {
    .article-meta-bar {
        align-items: flex-start; /* Agar tidak gepeng */
    }
    
    /* Opsi: Di HP tombol share tetap ikon saja agar muat */
    .btn-share span {
        display: none; 
    }
    .btn-share {
        padding: 8px 12px; /* Perkecil tombol di HP */
    }
}

.btn-share:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #bbb;
}

/* Gambar Utama (Cover) */
.post-cover img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.post-cover figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* --- 4. Content Styling (Isi Artikel) --- */
.blog-content-style {
    font-family: 'Open Sans', sans-serif; /* Atau font default website */
    color: #333;
    margin-top: 40px;
}

.blog-content-style p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-content-style h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

.blog-content-style h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color, #007bff);
}

.blog-content-style h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.blog-content-style ul, 
.blog-content-style ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content-style li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Poin Penting Box */
.highlight-quote {
    background-color: #f8f9fa;
    border-left: 5px solid #28a745; /* Warna Hijau untuk Poin Penting */
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-quote p b {
    color: #155724;
    font-size: 1.1rem;
}

/* Daftar Isi (TOC) Box */
.post-toc {
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.toc-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#toc-list {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 0;
}

#toc-list li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

#toc-list li a:hover {
    color: var(--accent-color, #007bff);
    text-decoration: underline;
}

/* Callout Box (Baca Juga) */
.callout.success {
    background: #e3f2fd;
    border-left: 5px solid #0d47a1;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
}

.callout blockquote {
    margin: 0;
    font-size: 1.05rem;
}

.callout a {
    color: #0d47a1;
    font-weight: 700;
    text-decoration: underline;
}

/* Wrapper Utama */
.author-card-wrapper .card {
    /* Background Gradient Tetap (Biru Tua ke Biru Terang) */
    background: linear-gradient(120deg, #1e3c72 0%, #2a5298 100%);
}

/* Mengatur Foto Profil Menjadi Lingkaran */
.profile-img-large {
    /* 1. Atur Ukuran FIX (Harus Kotak agar jadi lingkaran sempurna) */
    width: 200px;  /* Bisa dikecilkan misal jadi 180px jika terlalu besar */
    height: 200px; /* Wajib sama dengan width */
    
    /* 2. Membuat bentuk lingkaran */
    border-radius: 50%;
    
    /* 3. Agar gambar di dalamnya tidak gepeng/tertarik */
    object-fit: cover;
    
    /* 4. Hapus efek potongan miring (mask) yang lama */
    mask-image: none;
    -webkit-mask-image: none;
    
    /* 5. Tambahan Estetika: Memberi bingkai putih transparan & bayangan */
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    
    /* Memastikan posisi gambar di tengah */
    margin: 0 auto;
    display: block;
    
    /* Reset max-height agar tidak memotong lingkaran */
    max-height: none; 
}

/* Responsif di HP agar ukurannya mengecil sedikit */
@media (max-width: 768px) {
    .profile-img-large {
        width: 150px;
        height: 150px;
        margin-bottom: 20px; /* Jarak antara foto dan teks di HP */
    }
}

/* Efek Hover pada Tombol */
.custom-btn-hover {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.custom-btn-hover:hover {
    transform: translateY(-3px); /* Tombol naik sedikit saat disentuh */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: #fff;
    color: #0d6efd; /* Warna biru primary */
}

/* Responsif untuk HP (Mobile) */
@media (max-width: 768px) {
    .profile-img-large {
        mask-image: none; /* Hilangkan efek miring di HP */
        -webkit-mask-image: none;
        max-height: 250px;
    }
    
    .author-card-wrapper .card-body {
        text-align: center; /* Teks rata tengah di HP */
    }
    
    .author-card-wrapper .badge {
        margin: 0 auto; /* Badge rata tengah */
    }
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

/* --- 5. CTA Box (Call to Action) --- */
.cta-slab {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-copy h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-copy p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: #fff;
    color: #2c3e50;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-cta:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

.btn-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* --- 6. Sidebar Styling --- */
.sidebar .widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color, #007bff);
}

/* Banner Promo */
.banner-promo .promo-link {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.banner-promo img {
    width: 100%;
    transition: 0.3s;
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.banner-promo:hover img {
    transform: scale(1.05);
}

/* Mini Post List (Artikel Terkait) */
.mini-list .mini-post {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}

.mini-list .mini-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mini-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.mini-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.2s;
    /* Limit 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-post:hover .mini-title {
    color: var(--accent-color, #007bff);
}

.mini-meta {
    font-size: 0.75rem;
    color: #999;
}

/* Card & Background (Sama seperti sebelumnya) */
.register.section {
  background-color: #f6f9ff;
  padding: 80px 0;
}

.registration-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef1f5;
}

.section-header h2 {
  font-weight: 700;
  color: #012970;
}

/* Style Khusus Form Floating */
.form-floating > label {
  color: #6c757d;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: #4154f1;
  box-shadow: 0 0 0 0.25rem rgba(65, 84, 241, 0.15);
}

.form-control, .form-select {
  border-radius: 8px;
}

/* Tombol */
.btn-register {
  background: #25d366; /* Warna Hijau WA */
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-register:hover {
  background: #1ebc57;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* --- Video Testimonials Section --- */
.video-testimonials {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.video-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumb {
  position: relative;
  height: 200px; /* Tinggi thumbnail */
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

/* Tombol Play di Tengah */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.play-btn i {
  font-size: 30px;
  color: #007bff; /* Ganti dengan warna tema website (accent-color) */
  margin-left: 3px; /* Penyesuaian optis ikon play */
}

.play-btn:hover {
  background: #007bff; /* Warna tema */
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn:hover i {
  color: #fff;
}

.video-info {
  padding: 25px;
  text-align: center;
}

.video-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.video-info span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.video-info p {
  font-style: italic;
  font-size: 15px;
  color: #555;
}

.num-font {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.2em;
  font-weight: 600;
}

/* Animasi Pulse untuk Tombol Play */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --- Modal Pop Up Styling --- */
.video-modal {
  display: none; /* Tersembunyi secara default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* Latar belakang gelap transparan */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: transparent;
  border: none;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

.close-modal:hover {
  color: #ddd;
}

/* Bootstrap Ratio Fix (Jika tidak pakai Bootstrap, ini wajib ada) */
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  content: "";
}
.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register {
  padding-top: 52px;
  padding-bottom: 60px;
}

.register .registration-form-wrapper {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.register .registration-form-wrapper .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.register .registration-form-wrapper .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .registration-form-wrapper label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.register .registration-form-wrapper .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: var(--default-color);
}

.register .registration-form-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.register .registration-form-wrapper .password-input {
  position: relative;
}

.register .registration-form-wrapper .password-input .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.register .registration-form-wrapper .password-input .toggle-password:hover {
  color: var(--heading-color);
}

.register .registration-form-wrapper .password-requirements {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

.register .registration-form-wrapper .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .registration-form-wrapper .form-check .form-check-label {
  color: var(--default-color);
  font-weight: normal;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-label a {
  text-decoration: underline;
}

.register .registration-form-wrapper .form-check .form-check-label a:hover {
  text-decoration: none;
}

.register .registration-form-wrapper .btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.register .registration-form-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.register .registration-form-wrapper .btn-primary:active {
  transform: translateY(0);
}

.register .registration-form-wrapper .loading,
.register .registration-form-wrapper .error-message,
.register .registration-form-wrapper .sent-message {
  margin: 1rem 0;
}

@media (max-width: 767.98px) {
  .register .register-form {
    padding: 1.5rem;
  }

  .register .register-form .section-header h2 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 .member-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-2 .member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

.team-2 .member-card:hover .member-image-wrapper img {
  transform: scale(1.05);
}

.team-2 .member-image-wrapper {
  overflow: hidden;
  position: relative;
}

.team-2 .member-image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-2 .member-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-2 .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.team-2 .member-role {
  font-size: 0.875rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.team-2 .member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.team-2 .member-socials {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team-2 .member-socials a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 8px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.team-2 .member-socials a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .team-2 .member-name {
    font-size: 1.15rem;
  }

  .team-2 .member-role {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .team-2 .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .team-2 .member-card {
    box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .team-2 .member-name {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-3 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-3:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action-3 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-3 p {
  color: var(--default-color);
}

.call-to-action-3 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-3 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}