/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* START NAVBAR */

.navbar {
  transition: all 0.3s ease-in-out;
  padding: 0 15px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Shrink on scroll */
.navbar.shrink {
  padding: 5px 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Brand */
.navbar .navbar-brand {
  font-weight: bold;
  color: #0d6efd;
  display: flex;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.navbar .navbar-brand img {
  max-height: 100px;
  margin-left: -60px;
}

.navbar .navbar-brand span {
  margin-left: 3px;
  font-size: 1.5rem;
  transform: translateY(-5px);
  color: #0a58ca !important; /* Override Bootstrap's .text-primary */
}

/* Nav links */
.navbar-nav .nav-link {
  color: #333;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #0d6efd;
  text-decoration: underline;
}

.navbar-nav .nav-link.active {
  color: #0d6efd;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #0d6efd;
  animation: slide-in 0.3s ease forwards;
}

@keyframes slide-in {
  from { width: 0; }
  to { width: 100%; }
}

/* Dropdowns */
.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
  }
}

/* Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  min-width: 200px;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }
}

.dropdown-submenu > .dropdown-toggle::after {
  content: none;
}

.dropdown-submenu > .dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.dropdown-submenu > .dropdown-item i {
  margin-right: 15px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

@media (min-width: 992px) {
  .dropdown-submenu > .dropdown-item {
    padding: 12px 20px;
  }

  .dropdown-submenu > .dropdown-item i {
    margin-right: 20px;
    font-size: 1.3rem;
  }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .nav-item.dropdown.show > .dropdown-menu {
    display: block;
    position: static;
    width: 100%;
    text-align: center;
  }

  .dropdown-submenu .dropdown-menu {
    position: relative;
    left: 0;
    display: none;
  }

  .dropdown-submenu .dropdown-menu.show {
    display: block;
    position: relative;
    width: 100%;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: none !important;
  }

  .navbar .navbar-brand img {
    margin-left: 0;
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-submenu .dropdown-menu.show {
  display: block;
  animation: slideInLeft 0.3s ease forwards;
}

/* === Dark Mode Support for Navbar === */
@media (prefers-color-scheme: dark) {
  .navbar {
    background-color: rgba(10, 15, 26, 0.85) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar .navbar-brand span {
    color: #66aaff !important;
  }

  .navbar .navbar-brand img {
    position: relative;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 12px;
    background-color: transparent !important; /* hilangkan kotak putih */
    animation: pulse-glow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 8px rgba(51, 144, 255, 0.4));
    transition: transform 0.3s ease-in-out;
  }

  .navbar .navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 12px rgba(51, 144, 255, 0.5));
  }

  .navbar-nav .nav-link {
    color: #cfd8e3 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #66bfff !important;
    text-decoration: underline;
  }

  .navbar-nav .nav-link.active {
    color: #3390ff !important;
  }

  .navbar-nav .nav-link.active::after {
    background-color: #3390ff !important;
  }

  .dropdown-menu {
    background-color: rgba(20, 28, 43, 0.95) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item {
    color: #dbe2ec !important;
    background-color: transparent !important; /* default agar tidak putih */
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: rgba(51, 144, 255, 0.12) !important;
    color: #ffffff !important;
  }

  /* Tambahan untuk mengatasi prioritas Bootstrap */
  .navbar .dropdown-menu .dropdown-item:hover,
  .navbar .dropdown-menu .dropdown-item:focus {
    background-color: rgba(51, 144, 255, 0.12) !important;
    color: #ffffff !important;
  }

  .dropdown-submenu > .dropdown-menu {
    background-color: rgba(20, 28, 43, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-submenu > .dropdown-item i {
    color: #66bfff;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

  @media (max-width: 991px) {
    .navbar-nav .nav-link {
      color: #dbe2ec !important;
    }

    .navbar-nav .nav-link:hover {
      color: #66bfff !important;
    }

    .nav-item.dropdown.show > .dropdown-menu {
      background-color: rgba(20, 28, 43, 0.95);
    }
  }
}

/* === Logo Glow Animation === */
@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 8px rgba(51, 144, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 12px rgba(51, 144, 255, 0.6));
  }
}

/* END NAVBAR */

/* START HERO SECTION */

html {
  scroll-padding-top: 100px;
}

body {
  background-color: #f8f9fa !important;
}

.hero {
  position: relative;
  background: linear-gradient(130deg, #1e3c72, #2a5298, #00bcd4);
  background-size: 600% 600%;
  animation: gradientShift 20s ease infinite;
  min-height: 100vh;
  padding: 120px 8% 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  overflow: hidden;
  z-index: 1;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

/* Decorative background overlays */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Hero Content */
.hero-content {
  max-width: 50%;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: #00d4ff;
  background: linear-gradient(45deg, #00d4ff, #0d6efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.7;
  font-weight: 300;
  text-align: justify;
}

/* CTA Button */
.hero-btn {
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  background-color: #ffffff;
  color: #0d6efd;
  font-weight: 600;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero-btn:hover::after {
  opacity: 1;
}

.hero-btn:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  transform: translateY(-3px);
}

/* Logo Image with animated white neon glow */
.hero-logo {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite, float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.65));
}

.hero-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine-slide 4s infinite ease-in-out;
  pointer-events: none;
}

/* Logo Desktop */
.hero-logo-desktop {
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -60px;
  z-index: 2;
}

/* Logo Mobile */
.hero-logo-mobile {
  display: none;
}

/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  z-index: 2;
}

