/**
* Template Name: FolioOne
* Template URL: https://bootstrapmade.com/folioone-bootstrap-portfolio-website-template/
* Updated: Aug 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# 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;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* ===== GLOBAL COLORS (LIGHT THEME) ===== */
:root {
  --background-color: #ffffff;     /* Background utama website */
  --default-color: #4a5568;        /* Warna teks utama */
  --heading-color: #0b2341;        /* Warna judul */
  --accent-color: #1387c1;         /* Warna brand */
  --surface-color: #ffffff;        /* Card / box */
  --contrast-color: #ffffff;       /* Teks di atas accent */
}

/* ===== NAVIGATION COLORS ===== */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #1387c1;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0b2341;
  --nav-dropdown-hover-color: #1387c1;
}

/* ===== COLOR PRESETS ===== */

/* Section terang */
.light-background {
  --background-color: #ffffff;
  --surface-color: #f1f5f9;
}

/* Section kontras (opsional untuk hero / highlight) */
.dark-background {
  --background-color: #0b2341;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #0f2a4d;
  --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: #0f6fa0;
}

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

.card,
.pricing-card,
.client-card,
.testimonial-item {
  background: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-radius: 14px;
}


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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #e5eaf2;
}

.header .logo h1 {
  color: var(--heading-color);
}

.header .header-social-links a {
  color: #6b7280;
}

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

/* Header saat scroll */
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 28px 15px 0;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: #1f2937;
    font-weight: 500;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: -5px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    border: 1px solid #e5eaf2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
color: #374151;
  }

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

  .navmenu .dropdown ul a:hover {
    color: var(--accent-color);
    background: #f5f9ff;
  }
  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #0b2341;
    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: #ffffff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a {
    color: #1f2937;
  }
  .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 {
    background-color: #eef4fb;
  }
  .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 {
    background-color: var(--accent-color);
    color: #ffffff;
  }
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #0b2341;
    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(255,255,255,0.95);
    backdrop-filter: blur(6px);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #4a5568;
  background-color: #ffffff;
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

.footer .social-links {
  margin-top: 20px;
}

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

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #0f6fa0;
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# 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 96%);
  padding: 20px 0;
}

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

.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: 100px;
  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: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

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

.hero .hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content h2 .typed {
  color: var(--accent-color);
  font-weight: 600;
}

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

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

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero .hero-actions .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

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

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

.hero .hero-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
  }

  .hero .hero-actions .btn {
    text-align: center;
  }
}

.hero .social-links {
  display: flex;
  gap: 1rem;
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hero .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

.hero .hero-image .image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.hero .hero-image .image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: transform 0.3s ease;
}

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