.stat-item {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 229, 255, 0.2);
}

.stat-icon {
  font-size: 1.5rem;
  color: #00d4ff;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.stat-text p {
  font-size: 0.8rem;
  color: #bdefff;
  margin: 2px 0 0;
  font-weight: 500;
}

/* Animation Appearance */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 110px 5% 70px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: justify;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 1rem;
    margin-top: 10px;
  }

  .stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding: 0 15px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    max-width: 220px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .stat-icon {
    font-size: 1.6rem;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #00d4ff;
  }

  .stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .stat-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 4px 0 2px;
    line-height: 1.2;
    text-align: center;
  }

  .stat-text p {
    font-size: 0.75rem;
    color: #bdefff;
    margin: 0;
    font-weight: 500;
    text-align: center;
  }

  .hero-logo-desktop {
    display: none;
  }

  .hero-logo-mobile {
    display: flex;
    justify-content: center;
    margin: 8px 0 12px;
  }

  .hero-logo {
    max-width: 250px;
    height: auto;
    opacity: 1;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
  }
}

@keyframes shine-slide {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  60% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

/* === Dark Mode Support for Hero Section === */
@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: #0a0f1a !important;
  }

  .hero {
    background: linear-gradient(130deg, #0a0f1a, #15233e, #1e3c72);
    background-size: 600% 600%;
    animation: gradientShift 20s ease infinite;
    color: #ffffff;
  }

  .hero::after {
    background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    opacity: 0.02;
  }

  .hero::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.015), transparent 70%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.025), transparent 70%);
  }

  .hero-title {
    color: #f1f5f9;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

  .hero-title span {
    color: #66d9ff;
    background: linear-gradient(45deg, #00d4ff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero p {
    color: #cbd5e1;
  }

  .hero-btn {
    background-color: #ffffff;
    color: #0d6efd;
    border: none;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
  }

  .hero-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
  }

  .hero-btn::after {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
  }

  .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }

  .stat-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #00e0ff;
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
  }

  .stat-text h3 {
    color: #ffffff;
  }

  .stat-text p {
    color: #bdefff;
  }

  .hero-logo {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
  }
}

/* END HERO SECTION */


/* --- START FOOTER SECTION (Enhanced & Responsive) --- */

#footer {
  background: linear-gradient(130deg, #1e3c72, #2a5298, #00bcd4);
  background-size: 600% 600%;
  animation: gradientShift 20s ease infinite;
  color: #ffffff;
  padding: 60px 0;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

#footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

#footer .container {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

/* Headings */
#footer h5,
#footer h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 16px;
}

#footer h5 {
  font-size: 1.3rem;
}

#footer h6 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* Paragraphs */
#footer p {
  font-size: 1rem;
  color: #d6ecff;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Links */
#footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

#footer a:hover {
  color: #00e5ff;
  transform: translateY(-2px);
}

/* Unordered List Styling (if used in future) */
#footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#footer ul li {
  margin-bottom: 8px;
}

#footer ul li a {
  font-size: 0.95rem;
  color: #d6ecff;
  transition: all 0.3s ease;
}

#footer ul li a:hover {
  color: #00e5ff;
  transform: translateX(4px);
}

/* Social Icons */
#footer .social-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#footer .social-icons a {
  font-size: 1.8rem;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

#footer .social-icons a:hover {
  transform: scale(1.15);
  color: #00e5ff;
}

/* Footer Columns */
#footer .footer-col {
  padding: 0 12px;
}

@media (min-width: 768px) {
  #footer .footer-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    text-align: start;
  }
}

/* Icon spacing (bi icons in text) */
#footer i.bi {
  vertical-align: middle;
  margin-right: 6px;
}

/* Footer Extras */
#footer .small {
  font-size: 0.875rem;
  color: #aacded;
  margin-top: 0.5rem;
}

/* Responsive Layout */
@media (max-width: 767px) {
  #footer {
    padding: 50px 15px;
    text-align: center;
  }

  #footer .row > div {
    margin-bottom: 30px;
    text-align: center;
  }

  #footer h5,
  #footer h6 {
    font-size: 1.1rem;
  }

  #footer p {
    font-size: 0.95rem;
  }

  #footer ul li a {
    font-size: 0.95rem;
  }

  #footer .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  #footer .social-icons a {
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* === Dark Mode Support for Footer === */
@media (prefers-color-scheme: dark) {
  #footer {
    background: linear-gradient(130deg, #0a0f1a, #121926, #1b2b3a);
    background-size: 600% 600%;
    animation: gradientShift 20s ease infinite;
    color: #f1f5f9;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.5);
  }

  #footer::after {
    background: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
    opacity: 0.02;
  }

  #footer h5,
  #footer h6 {
    color: #e2ecf3;
  }

  #footer p {
    color: #c9d6e2;
  }

  #footer a {
    color: #e5f3ff;
  }

  #footer a:hover {
    color: #66ccff;
  }

  #footer ul li a {
    color: #cfe7fa;
  }

  #footer ul li a:hover {
    color: #66ccff;
  }

  #footer .social-icons a {
    color: #ffffff;
  }

  #footer .social-icons a:hover {
    color: #33bbff;
  }

  #footer .small {
    color: #9db8d4;
  }

  /* Optional: icon tinting */
  #footer i.bi {
    color: #87c7ff;
  }

  /* Responsive override */
  @media (max-width: 767px) {
    #footer {
      background: linear-gradient(130deg, #0a0f1a, #121926, #1b2b3a);
    }
  }
}