.hero .hero-image .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-image .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image .floating-elements .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-elements .floating-card.design {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero .hero-image .floating-elements .floating-card.code {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.hero .hero-image .floating-elements .floating-card.creativity {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

@media (max-width: 992px) {
  .hero .hero-image .floating-elements .floating-card {
    display: none;
  }
}

@keyframes float {

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

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

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .eyebrow {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
}

.about .intro-content .headline {
  font-family: var(--heading-font);
  font-weight: 300;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 24px 0;
}

.about .intro-content .lead {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 24px;
}

.about .intro-content p {
  line-height: 1.8;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.about .intro-content .cta-group {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.about .intro-content .cta-group .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .btn-ghost:hover,
.about .intro-content .cta-group .btn-ghost:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .intro-content .cta-group .link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: var(--accent-color);
  padding-bottom: 4px;
  transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: 0.3s ease-in-out;
}

.about .intro-content .cta-group .link-underline:hover,
.about .intro-content .cta-group .link-underline:focus {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  outline: none;
}

.about .intro-content .cta-group .link-underline:hover::after,
.about .intro-content .cta-group .link-underline:focus::after {
  transform: scaleX(1);
}

.about .profile-figure {
  margin: 0;
}

.about .profile-figure .profile-photo {
  width: 88%;
  max-width: 440px;
  border-radius: 18px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.about .profile-figure .profile-caption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .profile-figure .profile-caption .meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .profile-figure .profile-caption .meta .funfact {
  font-size: 13px;
  margin-top: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.about .profile-figure:hover .profile-photo {
  transform: translateY(-4px);
}

/* ===== SKILLS PREMIUM GRID ===== */
.skill-item {
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  padding: 32px 26px;
  border-radius: 18px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(13,110,253,0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(.2,.6,.2,1);
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* glow accent */
.skill-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(13,110,253,0.15), transparent 55%);
  opacity: 0;
  transition: 0.45s ease;
}

/* hover premium lift */
.skill-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(13,110,253,0.18);
  border-color: rgba(13,110,253,0.35);
}

.skill-item:hover::before {
  opacity: 1;
}

/* ===== ICON PREMIUM ===== */
.skill-item i {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  color: #0d6efd;

  background: linear-gradient(145deg, #ffffff, #eaf2ff);
  border: 1px solid rgba(13,110,253,0.18);
  box-shadow: 0 8px 25px rgba(13,110,253,0.2);

  transition: all 0.4s ease;
}

.skill-item:hover i {
  background: linear-gradient(145deg, #0d6efd, #0a58ca);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(13,110,253,0.35);
}

/* ===== TITLE ===== */
.skill-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

/* ===== DESCRIPTION ===== */
.skill-item p {
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ===== GRID SPACING REFINEMENT ===== */
.skills-grid .row {
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .skill-item {
    padding: 26px 18px;
  }

  .skill-item i {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.about .timeline-item {
  position: relative;
  padding-left: 26px;
}

.about .timeline-item time {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 6px;
}

.about .timeline-item h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px;
}

.about .timeline-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .timeline-item .dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .personal-quote {
  padding: 24px 0;
}

.about .personal-quote p {
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0 auto;
  max-width: 800px;
}

.about .fact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: 0.3s ease-in-out;
}

.about .fact-pill i {
  color: var(--accent-color);
}

.about .fact-pill span {
  font-size: 14px;
}

.about .fact-pill:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .fact-pill:focus-within {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {
  .about .profile-figure {
    text-align: center !important;
  }

  .about .profile-figure .profile-photo {
    width: 72%;
  }

  .about .intro-content .cta-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .about .profile-figure .profile-photo {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills .skill-box p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
  background-color: var(--accent-color);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .avatars {
  position: relative;
}

.stats .avatars img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent-color);
  margin-right: -15px;
  transition: transform 0.3s ease;
}

.stats .avatars img:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.stats .counters h2 {
  color: var(--heading-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .counters h2 span {
  display: inline-block;
}

.stats .counters p {
  color: var(--default-color);
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .stats .row {
    text-align: center;
  }

  .stats .avatars {
    justify-content: center;
    margin-bottom: 40px;
  }

  .stats .counters h2 {
    font-size: 36px;
  }

  .stats .counters p {
    font-size: 16px;
  }

  .stats .counters .col-md-4 {
    margin-bottom: 30px;
  }

  .stats .counters .col-md-4:last-child {
    margin-bottom: 0;
  }
}

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

  .stats .avatars {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats .avatars img {
    margin: 0 -8px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-item {
  margin-bottom: 3rem;
}

.resume .resume-item .resume-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  color: var(--heading-color);
}

.resume .resume-item .resume-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.resume .resume-item .resume-content {
  padding-left: 1.25rem;
  border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume .resume-item article {
  position: relative;
  margin-bottom: 2.5rem;
}

.resume .resume-item article::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -1.8rem;
  top: 0.25rem;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

.resume .resume-item article h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.resume .resume-item article h5 {
  font-size: 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 0.375rem 0.75rem;
  display: inline-block;
  font-weight: 600;
  margin: 0.5rem 0;
  color: var(--accent-color);
  border-radius: 4px;
}

.resume .resume-item article .institution,
.resume .resume-item article .company {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .resume-item article p {
  margin-bottom: 1rem;
}

.resume .resume-item article ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.resume .resume-item article ul li {
  padding-bottom: 0.75rem;
  position: relative;
}

.resume .resume-item article ul li:last-child {
  padding-bottom: 0;
}

.resume .skill-item {
  margin-bottom: 2rem;
}

.resume .skill-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.resume .skill-item .progress {
  height: 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 1rem;
  overflow: visible;
}

.resume .skill-item .progress .progress-bar {
  background-color: var(--accent-color);
  position: relative;
  border-radius: 1rem;
  width: 0;
  transition: width 1s ease;
}

.resume .skill-item .progress .progress-bar::after {
  content: attr(aria-valuenow) "%";
  position: absolute;
  right: 0;
  top: -1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .resume .resume-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .resume .resume-content {
    padding-left: 1rem !important;
  }

  .resume article::before {
    left: -2rem !important;
  }
}

/* ===== PREMIUM SERVICES (BLACK + BLUE) ===== */

.services .service-item {
  display: flex;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2.2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 0 0 rgba(0,0,0,0);
  transition: all 0.45s cubic-bezier(.2,.6,.2,1);
}

/* glow biru */
.services .service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(13,110,253,0.18), transparent 45%);
  opacity: 0;
  transition: 0.45s ease;
  pointer-events: none;
}

/* accent line biru */
.services .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #0d6efd, #0a58ca);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(.2,.6,.2,1);
}

.services .service-item:hover {
  transform: translateY(-10px);
  border-color: rgba(13,110,253,0.35);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.18),
    inset 0 0 30px rgba(13,110,253,0.06);
}

.services .service-item:hover::before {
  transform: scaleY(1);
}

.services .service-item:hover::after {
  opacity: 1;
}

/* ===== ICON BIRU ===== */
.services .service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.45s ease;
  box-shadow: 0 10px 25px rgba(13,110,253,0.35);
}

.services .service-item:hover .service-icon {
  transform: scale(1.08) rotateY(180deg);
}

.services .service-icon i {
  font-size: 2rem;
  transition: transform 0.45s ease;
}

.services .service-item:hover .service-icon i {
  transform: rotateY(180deg);
}

/* ===== TEKS HITAM ===== */
.services .service-content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.3px;
}

.services .service-content p {
  margin-bottom: 1.25rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
}

/* ===== LINK BIRU ===== */
.services .service-link {
  display: inline-flex;
  align-items: center;
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-link span {
  margin-right: 0.5rem;
}

.services .service-link i {
  transition: transform 0.3s ease;
}

.services .service-item:hover .service-link i {
  transform: translateX(6px);
}

.services .service-link:hover {
  color: #0a58ca;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .services .service-item {
    padding: 1.6rem;
  }

  .services .service-icon {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .services .service-icon i {
    font-size: 1.5rem;
  }

  .services .service-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .services .service-item {
    flex-direction: column;
    text-align: center;
  }

  .services .service-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .services .service-link {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.training-details .service-hero {
  margin-bottom: 4rem;
}

.training-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.training-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.training-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.training-details .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.training-details .service-hero .service-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.training-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.training-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.training-details .service-visual img:hover {
  transform: scale(1.02);
}

.training-details .service-narrative {
  margin-bottom: 5rem;
}

.training-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.training-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.training-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.training-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.training-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.training-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.training-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.training-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.training-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.training-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.training-details .timeline-section {
  margin-bottom: 4rem;
}

.training-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.training-details .timeline-section .timeline {
  position: relative;
}

.training-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.training-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.training-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.training-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.training-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.training-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.training-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.training-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.training-details .service-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .training-details .service-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.training-details .overview-card,
.training-details .success-story,
.training-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.training-details .overview-card:hover,
.training-details .success-story:hover,
.training-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.training-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.training-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.training-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.training-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.training-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.training-details .overview-card .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.training-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.training-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

.training-details .overview-card .overview-details .detail-row .detail-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.training-details .overview-card .overview-details .detail-row .detail-value {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.training-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.training-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.training-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.training-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.training-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.training-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.training-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.training-details .success-story .story-metrics .metric {
  text-align: center;
}

.training-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.training-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.training-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.training-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.training-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.training-details .consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.training-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.training-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.training-details .consultation-form input[type=text],
.training-details .consultation-form input[type=email],
.training-details .consultation-form input[type=tel],
.training-details .consultation-form select,
.training-details .consultation-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.training-details .consultation-form input[type=text]:focus,
.training-details .consultation-form input[type=email]:focus,
.training-details .consultation-form input[type=tel]:focus,
.training-details .consultation-form select:focus,
.training-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

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

.training-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.training-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.training-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .training-details .service-hero h1 {
    font-size: 2.5rem;
  }

  .training-details .service-hero .service-description {
    font-size: 1.1rem;
  }

  .training-details .service-visual img {
    height: 250px;
  }

  .training-details .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .training-details .timeline-section .timeline::before {
    left: 20px;
  }

  .training-details .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }

  .training-details .timeline-section .timeline .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .training-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1rem;
  }

  .training-details .overview-card .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
/* ================================
   PORTFOLIO CLEAN MODERN STYLE
================================ */

.portfolio-grid {
  row-gap: 50px;
}

/* container item */
.portfolio-item-clean {
  text-align: center;
}

/* gambar */
.portfolio-image {
  overflow: hidden;
  border-radius: 14px;
}

.portfolio-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item-clean:hover img {
  transform: scale(1.05);
}

/* judul */
.portfolio-item-clean h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #111;
}

/* deskripsi */
.portfolio-item-clean p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* tombol */
.portfolio .btn-primary {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
}


/*--------------------------------------------------------------
# portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
  margin-right: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
  font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: #fafafa;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: #000000cc;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: #000000cc;
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: #000000;
}

.contact .info-item:hover .icon-box {
  background-color: #c1c1c1cc;
}

.contact .info-item .content h4 {
  color: #000000cc;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

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

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: transparent;
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: color-mix(in srgb, var(--surface-color), transparent 80%);
  color: #000000cc;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
}

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

/* HERO / UTAMA */
.utama {
  position: relative;
  min-height: 100vh;
  background: url('../img/hero/portofolio20.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* overlay gelap elegan */
.utama-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

/* konten */
.utama .container {
  z-index: 2;
  max-width: 900px;
}

/* badge kecil di atas */
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #6a6f72;
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* judul utama */
.utama h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  color: #000000; /* Mister = putih */
}

.utama h1 .highlight {
  color: #0099ff;
}

/* deskripsi */
.utama p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 35px;
}

/* tombol */
.utama-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.utama .btn-primary {
  padding: 12px 30px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

.utama .btn-outline-light {
  padding: 12px 30px;
  font-weight: 600;
  border-width: 2px;
}
/* ===============================
   portfolio SECTION (FINAL)
================================ */

.portfolio {
  background-color: #ffffff;
  padding: 80px 0;
}

/* ===== FILTER ===== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.portfolio-filters li {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #334155;
  color: #000000;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/* ===== GRID ===== */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== CARD ===== */
.portfolio-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.35s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(59,130,246,0.25);
}

/* ===== IMAGE ===== */
.portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

/* ===== CONTENT ===== */
.portfolio-content {
  padding: 20px;
}

.portfolio-category {
  font-size: 13px;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 6px;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}
/* ===============================
   TESTIMONIALS SECTION
================================ */

.testimonials {
  background-color: #101a20;
  padding: 80px 0;
}

.testimonial-card {
  background: #141f26;
  border-radius: 18px;
  padding: 30px 28px;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Quote Icon */
.testimonial-card .quote-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 22px;
}

/* Profile */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.testimonial-profile h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.testimonial-profile span {
  font-size: 13px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 767px) {
  .testimonial-card {
    padding: 26px 22px;
  }
}
/* ===============================
   FAQ SECTION - DARK THEME
================================ */
.faq {
  background: linear-gradient(180deg, #ffffff 0%, #ecedee 100%);
  padding: 90px 0;
  color: #e5e7eb;
}

.faq .section-title h2 {
  color: #000000;
  font-weight: 700;
}

.faq .section-title p {
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

/* Accordion Item */
.faq .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Accordion Button */
.faq .accordion-button {
  background: transparent;
  color: #000000;
  font-weight: 600;
  padding: 20px 22px;
  transition: all 0.3s ease;
}

.faq .accordion-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Active */
.faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #1387c1, #3453a8);
  color: #ffffff;
}

/* Icon */
.faq .accordion-button::after {
  filter: brightness(0) invert(1);
}

/* Body */
.faq .accordion-body {
  background: #ffffff;
  color: #000000;
  line-height: 1.7;
  font-size: 15px;
  padding: 20px 22px;
}

/* Remove focus */
.faq .accordion-button:focus {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 70px 0;
  }
}

/* ===== PENCAPAIAN KERJA LIGHT FOTO — CLEAN ===== */

.achievement-light {
  position: relative;
  padding: 120px 0;
  background-image: url("../img/portofolio/portofolio1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* overlay gelap tipis agar teks putih kontras */
.achievement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* title */
.achievement-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.achievement-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  max-width: 640px;
  margin: 10px auto 0;
}

/* item tanpa box */
.achievement-box {
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-6px);
}

/* angka */
.achievement-box h3 {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

/* label */
.achievement-box span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ===== PREMIUM PRICING SECTION ===== */
.pricing-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(13,110,253,0.08), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(13,110,253,0.06), transparent 40%),
    #ffffff;
  padding: 110px 0;
}

/* ===== CARD BASE ===== */
.pricing-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 50px 38px;
  border-radius: 22px;
  height: 100%;
  transition: all 0.45s cubic-bezier(.2,.6,.2,1);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 0 0 rgba(13,110,253,0);
  overflow: hidden;
}

/* subtle glow layer */
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(13,110,253,0.15), transparent 45%);
  opacity: 0;
  transition: 0.45s ease;
  pointer-events: none;
}

/* hover effect */
.pricing-card:hover {
  transform: translateY(-12px);
  border-color: rgba(13,110,253,0.35);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.18),
    inset 0 0 40px rgba(13,110,253,0.05);
}

.pricing-card:hover::after {
  opacity: 1;
}

/* ===== FEATURED CARD ===== */

/* ===== HSS PREMIUM SECTION ===== */
.hss-premium {
  background:
    radial-gradient(circle at 10% 10%, rgb(255, 255, 255), transparent 40%),
    radial-gradient(circle at 90% 90%, rgb(255, 255, 255), transparent 40%),
    #ffffff;
  padding: 110px 0;
}

/* ===== SECTION TITLE ===== */
.hss-premium .section-title h2 {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #000;
}

.hss-premium .section-title p {
  max-width: 720px;
  margin: auto;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}

/* ===== TEXT CONTENT BOX ===== */
.hss-content {
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  padding: 50px 45px;
  border-radius: 20px;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 20px 60px rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.hss-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(231, 231, 231, 0.552), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.hss-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #000;
}

.hss-content p {
  color: rgba(0,0,0,0.75);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== PREMIUM HIGHLIGHT BOX ===== */
.hss-highlight {
  background: linear-gradient(160deg, #ffffff, #f4f8ff);
  padding: 45px 40px;
  border-radius: 22px;
  border: 1px solid rgba(13,110,253,0.2);
  box-shadow: 0 25px 70px rgba(13,110,253,0.18);
  position: relative;
  transition: 0.45s cubic-bezier(.2,.6,.2,1);
}

/* premium hover lift */
.hss-highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(13,110,253,0.25);
}

/* badge */
.hss-highlight::before {
  content: "PROGRAM UNGGULAN";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  color: #fff;
}

.hss-highlight h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

/* list styling premium */
.hss-highlight li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(0,0,0,0.75);
  font-weight: 500;
}

/* check icon */
.hss-highlight li i {
  font-size: 18px;
  color: #0d6efd;
}

/* ===== BUTTON PREMIUM ===== */
.btn-pill {
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  border: none;
  color: #fff;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(13,110,253,0.35);
}

.btn-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13,110,253,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hss-content {
    padding: 40px 30px;
  }

  .hss-highlight {
    padding: 35px 28px;
  }
}


/* ===== TITLE ===== */
.pricing-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000000;
  letter-spacing: 0.4px;
}

.pricing-mode {
  display: block;
  font-size: 13px;
  color: #0d6efd;
  margin-bottom: 28px;
  font-weight: 600;
}

/* ===== BENEFITS ===== */
.pricing-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 38px;
}

.pricing-benefits li {
  font-size: 14px;
  color: rgba(0,0,0,0.75);
  margin-bottom: 13px;
  line-height: 1.7;
  padding-left: 26px;
  position: relative;
}

/* check icon */
.pricing-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #0d6efd;
}

/* ===== BUTTON ===== */
.pricing-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(13,110,253,0.35);
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13,110,253,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pricing-card {
    padding: 40px 28px;
  }

  .pricing-card.highlight {
    transform: none;
  }
}