/* --- END FOOTER SECTION --- */

/* WhatsApp Button Styling */
.btn-whatsapp {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px; /* Ensures the button is circular */
  height: 50px; /* Ensures the button is circular */
  z-index: 9999; /* Ensures the button stays on top of all content */
}

.btn-whatsapp i {
  font-size: 1.8rem; /* Icon size */
}

/* Hover effect for WhatsApp button */
.btn-whatsapp:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .btn-whatsapp {
    width: 45px; /* Smaller button on mobile */
    height: 45px; /* Smaller button on mobile */
    padding: 8px; /* Less padding */
  }

  .btn-whatsapp i {
    font-size: 1.5rem; /* Slightly smaller icon on mobile */
  }
}

/* Section */
section {
  padding: 80px 15px;
}

/* --- START LAYANAN SECTION (ENHANCED) --- */

#layanan {
  position: relative;
  padding: 100px 15px 80px;
  background-color: #f8f9fa;
  overflow: hidden;
  z-index: 1;
  border-top: 1px solid #eaf4ff;
}

#layanan h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2d5b;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 #fff;
}

#layanan p {
  color: #495057;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* --- Service Card --- */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.2rem 2rem;
  border: 1px solid #e3f0ff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  position: relative;
  backdrop-filter: blur(6px);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #b5d9ff;
  box-shadow: 0 20px 50px rgba(0, 98, 255, 0.1);
}

/* Badge Populer */
.service-card .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6efd, #66a3ff);
  color: #fff;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.3);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Icon Container */
.icon-container {
  background: radial-gradient(circle at center, #e0efff, transparent 70%);
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 24px rgba(13, 110, 253, 0.07);
  transition: transform 0.3s ease;
}

.service-card:hover .icon-container {
  transform: scale(1.08);
}

.icon-container i {
  font-size: 2.4rem;
  color: #0d6efd;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Float Icon Animation */
.float-icon {
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Title & Description */
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* List Items */
.service-card ul {
  padding-left: 0;
  margin-bottom: 1rem;
}

.service-card li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #2c2c2c;
}

.service-card li i {
  margin-right: 8px;
  flex-shrink: 0;
  color: #0d6efd;
}

/* Optional CTA Button */
.service-card .btn {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #0d6efd;
  color: #fff;
  margin-top: auto;
}

.service-card .btn:hover {
  background-color: #0b5ed7;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.25);
  transform: translateY(-2px);
}

/* Responsive Grid */
#layanan .col-lg-4,
#layanan .col-md-6 {
  display: flex;
  align-items: stretch;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  #layanan {
    padding: 60px 15px;
  }

  #layanan h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.6rem;
  }

  .icon-container {
    width: 70px;
    height: 70px;
  }

  .icon-container i {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card li {
    font-size: 0.85rem;
  }

  .service-card .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }

  .service-card .badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #layanan {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #layanan h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  #layanan p,
  #layanan p.text-muted,
  #layanan .fs-5 {
    color: #b5bbc5 !important;
  }

  #layanan .card.service-card {
    background: rgba(18, 24, 38, 0.92);
    color: #e1e7ef;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #layanan .card.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.7),
      0 0 12px rgba(51, 144, 255, 0.08);
  }

  #layanan .card.service-card h3 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }

  #layanan .card.service-card p {
    color: #c0c6cf !important;
  }

  #layanan .card.service-card li {
    color: #e1e7ef;
  }

  #layanan .card.service-card li i {
    color: #66aaff;
  }

  #layanan .badge.bg-primary {
    background: linear-gradient(90deg, #0d6efd, #66a3ff);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(13, 110, 253, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  #layanan .icon-container {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 70%);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.1);
  }

  #layanan .icon-container i {
    color: #66aaff !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
}

/* --- END LAYANAN SECTION --- */

/* --- START BENEFIT SECTION (MATCHING LAYANAN SECTION EXACTLY) --- */

#benefit {
  position: relative;
  padding: 100px 15px 80px;
  background-color: #f8f9fa; /* Sama persis seperti Layanan */
  border-top: 1px solid #eaf4ff;
  overflow: hidden;
  z-index: 1;
}

#benefit h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2d5b;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

#benefit p {
  color: #495057;
  font-size: 1.125rem;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* Benefit Card */
.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.1);
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover .icon-circle {
  transform: scale(1.03);
}

.icon-circle i {
  font-size: 2rem;
  color: #0d6efd;
  animation: floatIcon 3s ease-in-out infinite;
}