.header-social-links a {
  color: #fff;
  margin-left: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.header-social-links a:hover {
  color: #25d366;
  transform: translateY(-2px);
}
.social-links a {
  color: #ffffff;
  font-size: 20px;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #25d366; /* WhatsApp green */
  transform: translateY(-3px);
}
/*--------------------------------------------------------------
# Public Speaking Details Section
--------------------------------------------------------------*/
.public-speaking-details .ps-hero {
  margin-bottom: 4rem;
}

.public-speaking-details .ps-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.public-speaking-details .ps-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.public-speaking-details h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.public-speaking-details .ps-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
}

/* ===== IMAGE ===== */
.public-speaking-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.public-speaking-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.public-speaking-details .service-visual img:hover {
  transform: scale(1.02);
}

/* ===== NARRATIVE ===== */
.public-speaking-details .ps-narrative {
  margin-bottom: 5rem;
}

.public-speaking-details .ps-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.public-speaking-details .ps-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ===== BENEFITS ===== */
.public-speaking-details .ps-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.public-speaking-details .ps-benefit-card {
  text-align: center;
}

.public-speaking-details .ps-benefit-card i {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: 0.3s;
}

.public-speaking-details .ps-benefit-card:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* ===== TIMELINE ===== */
.public-speaking-details .ps-timeline {
  margin-bottom: 4rem;
}

.public-speaking-details .ps-timeline h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.public-speaking-details .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.public-speaking-details .timeline-item span {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--accent-color);
}

/* ===== SIDEBAR ===== */
.public-speaking-details .ps-sidebar {
  padding-left: 2rem;
}

.public-speaking-details .ps-overview,
.public-speaking-details .overview-details,
.public-speaking-details .ps-consultation {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
}

/* ===== FORM ===== */
.public-speaking-details .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  background: var(--surface-color);
  color: var(--default-color);
}

.public-speaking-details .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem;
  border-radius: 4px;
  width: 100%;
  font-weight: 500;
  transition: 0.3s;
}

.public-speaking-details .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .public-speaking-details h1 {
    font-size: 2.5rem;
  }

  .public-speaking-details .service-visual img {
    height: 250px;
  }

  .public-speaking-details .ps-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}
/* ==================================================
   PUBLIC SPEAKING SIDEBAR
   (MATCH TRAINING-DETAILS)
================================================== */

/* Wrapper sidebar */
.public-speaking-details .ps-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .public-speaking-details .ps-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

/* Card base (overview & details) */
.public-speaking-details .ps-overview,
.public-speaking-details .overview-details {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.public-speaking-details .ps-overview:hover,
.public-speaking-details .overview-details:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Title */
.public-speaking-details .ps-overview h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

/* Stats grid (match overview-stats) */
.public-speaking-details .ps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .public-speaking-details .ps-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Stat number */
.public-speaking-details .ps-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Stat label */
.public-speaking-details .ps-stats span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Details section (border top like training) */
.public-speaking-details .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

/* Detail rows */
.public-speaking-details .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.public-speaking-details .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

/* Labels & values */
.public-speaking-details .detail-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.public-speaking-details .detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-color);
}
/* ==================================================
   PUBLIC SPEAKING – CONSULTATION FORM
   (MATCH TRAINING-DETAILS)
================================================== */