/* Text */
.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Float Animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Equal Height Grid */
#benefit .col-lg-4,
#benefit .col-md-6 {
  display: flex;
  align-items: stretch;
}

/* Responsive */
@media (max-width: 767px) {
  #benefit {
    padding: 60px 15px;
  }

  #benefit h2 {
    font-size: 2rem;
  }

  .benefit-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
  }

  .icon-circle i {
    font-size: 1.6rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #benefit {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #benefit h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  #benefit > p,
  #benefit p.text-muted,
  #benefit .fs-5 {
    color: #b5bbc5 !important;
  }

  /* Pastikan gunakan .benefit-card bukan .card.benefit-card */
  #benefit .benefit-card {
    background: rgba(18, 24, 38, 0.92);
    color: #e1e7ef;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #benefit .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.7),
      0 0 12px rgba(51, 144, 255, 0.08);
  }

  #benefit .benefit-card h3 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }

  #benefit .benefit-card p {
    color: #c0c6cf !important;
  }

  #benefit .benefit-card li {
    color: #e1e7ef;
  }

  #benefit .benefit-card li i {
    color: #66aaff;
  }

  #benefit .icon-circle {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 70%);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.1);
  }

  #benefit .icon-circle i {
    color: #66aaff !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
}

/* --- END BENEFIT SECTION --- */

/* --- START PRICING SECTION MATCHING LAYANAN & BENEFIT --- */

#paket {
  position: relative;
  padding: 100px 15px 80px;
  background-color: #f8f9fa; /* <== DISESUAIKAN agar match dengan bg-light Bootstrap */
  border-top: 1px solid #eaf4ff;
  overflow: hidden;
  z-index: 1;
}

/* Heading & Paragraph */
#paket h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2d5b;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #fff;
}

#paket p {
  color: #495057;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* Pricing Card */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.2rem 2rem;
  border: 1px solid #e3f0ff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  position: relative;
  backdrop-filter: blur(6px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #b5d9ff;
  box-shadow: 0 20px 50px rgba(0, 98, 255, 0.1);
}

/* Featured Badge */
.pricing-card.featured {
  border: 2px solid #0d6efd;
}

.pricing-card.featured .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6efd, #66a3ff);
  color: #fff;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.3);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Icon */
.icon-circle {
  background: radial-gradient(circle at center, #e0efff, transparent 70%);
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 24px rgba(13, 110, 253, 0.07);
  transition: transform 0.3s ease;
}

.pricing-card:hover .icon-circle {
  transform: scale(1.08);
}

.icon-circle i {
  font-size: 2.4rem;
  color: #0d6efd;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Title & Description */
.pricing-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  text-align: center;
}

.pricing-card p {
  font-size: 1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Features */
.pricing-card ul {
  padding-left: 0;
  margin-bottom: 1rem;
}

.pricing-card li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #2c2c2c;
}

.pricing-card li i {
  margin-right: 8px;
  flex-shrink: 0;
  color: #0d6efd;
}

/* CTA Button */
.pricing-card .btn {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #0d6efd;
  color: #fff;
  margin-top: auto;
}

.pricing-card .btn:hover {
  background-color: #0b5ed7;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.25);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
  #paket {
    padding: 60px 15px;
  }

  #paket h2 {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 1.6rem;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
  }

  .icon-circle i {
    font-size: 2rem;
  }

  .pricing-card h5 {
    font-size: 1.3rem;
  }

  .pricing-card p {
    font-size: 0.9rem;
  }

  .pricing-card li {
    font-size: 0.85rem;
  }

  .pricing-card .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }

  .pricing-card .badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #paket {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #paket h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  #paket p,
  #paket .fs-5,
  #paket p.text-muted {
    color: #b5bbc5 !important;
  }

  #paket .pricing-card {
    background: rgba(18, 24, 38, 0.92);
    color: #e1e7ef;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none !important;
  }

  #paket .pricing-card:hover {
    transform: translateY(-14px);
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.7),
      0 0 12px rgba(51, 144, 255, 0.08);
  }

  #paket .pricing-card h5 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }

  #paket .pricing-card p {
    color: #c0c6cf !important;
  }

  #paket .pricing-card li {
    color: #e1e7ef;
  }

  #paket .pricing-card li i {
    color: #66aaff !important;
  }

  #paket .badge,
  #paket .pricing-card .badge {
    background: linear-gradient(90deg, #0d6efd, #66a3ff);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(13, 110, 253, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  #paket .icon-circle {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.12);
  }

  #paket .icon-circle i {
    color: #66aaff !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }

  #paket .bg-light {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #66bfff !important;
  }

  #paket .btn-outline-primary,
  #paket .btn-outline-success {
    border-color: #3390ff;
    color: #66bfff;
    background-color: transparent;
    backdrop-filter: blur(3px);
  }

  #paket .btn-outline-primary {
    color: #ffffff !important; /* ✅ Tambahan untuk "Pilih Paket" agar jadi putih */
  }

  #paket .btn-outline-primary:hover,
  #paket .btn-outline-success:hover {
    background-color: #3390ff;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(51, 144, 255, 0.3);
  }

  #paket .btn-primary {
    background-color: #1a2639;
    color: #c2d4ee;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.12);
  }

  #paket .btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    background-color: #3390ff;
    color: #fff;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
  }

  #paket .btn:focus {
    outline: 2px solid #66bfff;
    outline-offset: 4px;
  }
}