.public-speaking-details .ps-consultation {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.public-speaking-details .ps-consultation:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Header */
.public-speaking-details .ps-consultation .form-header {
  margin-bottom: 2rem;
}

.public-speaking-details .ps-consultation .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.public-speaking-details .ps-consultation .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Form groups */
.public-speaking-details .ps-consultation .form-group {
  margin-bottom: 1.5rem;
}

/* Inputs & textarea */
.public-speaking-details .ps-consultation .form-input {
  width: 100%;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.public-speaking-details .ps-consultation .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.public-speaking-details .ps-consultation .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* Button */
.public-speaking-details .ps-consultation .btn-consultation {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.public-speaking-details .ps-consultation .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.public-speaking-details .ps-consultation .btn-consultation i {
  font-size: 0.9rem;
}
/* ==================================================
   PUBLIC SPEAKING – BENEFITS GRID
   (MATCH TRAINING-DETAILS)
================================================== */

.public-speaking-details .ps-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.public-speaking-details .ps-benefit-card {
  text-align: center;
}

/* Icon wrapper (simulate benefit-icon) */
.public-speaking-details .ps-benefit-card i {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

/* Hover behavior */
.public-speaking-details .ps-benefit-card:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Title */
.public-speaking-details .ps-benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

/* Description */
.public-speaking-details .ps-benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .public-speaking-details .ps-benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ==================================================
   PUBLIC SPEAKING – TIMELINE
   (MATCH TRAINING-DETAILS)
================================================== */

.public-speaking-details .ps-timeline {
  margin-bottom: 4rem;
}

.public-speaking-details .ps-timeline h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

/* Timeline container */
.public-speaking-details .ps-timeline {
  position: relative;
}

/* Vertical line */
.public-speaking-details .ps-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Item */
.public-speaking-details .ps-timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.public-speaking-details .ps-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

/* Marker */
.public-speaking-details .ps-timeline .timeline-item span {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
  z-index: 1;
}

/* Content */
.public-speaking-details .ps-timeline .timeline-item h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.public-speaking-details .ps-timeline .timeline-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--default-color);
}

/* Mobile */
@media (max-width: 768px) {
  .public-speaking-details .ps-timeline::before {
    left: 20px;
  }

  .public-speaking-details .ps-timeline .timeline-item {
    padding-left: 60px;
  }

  .public-speaking-details .ps-timeline .timeline-item span {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
/* ===============================
 CONSULTANT DETAILS (SAME STYLE)
================================ */

.consultant-details .ct-hero h1 {
  font-weight: 700;
  margin-bottom: 15px;
}

.ct-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
}

.ct-description {
  font-size: 16px;
  color: #555;
}

.ct-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ct-benefit-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.ct-benefit-card i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.ct-timeline .timeline-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.ct-timeline span {
  width: 36px;
  height: 36px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
}

.ct-sidebar {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.ct-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.btn-consultation {
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
}
/* === FIX PORTFOLIO IMAGE SIZE (NO HTML CHANGE) === */

/* === PORTFOLIO CLEAN IMAGE ONLY === */
.portfolio-wrap,
.portfolio-wrap.image-only {
  position: relative;
  width: 100%;
  height: 230px; /* bebas ubah 220–260px */
  overflow: hidden;

  /* HILANGKAN BOX */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Anchor full */
.portfolio-wrap.image-only a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Media container tanpa box */
.portfolio-wrap .portfolio-media {
  width: 100%;
  height: 230px;
  overflow: hidden;

  background: transparent;
  border: none;
  box-shadow: none;
}

/* Gambar full cover */
.portfolio-wrap img,
.portfolio-wrap .portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover zoom premium */
.portfolio-wrap:hover img {
  transform: scale(1.08);
}

/* Play icon tengah tanpa frame */
.portfolio-wrap .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 64px;
  color: #ffffff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.9;
}

/* Hapus padding grid bawaan template */
.portfolio-item {
  padding: 0 !important;
}

/* kolom portfolio */
.portfolio-item {
  margin-bottom: 24px;
}

/* wrapper jarak */
.portfolio-inner {
  padding-left: 12px;
  padding-right: 12px;
}

/* supaya container tidak kepotong */
.portfolio .row {
  margin-left: -12px;
  margin-right: -12px;
}


.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Area tombol */
.pricing-card .pricing-btn {
  margin-top: auto;
}
/* ======= Partners Section ======= */
.partners-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #eff2f9);
}

.partners-section .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.partners-section .section-title p {
  color: #9aa4bf;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Partner Card */
.partner-card {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.partner-card img {
  max-height: 55px;
  max-width: 100%;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.3s ease;
}

/* Hover Effect */
.partner-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.partner-card:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Responsive */
@media (max-width: 576px) {
  .partner-card {
    height: 90px;
  }

  .partner-card img {
    max-height: 45px;
  }
}
.testimonial-screenshot-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff, #edf0f7);
}

/* Box thumbnail */
.testimonial-thumb {
  display: block;
  height: 150px;               /* KUNCI UKURAN */
  border-radius: 14px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

/* Gambar */
.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Hover */
.testimonial-thumb:hover {
  transform: scale(1.04);
  background: rgba(255,255,255,0.1);
}

/* Swiper */
.testimonial-screenshot-slider {
  padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #4f8cff;
}
/* ===== ABOUT MODERN INTRO ===== */

.about-modern {
  position: relative;
}

/* Eyebrow */
.eyebrow-modern {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1370b2;
  margin-bottom: 16px;
}

/* Headline */
.headline-modern {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
}

.headline-modern span {
  font-weight: 600;
  color: #ffffff;
}

/* Text */
.text-modern {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 14px;
  max-width: 90%;
}

/* CTA */
.cta-modern {
  margin-top: 28px;
}

.btn-pill {
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 500;
}

.cta-modern .btn {
  margin-right: 12px;
  margin-bottom: 10px;
}

/* Photo Card */
.photo-card-modern {
  display: inline-block;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  max-width: 420px;
}

.photo-card-modern img {
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .headline-modern {
    font-size: 2.1rem;
  }

  .text-modern {
    max-width: 100%;
  }

  .photo-card-modern {
    margin: auto;
  }
}
/* ===== HERO TEXT ===== */

.intro-modern h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 6px;
  line-height: 1.2;
}

.intro-modern h1 span {
  font-weight: 600;
  color: #ffffff;
}

/* Typed headline */
.intro-modern h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 18px;
}

.intro-modern h2 .typed {
  color: #4db5ff;
  font-weight: 600;
}

/* Paragraph */
.text-modern {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #000000;
  max-width: 90%;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-modern h1 {
    font-size: 2.2rem;
  }

  .intro-modern h2 {
    font-size: 1.2rem;
  }

  .text-modern {
    max-width: 100%;
  }
}
/* ================================
   DARK TIMELINE – MODERN STYLE
   ================================ */

   .timeline-section {
    background: linear-gradient(180deg, #ffffff, #ffffff);
    padding: 60px 30px;
    border-radius: 28px;
    position: relative;
  }
  
  /* Title */
  .timeline-section h3 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
  }
  
  /* Timeline wrapper */
  .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 30px;
  }
  
  /* Vertical line */
  .timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(59, 130, 246, 0.9),
      rgb(255, 255, 255)
    );
    border-radius: 10px;
  }
  
  /* Item */
  .timeline-item {
    position: relative;
    margin-bottom: 45px;
    padding-left: 45px;
  }
  
  /* Marker */
  .timeline-marker {
    position: absolute;
    left: 0;
    top: 12px;
  }
  
  .timeline-marker span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    box-shadow:
      0 0 0 6px rgba(59, 130, 246, 0.12),
      0 12px 25px rgba(59, 130, 246, 0.4);
  }
  
  /* Content card */
  .timeline-content {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 26px 30px;
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: all 0.35s ease;
    position: relative;
  }
  
  /* Hover effect */
  .timeline-item:hover .timeline-content {
    transform: translateY(-6px);
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(59, 130, 246, 0.25);
  }
  
  /* Heading */
  .timeline-content h4 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* Text */
  .timeline-content p {
    color: #f9f9f9;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  
  /* Badge */
  .timeline-content small {
    display: inline-block;
    background: rgba(59, 131, 246, 0.521);
    color: #fcfcfc;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  
  /* ================================
     RESPONSIVE
     ================================ */
  
  @media (max-width: 768px) {
    .timeline {
      padding-left: 20px;
    }
  
    .timeline-item {
      padding-left: 40px;
    }
  
    .timeline-content {
      padding: 22px 24px;
    }
  }
  .pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .tab-btn {
    background: #ffffff;
    color: #cbd5f5;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 10px 30px rgba(59,130,246,.4);
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  /* ===== PARTNERS SECTION ===== */
.partners-section {
  background: #ffffff;
  padding: 80px 0;
}

/* Grid spacing lebih lega */
.partners-grid {
  margin-top: 40px;
}

/* Card logo */
.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px;
  height: 140px;

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

  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

/* Logo */
.partner-card img {
  max-height: 80px;        /* INI KUNCI: logo lebih besar */
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: all 0.3s ease;
}

/* Hover effect */
.partner-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}

.partner-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* ===== MITRA BISNIS — CLEAN LOGO STRIP ===== */

.mitra-section {
  padding: 80px 0;
  background: #ffffff;
}

/* GRID */
.mitra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 50px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}

/* ITEM */
.mitra-item {
  opacity: 0.7;
  transition: all 0.35s ease;
}

/* LOGO */
.mitra-item img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}

/* HOVER */
.mitra-item:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.mitra-item:hover img {
  filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mitra-grid {
    gap: 30px;
  }

  .mitra-item img {
    max-width: 110px;
  }
}


/* ===== PARTNERS SECTION ===== */
/* ===== GLOBAL SECTION TITLE (SAMA SEPERTI FAQ) ===== */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #000000; /* warna FAQ */
  margin-bottom: 12px;
}

.section-title p {
  font-size: 15px;
  color: #6c757d;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}


/* GRID UTAMA */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  height: 140px;

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

  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

/* LOGO */
.partner-card img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.05);
  transition: all 0.3s ease;
}

/* HOVER HALUS */
.partner-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.25);
}

.partner-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.2);
}
/* ===== CLIENTS PREMIUM ===== */
.clients-premium {
  background: #0b2545;
  padding: 90px 0;
  overflow: hidden;
}

.clients-heading h2 {
  color: #ffc107;
  font-size: 36px;
  font-weight: 700;
}

.clients-heading p {
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 10px auto 0;
}

/* ===== SLIDER ===== */
.clients-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollClients 35s linear infinite;
}

/* Hover pause */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* ===== CARD ===== */
.client-premium {
  background: #fff;
  border-radius: 14px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LOGO FULL COLOR */
.client-premium img {
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
}

/* ===== ANIMATION ===== */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .clients-heading h2 {
    font-size: 28px;
  }
}