/* --- END PRICING SECTION --- */

/* --- START ACADEMIC PACKAGES SECTION MATCHING PRICING --- */

#akademik {
  position: relative;
  padding: 100px 15px 80px;
  background-color: #f8f9fa;
  border-top: 1px solid #eaf4ff;
  overflow: hidden;
  z-index: 1;
}

/* Heading & Paragraph */
#akademik h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2d5b;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #fff;
  text-align: center;
}

#akademik p {
  color: #495057;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Pricing Card */
#akademik .pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.2rem 2rem;
  border: 1px solid #e3f0ff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  position: relative;
  backdrop-filter: blur(6px);
}

#akademik .pricing-card:hover {
  transform: translateY(-10px);
  border-color: #b5d9ff;
  box-shadow: 0 20px 50px rgba(0, 98, 255, 0.1);
}

/* Featured Badge */
#akademik .pricing-card.featured {
  border: 2px solid #0d6efd;
}

#akademik .pricing-card.featured .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6efd, #66a3ff);
  color: #fff;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.3);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Icon */
#akademik .icon-circle {
  background: radial-gradient(circle at center, #e0efff, transparent 70%);
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 24px rgba(13, 110, 253, 0.07);
  transition: transform 0.3s ease;
}

#akademik .pricing-card:hover .icon-circle {
  transform: scale(1.08);
}

#akademik .icon-circle i {
  font-size: 2.4rem;
  color: #0d6efd;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Title & Description */
#akademik .pricing-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  text-align: center;
}

#akademik .pricing-card p {
  font-size: 1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Features */
#akademik .pricing-card ul {
  padding-left: 0;
  margin-bottom: 1rem;
}

#akademik .pricing-card li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #2c2c2c;
}

#akademik .pricing-card li i {
  margin-right: 8px;
  flex-shrink: 0;
  color: #0d6efd;
}

/* CTA Button */
#akademik .pricing-card .btn {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #0d6efd;
  color: #fff;
  margin-top: auto;
}

#akademik .pricing-card .btn:hover {
  background-color: #0b5ed7;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.25);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
  #akademik {
    padding: 60px 15px;
  }

  #akademik h2 {
    font-size: 2rem;
  }

  #akademik .pricing-card {
    padding: 1.6rem;
  }

  #akademik .icon-circle {
    width: 70px;
    height: 70px;
  }

  #akademik .icon-circle i {
    font-size: 2rem;
  }

  #akademik .pricing-card h5 {
    font-size: 1.3rem;
  }

  #akademik .pricing-card p {
    font-size: 0.9rem;
  }

  #akademik .pricing-card li {
    font-size: 0.85rem;
  }

  #akademik .pricing-card .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }

  #akademik .pricing-card .badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #akademik {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #akademik h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  #akademik p,
  #akademik .fs-5,
  #akademik p.text-muted {
    color: #b5bbc5 !important;
  }

  #akademik .pricing-card {
    background: rgba(18, 24, 38, 0.92);
    color: #e1e7ef;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none !important;
  }

  #akademik .pricing-card:hover {
    transform: translateY(-14px);
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.7),
      0 0 12px rgba(51, 144, 255, 0.08);
  }

  #akademik .pricing-card h5 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }

  #akademik .pricing-card p {
    color: #c0c6cf !important;
  }

  #akademik .pricing-card li {
    color: #e1e7ef;
  }

  #akademik .pricing-card li i {
    color: #66aaff !important;
  }

  #akademik .badge,
  #akademik .pricing-card .badge {
    background: linear-gradient(90deg, #0d6efd, #66a3ff);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(13, 110, 253, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  #akademik .icon-circle {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.12);
  }

  #akademik .icon-circle i {
    color: #66aaff !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }

  #akademik .bg-light {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #66bfff !important;
  }

  /* === CTA Button Style (identik dengan #paket) === */
  #akademik .btn-outline-primary {
    border: 1px solid #3390ff !important;
    color: #ffffff !important;
    background-color: transparent !important;
    backdrop-filter: blur(3px) !important;
    box-shadow: none !important;
  }

  #akademik .btn-outline-primary:hover {
    background-color: #3390ff !important;
    color: #ffffff !important;
    box-shadow: 0 0 16px rgba(51, 144, 255, 0.3) !important;
  }

  #akademik .btn-primary {
    background-color: #1a2639;
    color: #c2d4ee;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.12);
  }

  #akademik .btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    background-color: #3390ff;
    color: #fff;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
  }

  #akademik .btn:focus {
    outline: 2px solid #66bfff;
    outline-offset: 4px;
  }
}

/* --- END ACADEMIC PACKAGES SECTION MATCHING PRICING --- */

/* --- START PORTOFOLIO SECTION FINAL --- */

#portofolio {
  position: relative;
  padding: 100px 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #eaf4ff;
  overflow: hidden;
  z-index: 1;
}