.clients-wall {
  background: #0b2545;
  padding: 90px 0;
  overflow: hidden;
}

.clients-wall .section-title h2 {
  color: #ffc107;
}

.clients-wall .section-title p {
  color: rgba(255, 255, 255, 0.85);
}


/* area potong */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK BERGERAK */
.marquee-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, 90px);
  gap: 22px 28px;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

/* CARD LOGO */
.logo-card {
  width: 190px;
  height: 90px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.logo-card img {
  max-width: 120px;
  max-height: 55px;
  object-fit: contain;
}

/* ANIMASI SEAMLESS */
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 992px) {
  .marquee-track {
    grid-template-rows: repeat(3, 80px);
  }
}

@media (max-width: 576px) {
  .marquee-track {
    grid-template-rows: repeat(2, 70px);
  }
}


/* ===== PARTNERS SECTION (SAME AS CLIENTS) ===== */
.partners-section {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  padding: 100px 0;
}

/* GRID */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.partner-card {
  height: 150px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);

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

  transition: all 0.35s ease;
}

/* LOGO */
.partner-card img {
  max-height: 90px;
  max-width: 85%;
  object-fit: contain;

  filter: grayscale(100%) brightness(1.05);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.partner-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(34, 211, 238, 0.25);
}

.partner-card:hover img {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.08);
}
.testimonial-video {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-video img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Play Button */
.testimonial-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
}