#portofolio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.025;
  pointer-events: none;
  z-index: -1;
}

/* === Heading === */
#portofolio h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10284e;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

/* === Carousel Scroll Wrapper === */
.portfolio-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

/* === Carousel Track === */
.portfolio-scroll-wrapper .carousel-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
  transition: transform 0.4s ease;
  user-select: none;
  cursor: grab;
}

.portfolio-scroll-wrapper .carousel-track:active {
  cursor: grabbing;
}

/* === Portfolio Item === */
.carousel-track .portfolio-thumb {
  flex: 0 0 calc((100% - 2rem * 2) / 3);
  min-width: 300px;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

.portfolio-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease;
}

.portfolio-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
}

.portfolio-thumb:hover img {
  transform: scale(1.05);
}

/* === Fade In Animation === */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === Responsive === */
@media (max-width: 991px) {
  #portofolio h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .carousel-track .portfolio-thumb {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 767px) {
  #portofolio {
    padding: 70px 15px;
  }

  #portofolio h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .carousel-track .portfolio-thumb {
    flex: 0 0 90%;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #portofolio {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #portofolio::after {
    background: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.02;
  }

  #portofolio h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  /* ✅ Perbaikan warna teks paragraf deskripsi */
  #portofolio p,
  #portofolio .fs-5,
  #portofolio p.text-muted {
    color: #b5bbc5 !important;
  }

  .portfolio-thumb {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background-color: rgba(18, 24, 38, 0.94);
  }

  .portfolio-thumb img {
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .portfolio-thumb:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  }
}

/* --- END PORTOFOLIO SECTION FINAL --- */

/* --- START MODAL PORTOFOLIO PREMIUM ENHANCED --- */

.modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  animation: slideFadeUp 0.4s ease;
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.modal-header {
  background: linear-gradient(120deg, #0d2d5b, #11407e);
  color: #ffffff;
  padding: 24px 28px;
  border-bottom: none;
  display: flex;
  align-items: center;
}

.modal-title {
  font-weight: 800;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  flex: 1;
}

.btn-close {
  filter: invert(1);
  opacity: 0.9;
}

/* Body */
.modal-body {
  background-color: #f9fbff;
  padding: 36px;
}

.modal-body img {
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Description Text */
.modal-body p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  text-align: left;
  font-weight: 500;
}

/* Optional Badge */
.modal-body .badge {
  background-color: #e3f0ff;
  color: #003c7e;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 1rem;
  display: inline-block;
}

/* CTA Button */
.modal-body .btn-primary {
  background: linear-gradient(135deg, #0d6efd, #508bff);
  border: none;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}

.modal-body .btn-primary:hover {
  background: linear-gradient(135deg, #0b5ed7, #377de6);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.25);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .modal-header {
    padding: 18px 20px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 24px;
  }

  .modal-body img {
    max-height: 300px;
  }

  .modal-body p {
    font-size: 0.95rem;
  }

  .modal-body .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* --- END MODAL PORTOFOLIO PREMIUM ENHANCED --- */

/* --- Start Profil Tim Kami - Redesign Total --- */

#profil-tim {
  position: relative;
  padding: 100px 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #eaf4ff;
  overflow: hidden;
  z-index: 1;
}

#profil-tim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/symphony.png");
  opacity: 0.015;
  pointer-events: none;
  z-index: -1;
}

/* === Heading === */
#profil-tim h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d2d5b;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

#profil-tim p {
  font-size: 1.1rem;
  color: #58626a;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

/* === Card Container (support .team-card & .pricing-card) === */
#profil-tim .team-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform;
}

#profil-tim .team-card:hover,
#profil-tim .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
}

/* === Featured Border === */
#profil-tim .team-card.featured,
#profil-tim .pricing-card.featured {
  border: 2px solid #0d6efd;
}

/* === Badge Support (badge-top or Bootstrap .badge) === */
#profil-tim .badge-top,
#profil-tim .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6efd, #66a3ff);
  color: #fff;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.3);
  z-index: 3;
}

/* === Photo === */
#profil-tim .team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#profil-tim .team-photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

#profil-tim .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 5px solid #fff;
  transition: transform 0.5s ease;
}

#profil-tim .team-card:hover .team-photo img {
  transform: scale(1.06) rotateZ(-0.5deg);
}

/* === Title & Text === */
#profil-tim h5 {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0d2d5b;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

#profil-tim .team-card p,
#profil-tim .pricing-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* === Button === */
#profil-tim .btn {
  font-weight: 600;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 30px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.12);
}

#profil-tim .btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

#profil-tim .btn-outline-primary:hover,
#profil-tim .btn-outline-success:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* === Focus Accessibility === */
#profil-tim .btn:focus {
  outline: 2px dashed #3390ff;
  outline-offset: 4px;
}

/* === Fade Animation === */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  #profil-tim {
    padding: 70px 15px;
  }

  #profil-tim h2 {
    font-size: 2.2rem;
  }

  #profil-tim p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  #profil-tim .icon-circle,
  #profil-tim .team-photo {
    width: 110px;
    height: 110px;
  }

  #profil-tim .badge-top,
  #profil-tim .badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #profil-tim {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #profil-tim h2,
  #profil-tim h5 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  #profil-tim p,
  #profil-tim .team-card p,
  #profil-tim .pricing-card p {
    color: #b5bbc5;
  }

  /* ✅ Tambahan untuk ubah warna putih di <p class="text-muted"> */
  #profil-tim p.text-muted {
    color: #ffffff !important;
  }

  #profil-tim .team-card,
  #profil-tim .pricing-card {
    background: rgba(18, 24, 38, 0.92);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    color: #e1e7ef;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #profil-tim .team-card:hover {
    transform: translateY(-14px);
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.7),
      0 0 12px rgba(51, 144, 255, 0.08);
  }

  #profil-tim .team-card::before,
  #profil-tim .pricing-card::before {
    background: linear-gradient(120deg, #3390ff33, #ffffff06);
  }

  #profil-tim .team-photo::before,
  #profil-tim .icon-circle::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  }

  #profil-tim .team-photo img {
    border: 4px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  #profil-tim .team-card:hover .team-photo img {
    transform: scale(1.07);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
  }

  #profil-tim .badge-top,
  #profil-tim .badge {
    background: linear-gradient(90deg, #0d6efd, #66a3ff);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(13, 110, 253, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  #profil-tim .btn-outline-primary,
  #profil-tim .btn-outline-success {
    border-color: #3390ff;
    color: #66bfff;
    background-color: transparent;
    backdrop-filter: blur(3px);
  }

  #profil-tim .btn-outline-primary:hover,
  #profil-tim .btn-outline-success:hover {
    background-color: #3390ff;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(51, 144, 255, 0.3);
  }

  #profil-tim .btn {
    background-color: #1a2639;
    color: #c2d4ee;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.12);
  }

  #profil-tim .btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
  }

  #profil-tim .btn:focus {
    outline: 2px solid #66bfff;
    outline-offset: 4px;
  }
}

/* --- End Profil Tim Kami - Redesign Total --- */

/* --- START TESTIMONI SECTION (Final with Original Background) --- */

#testimoni {
  position: relative;
  padding: 100px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #eaf4ff;
  overflow: hidden;
  z-index: 1;
}

#testimoni::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/connected.png");
  opacity: 0.035;
  pointer-events: none;
  z-index: -1;
}

/* === Heading & Subtitle === */
#testimoni h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #10284e;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 0 #ffffff;
}

#testimoni p {
  font-size: 1.15rem;
  color: #58626a;
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

/* === Scrollable Track === */
.testimoni-scroll-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}

.testimoni-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
  user-select: none;
  cursor: grab;
  padding-inline: 0.5rem;
}

.testimoni-track:active {
  cursor: grabbing;
}

/* === Testimoni Card (Compact) === */
.testimoni-card {
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 460px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.testimoni-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.testimoni-card blockquote {
  margin: 0;
}

.testimoni-card p {
  font-size: 1.05rem;
  color: #2e2e2e;
  line-height: 1.7;
  font-style: italic;
  padding-left: 2.4rem;
  position: relative;
  margin-bottom: 1.2rem;
}

.testimoni-card p::before {
  content: "“";
  font-family: Georgia, serif;
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2.8rem;
  line-height: 1;
  color: #d1dce8;
}

/* === Footer & Author === */
.blockquote-footer {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0d6efd;
  text-transform: uppercase;
  margin-top: 1rem;
}

.author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #084298;
}

/* === Tombol === */
#testimoni .btn {
  font-weight: 600;
  padding: 12px 36px;
  font-size: 1.05rem;
  border-radius: 32px;
  border: 2px solid #0d6efd;
  background-color: #ffffff;
  color: #0d6efd;
  transition: all 0.3s ease;
}

#testimoni .btn:hover {
  background-color: transparent;
  color: #0d6efd;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(13, 110, 253, 0.1);
}

/* === Responsive === */
@media (max-width: 768px) {
  #testimoni {
    padding: 70px 15px;
  }

  #testimoni h2 {
    font-size: 2rem;
  }

  #testimoni p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .testimoni-card {
    flex: 0 0 90%;
    padding: 1.6rem;
  }

  .testimoni-card p {
    font-size: 1rem;
  }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  #testimoni {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #testimoni::before {
    background: url("https://www.transparenttextures.com/patterns/connected.png");
    opacity: 0.02;
  }

  #testimoni h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
  }

  #testimoni p,
  #testimoni .fs-5,
  #testimoni p.text-muted {
    color: #b5bbc5 !important;
  }

  /* ✅ Spesifikan selektor agar override berhasil seperti di profil-tim */
  #testimoni .testimoni-scroll-wrapper .testimoni-card {
    background-color: rgba(18, 24, 38, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: #dce3ed;
  }

  #testimoni .testimoni-scroll-wrapper .testimoni-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75);
  }

  #testimoni .testimoni-scroll-wrapper .testimoni-card p {
    color: #dce3ed;
  }

  #testimoni .testimoni-scroll-wrapper .testimoni-card p::before {
    color: #66aaff;
    opacity: 0.8;
  }

  #testimoni .blockquote-footer {
    color: #66aaff;
  }

  #testimoni .author-name {
    color: #c2d4ee;
  }

  #testimoni .btn {
    border-color: #3390ff;
    color: #ffffff !important;
    background-color: transparent;
    backdrop-filter: blur(3px);
  }

  #testimoni .btn:hover {
    background-color: #3390ff;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(51, 144, 255, 0.3);
    transform: translateY(-1px);
  }

  #testimoni .btn:focus {
    outline: 2px solid #66bfff;
    outline-offset: 4px;
  }
}