.testimonial-video .play-btn::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 16px;
  border-style: solid;
  border-width: 14px 0 14px 20px;
  border-color: transparent transparent transparent #fff;
}
/* ===== TEXT TESTIMONIAL (DARK THEME) ===== */

.testimonial-text-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.95)
  );
  padding: 26px;
  border-radius: 18px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.testimonial-text-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,0.35);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.7),
    0 0 0 1px rgba(56,189,248,0.15);
}

/* Stars */
.testimonial-text-card .stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Text */
.testimonial-text-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #000000;
  margin-bottom: 18px;
}

/* Name */
.testimonial-text-card h6 {
  margin: 0;
  font-weight: 600;
  color: #000000;
}

/* Position */
.testimonial-text-card small {
  display: block;
  margin-top: 2px;
  color: #000000;
  font-size: 13px;
}
/* Video Portfolio */
.video-item {
  position: relative;
  overflow: hidden;
}

.video-item img {
  aspect-ratio: 4 / 3; /* SAMAKAN dengan foto lain */
  object-fit: cover;
}

/* Play Icon */
.video-item .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 3rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-item:hover .play-icon {
  opacity: 1;
}

.video-item .play-icon i {
  background: rgba(255,255,255,0.15);
  padding: 16px 20px;
  border-radius: 50%;
}
/* FACTS DARK */
.facts-dark {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.facts-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

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

.facts-dark h1 {
  font-weight: 800;
  letter-spacing: 1px;
}

.facts-dark span {
  display: inline-block;
  margin-top: 5px;
  opacity: 0.9;
}
.counter::after {
  content: "+";
  font-size: 0.6em;
  margin-left: 4px;
}

.counter[data-target="100"]::after {
  content: "%";
}