/* --- END TESTIMONI SECTION --- */

/* --- START CTA SECTION (NO YELLOW, MATCHED STYLE) --- */
#cta {
  background: radial-gradient(circle at top left, #e3f2fd 0%, #f9fbff 60%, #ffffff 100%);
  padding: 100px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/connected.png");
  opacity: 0.035;
  z-index: -1;
  pointer-events: none;
}

/* Icon */
#cta .cta-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 1.25rem;
  animation: floatIcon 3s ease-in-out infinite;
}

/* Heading */
#cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #10284e;
  margin-bottom: 1rem;
}

/* Subtext */
#cta p {
  font-size: 1.125rem;
  color: #495057;
  max-width: 720px;
  margin: 0 auto 2rem;
}

/* Button */
#cta .btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background-color: #0d6efd;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(13, 110, 253, 0.1);
}

#cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2rem rgba(13, 110, 253, 0.15);
}

/* Float Icon Animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Responsive */
@media (max-width: 767px) {
  #cta {
    padding: 70px 15px;
  }

  #cta h2 {
    font-size: 1.75rem;
  }

  #cta p {
    font-size: 1rem;
  }

  #cta .cta-icon {
    font-size: 2.5rem;
  }

  #cta .btn {
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }
}
/* --- END CTA SECTION --- */

/* --- START FAQ SECTION (2-2 Layout Responsive & Clean) --- */

#faq {
  position: relative;
  padding: 90px 15px;
  background-color: #f8f9fa;
  color: #212529;
  z-index: 1;
}

#faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/connected.png");
  opacity: 0.015;
  pointer-events: none;
  z-index: -1;
}

/* === Heading & Subheading === */
#faq h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d2d5b;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 1.2px;
}

#faq p {
  font-size: 1.1rem;
  color: #6c757d;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* === Grid Layout (2-2 Desktop, 1-1 Mobile) === */
#faq .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

#faq .col-md-6 {
  flex: 0 0 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
}

@media (max-width: 768px) {
  #faq .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* === Accordion Styling === */
#faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

/* === Accordion Card Style === */
.accordion-item {
  background-color: #fff;
  border: 1px solid #e3e6f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.accordion-item:hover {
  border-color: #c9d4e2;
}

/* === Accordion Header === */
.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d2d5b;
  background-color: transparent;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.accordion-button:hover {
  background-color: #f4faff;
  color: #0a58ca;
}

.accordion-button:not(.collapsed) {
  background-color: #e9f3ff;
  color: #0d6efd;
}

/* === Arrow Icon === */
.accordion-button::after {
  content: "⌄";
  font-size: 1.2rem;
  margin-left: auto;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  color: #adb5bd;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #0d6efd;
}

/* === Accordion Body === */
.accordion-collapse {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-collapse.show {
  display: block;
  max-height: 800px; /* asumsi konten tidak lebih dari 800px */
}

.accordion-body {
  font-size: 1.05rem;
  color: #495057;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #e9ecef;
  background-color: #fff;
  line-height: 1.7;
}

/* === Responsive Text === */
@media (max-width: 768px) {
  #faq {
    padding: 60px 15px;
  }

  #faq h2 {
    font-size: 2rem;
  }

  #faq p {
    font-size: 1rem;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 0.95rem 1rem;
  }

  .accordion-body {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }
}

/* === Dark Mode Support for FAQ === */
@media (prefers-color-scheme: dark) {
  #faq {
    background-color: #0a0f1a;
    background-image:
      radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 60%),
      radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #faq::after {
    background: url("https://www.transparenttextures.com/patterns/connected.png");
    opacity: 0.02;
  }

  #faq h2 {
    color: #f9fafc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
  }

  #faq p,
  #faq .fs-5,
  #faq p.text-muted {
    color: #b5bbc5 !important;
  }

  /* Force override any background utility class */
  #faq .accordion-item,
  #faq .accordion-item.bg-white,
  #faq .accordion-item[class*="bg-"] {
    background-color: rgba(18, 24, 38, 0.95) !important;
    color: #d6dce5 !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px);
  }

  #faq .accordion-body {
    background-color: transparent !important;
    color: #d6dce5 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #faq .accordion-button {
    color: #e1e7ef !important;
    background-color: transparent !important;
  }

  #faq .accordion-button:hover {
    background-color: rgba(255, 255, 255, 0.04) !important;
    color: #66bfff !important;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: rgba(51, 144, 255, 0.08) !important;
    color: #66bfff !important;
  }

  #faq .accordion-button::after {
    color: #adb5bd !important;
  }

  #faq .accordion-button:not(.collapsed)::after {
    color: #66aaff !important;
  }
}

/* --- END FAQ SECTION --- */