/* =========================
   ===== VARIABLES =====
   ========================= */
/* Warna, radius, shadow, dan variabel global lainnya */
:root {
  --primary-color: #0056b3;
  --secondary-color: #003366;
  --accent-color: #ff7d00;
  --text-color: #333;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --white: #fff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --border-radius: 5px;
  --box-shadow: 0 8px 32px rgba(0,86,179,0.10), 0 1.5px 8px rgba(0,0,0,0.07);
  --box-shadow-hover: 0 16px 48px rgba(0,86,179,0.16), 0 2px 12px rgba(0,0,0,0.09);
  --transition: all 0.35s cubic-bezier(.77,0,.18,1);
}
/* =========================
   ===== BASE STYLES =====
   ========================= */
/* Reset dan style dasar untuk seluruh halaman */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1.6rem;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

p, .section-title, .section-subtitle {
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Hilangkan padding pada .container */
.container {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Tambahkan/ubah di bawah ini */
.header .container,
.header.mobile-header .container {
  padding-left: 31px !important;
  padding-right: 37px !important;
}

@media (max-width: 600px) {
  .header .container,
  .header.mobile-header .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* Hilangkan padding pada .section */
.section {
  padding: 60px 0;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section.contact {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 600px) {
  .section.contact {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

/* Efek animasi underline dan highlight pada semua judul dan tombol */
.section-title,
.section-header h1,
.section-header h2,
.section-header h3,
.section-header h4,
h1, h2, h3, h4,
.btn,
.btn-primary,
.btn-outline {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  /* Untuk tombol, pastikan pointer dan transisi smooth */
}

.section-title::after,
.section-header h1::after,
.section-header h2::after,
.section-header h3::after,
.section-header h4::after,
h1::after, h2::after, h3::after, h4::after,
.btn::after,
.btn-primary::after,
.btn-outline::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, #ff7d00 0%, #0056b3 100%);
  border-radius: 2px;
  width: 0;
  transition: width 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}

.section-title:hover,
.section-title:focus,
.section-header h1:hover,
.section-header h1:focus,
.section-header h2:hover,
.section-header h2:focus,
.section-header h3:hover,
.section-header h3:focus,
.section-header h4:hover,
.section-header h4:focus,
h1:hover, h2:hover, h3:hover, h4:hover,
.btn:hover,
.btn:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-outline:hover,
.btn-outline:focus {
  color: #ff7d00;
  background: #fff7e600;
}

.section-title:hover::after,
.section-title:focus::after,
.section-header h1:hover::after,
.section-header h1:focus::after,
.section-header h2:hover::after,
.section-header h2:focus::after,
.section-header h3:hover::after,
.section-header h3:focus::after,
.section-header h4:hover::after,
.section-header h4:focus::after,
h1:hover::after, h2:hover::after, h3:hover::after, h4:hover::after,
.btn:hover::after,
.btn:focus::after,
.btn-primary:hover::after,
.btn-primary:focus::after,
.btn-outline:hover::after,
.btn-outline:focus::after {
  width: 100%;
}

.section-title::selection,
.section-header h1::selection,
.section-header h2::selection,
.section-header h3::selection,
.section-header h4::selection,
h1::selection, h2::selection, h3::selection, h4::selection,
.btn::selection,
.btn-primary::selection,
.btn-outline::selection {
  background: #ffecd200;
  color: #ff7d00;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--gray);
  font-weight: 400;
}

/* Efek highlight pada subjudul saat hover/seleksi */
.services .section-subtitle {
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
}

.services .section-subtitle:hover,
.services .section-subtitle:focus {
  color: #0056b3;
  background: #fff7e6;
}

.services .section-subtitle::selection {
  background: #ffecd2;
  color: #0056b3;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  width: auto !important;
  min-width: unset !important;
  max-width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  width: auto !important;
  min-width: unset !important;
  max-width: 100%;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  width: auto !important;
  min-width: unset !important;
  max-width: 100%;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 4rem;
}

/* =========================
   ===== PRELOADER =====
   ========================= */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.preloader.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #eee;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================
   ===== HEADER =====
   ========================= */
/* Header utama (desktop) */
.header {
  position: fixed;
  top: 1;
  left: 1;
  width: 100%;
  padding: 2.5rem 0;
  padding-left: 1;
  padding-right: 1;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border-bottom-left-radius: 48px 32px;
  border-bottom-right-radius: 48px 32px;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 32px rgba(0,86,179,0.10);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: auto;
  margin: 0 auto;
  /*padding: 0 20px;*/
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.logo img {
  width: 4rem;
  height: auto;
}

.navbar {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  /* text-transform: uppercase; */
  color: var(--secondary-color);
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  /* Hapus border/garis bawah */
  /* border-bottom: 2px solid transparent; */
  /* box-shadow: none; */
}

/* Hapus garis biru bawah */
.nav-link::after {
  display: none !important;
}

/* Efek hover/active: background dan shadow */
.nav-link:hover,
.nav-link.active {
  background: rgba(0, 86, 179, 0.12);
  color: var(--primary-color);
  box-shadow: 0 2px 12px rgba(0,86,179,0.10);
  /* border-bottom: none; */
}

/* Untuk mobile nav-link juga */
.header.mobile-header .nav-link {
  font-size: 1.3rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--primary-color, #333);
  text-decoration: none;
  transition: color 0.2s, background 0.25s, box-shadow 0.25s;
  border-radius: 8px;
  /* text-transform: none; */
}

.header.mobile-header .nav-link:hover,
.header.mobile-header .nav-link.active {
  background: rgba(0, 86, 179, 0.12);
  color: var(--secondary-color, #007bff);
  box-shadow: 0 2px 12px rgba(0,86,179,0.10);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  color: var(--text-color);
}

.action-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Email icon style for both desktop and mobile */
.action-btn.email {
  color: #ea4335;
}
.action-btn.email:hover {
  background-color: #ea4335;
  color: var(--white);
}

#menu-btn {
  font-size: 3.5rem;
  cursor: pointer;
  display: none; /* default: hidden */
}

/* Responsive Header */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92vw;
    max-width: 420px;
    min-width: 220px;
    height: auto;
    background-color: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,86,179,0.13), 0 2px 12px rgba(0,0,0,0.09);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    padding: 2.5rem 0;
    transition: left 0.3s ease, opacity 0.3s;
    z-index: 998;
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  .navbar.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 2rem;
  }

  #menu-btn {
    display: block !important;
  }
}

/* Desktop: pastikan hamburger tidak tampil */
@media (min-width: 769px) {
  #menu-btn {
    display: none !important;
  }
}

/* =========================
   ===== MOBILE HEADER =====
   ========================= */
/* Header khusus mobile/tablet */
.header.mobile-header {
  padding: 0 0;
  padding-left: 0;
  padding-right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed; /* was: sticky */
  top: 0;
  width: 100%;     /* ensure full width when fixed */
  z-index: 1000;
  border-bottom-left-radius: 36px 24px;
  border-bottom-right-radius: 36px 24px;
}

.header.mobile-header .container {
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.header.mobile-header .logo {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 75%;
  min-width: 0;
}

.header.mobile-header .logo img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
}

.header.mobile-header .logo span {
  display: inline-block;
  min-width: 0;
  flex-shrink: 1;
  white-space: nowrap;
  word-break: normal;
}

@media (max-width: 360px) {
  .header.mobile-header .logo span {
    font-size: 1.2rem;
  }
  #menu-btn {
    font-size: 3rem;
  }
}

/* Untuk layar kecil (360px - 480px) */
@media (max-width: 480px) {
  .header.mobile-header .logo span {
    font-size: 1.2rem;
  }
  #menu-btn {
    font-size: 3rem;
  }
  .header.mobile-header {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* Untuk layar medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .header.mobile-header .logo span {
    font-size: 1.5rem;
  }
  #menu-btn {
    font-size: 3.4rem;
  }
}

.header.mobile-header .navbar {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 92vw;
  max-width: 420px;
  min-width: 220px;
  height: auto;
  background-color: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,86,179,0.13), 0 2px 12px rgba(0,0,0,0.09);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  transition: left 0.3s ease, opacity 0.3s;
  z-index: 999;
  overflow-y: visible;
  display: none;
  opacity: 0;
  pointer-events: none;
}

.header.mobile-header .navbar.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.header.mobile-header .nav-link {
  font-size: 1.3rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--primary-color, #333);
  text-decoration: none;
  transition: color 0.2s, background 0.25s, box-shadow 0.25s;
  border-radius: 8px;
  /* text-transform: none; */
}

.header.mobile-header .nav-link:hover,
.header.mobile-header .nav-link.active {
  background: rgba(0, 86, 179, 0.12);
  color: var(--secondary-color, #007bff);
  box-shadow: 0 2px 12px rgba(0,86,179,0.10);
}

.header.mobile-header .header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header.mobile-header .action-btn {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray, #f5f5f5);
  color: var(--primary-color, #333);
  transition: background 0.2s;
  text-decoration: none;
}

.header.mobile-header .action-btn:hover,
.header.mobile-header .action-btn.email:hover {
  background: #ea4335;
  color: #fff;
}

.header.mobile-header .action-btn.email {
  color: #ea4335;
}

#menu-btn {
  display: block;
  font-size: 2.2rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

#menu-btn.active {
  transform: rotate(90deg);
}

/* Desktop: sembunyikan header mobile */
@media (min-width: 769px) {
  .header.mobile-header {
    display: none;
  }
}

/* Mobile: sembunyikan header desktop, tampilkan header mobile */
@media (max-width: 768px) {
  .header:not(.mobile-header) {
    display: none !important;
  }
  .header.mobile-header {
    display: block !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* Perangkat sangat kecil: logo lebih kecil */
@media (max-width: 480px) {
  .header.mobile-header .logo {
    font-size: 1.4rem;
  }
  .header.mobile-header .action-btn {
    width: 3rem;
    height: 3rem;
  }
  .header.mobile-header {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* =========================
   ===== SWIPER STYLES =====
   ========================= */
/* ===== Swiper Navigation Buttons (SLIDE BANNER CUSTOM) ===== */
.swiper-button-next,
.swiper-button-prev {
  background: transparent !important;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.93;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "Font Awesome 6 Free", "FontAwesome", Arial, sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff59;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  /* Gunakan ikon panah bulat FontAwesome */
}

.swiper-button-prev::after {
  content: "\f060"; /* fa-arrow-left */
}
.swiper-button-next::after {
  content: "\f061"; /* fa-arrow-right */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: #ffffff00;
  color: #ff7b0000;
  box-shadow: 0 8px 24px rgba(0, 87, 179, 0);
  transform: translateY(-50%) scale(1.12);
  opacity: 1;
}

.swiper-button-next:active,
.swiper-button-prev:active {
  transform: translateY(-50%) scale(0.93);
  box-shadow: 0 2px 8px rgba(0,86,179,0.10);
}

@media (max-width: 600px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    border-width: 1.5px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.1rem;
  }
}
/* About Section Layout: Tinggi dan lebar rata */
.about {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  box-sizing: border-box;
}
.about,
.about .row,
.about-media,
.about-content {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
.about .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
.about-media,
.about-content {
  flex: 1 1 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
}
.video-autoplay-hint {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 1.15rem;
  z-index: 3;
  pointer-events: none;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: opacity 0.2s;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* Agar video proporsional dan penuh */
  display: block;
  border-radius: 12px;
}

/* Responsive: Stack di mobile */
@media (max-width: 900px) {
  .about .row {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .about-media,
  .about-content {
    max-width: 100%;
    min-width: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 900px) {
  .about .row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

  .video-wrapper {
    min-height: 180px;
    height: auto;
  }
.about-media {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center; /* Center video secara horizontal */
  align-items: center;     /* Center video secara vertikal jika tinggi lebih */
  text-align: center;      /* Center isi jika ada text */
}

.about-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: left;     /* Center konten secara horizontal */
  text-align: left;      /* Center text */
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 1.4rem;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .about .row {
    flex-direction: column;
  }
  
  .about-media, 
  .about-content {
    width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.2);
}
/* =========================
   ===== SERVICES SECTION =====
   ========================= */
/* Layanan utama perusahaan */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3rem; /* beri jarak bawah agar tidak terpotong */
}

.service-card {
  background: #fff; /* Putih terang */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,86,179,0.07), 0 2px 12px rgba(0,86,179,0.07);
  transition: box-shadow 0.45s cubic-bezier(.77,0,.18,1), transform 0.45s cubic-bezier(.77,0,.18,1), background 0.45s;
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px; /* pastikan tidak terpotong */
  position: relative;
  border: 1.5px solid #e3eaf6;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 1px 6px rgb(233, 165, 19), 0 4px 16px rgba(0,86,179,0.10);
  background: #fcfbf8;
}

.service-icon {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e3f0ff 60%, #fff 100%);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 86, 179, 0.13);
  transition: box-shadow 0.3s, background 0.3s;
}

.service-card:hover .service-icon {
  box-shadow: 0 8px 32px rgba(255, 238, 6, 0.22);
  background: linear-gradient(135deg, #b3c6e6 60%, #e3eaf6 100%);
}

.service-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #e3eaf6);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  color: #0056b3;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px #e3eaf6;
}

.service-card p {
  color: #333;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
  flex: 1 1 auto;
  line-height: 1.7;
}

.service-link {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: color 0.25s, gap 0.25s, background 0.25s;
  margin-top: auto; /* selalu di bawah */
  padding: 0.8rem 1.7rem;
  border-radius: 24px;
  background: #0056b3; /* Biru solid */
  box-shadow: 0 2px 12px rgba(252, 206, 1, 0.1);
  font-size: 1.05rem;
  border: none;
}

.service-link:hover {
  background: #003366; /* Biru lebih gelap saat hover */
  color: #fff;
  gap: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,86,179,0.13);
}
/* Responsive: stack di mobile dan padding lebih kecil */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .service-card {
    min-height: 200px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    flex-wrap: unset !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding-bottom: 1rem !important;
    /* Hapus scroll snap jika ada */
    scroll-snap-type: none !important;
  }
  .service-card {
    min-width: 0 !important;
    max-width: 100% !important;
    flex: 1 1 0 !important;
    margin-right: 0 !important;
    scroll-snap-align: unset !important;
  }
  /* Optional: agar card tetap proporsional */
  .services-grid > .service-card {
    width: 100%;
  }
}
/* Projects section: box layout, hover effects */
.projects .box-container {
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   justify-content: center;
   margin-top: 2rem;
}
.projects .box {
   background: #fff;
   border-radius: 18px;
   box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
   overflow: hidden;
   width: 380px;
   max-width: 100%;
   display: flex;
   flex-direction: column;
   text-decoration: none;
   transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
   position: relative;
}
.projects .box:hover {
   transform: translateY(-10px) scale(1.03);
   box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.10);
   z-index: 2;
}
.projects .box .image {
   width: 100%;
   height: 75%;
   overflow: hidden;
   background: #f6f6f6;
   display: flex;
   align-items: center;
   justify-content: center;
}
.projects .box .image img {
   width: 100%;
   height: 75%;
   object-fit: cover;
   transition: 
      transform 0.4s cubic-bezier(.10,2,.5,1),
      filter 0.3s;
   filter: brightness(0.97) contrast(1.08);
}
.projects .box:hover .image img {
   transform: scale(1.07) rotate(-1deg);
   filter: brightness(1.03) contrast(1.12);
}
.projects .box .content {
   padding: 1.3rem 1.2rem 1.1rem 1.2rem;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   background: #fff;
   position: relative;
}
.projects .box .info h3 {
   font-size: 1.18rem;
   font-weight: 700;
   color: #003366;
   margin-bottom: 0.3rem;
   letter-spacing: 0.01em;
}
.projects .box .info p {
   font-size: 1rem;
   color: #444444;
   margin-bottom: 0;
   font-weight: 400;
}
.projects .box .fas.fa-plus {
   position: absolute;
   right: 1.2rem;
   bottom: 1.2rem;
   color: #ff7d00;
   font-size: 1.3rem;
   opacity: 0.7;
   transition: color 0.2s, opacity 0.2s;
}
.projects .box:hover .fas.fa-plus {
   color: #0056b3;
   opacity: 1;
}
.projects .text-center.mt-4 {
   margin-top: 2.5rem;
}
.projects .btn.btn-primary {
   padding: 0.9rem 2.2rem;
   font-size: 1.1rem;
   border-radius: 30px;
   font-weight: 600;
   background: linear-gradient(90deg,#ff7d00 0%,#ff6600 100%);
   border: none;
   color: #fff;
   box-shadow: 0 2px 8px rgba(255,125,0,0.10);
   transition: background 0.2s, box-shadow 0.2s;
}
.projects .btn.btn-primary:hover {
   background: linear-gradient(90deg,#0056b3 0%,#ff7d00 100%);
   box-shadow: 0 4px 16px rgba(0,86,179,0.10);
   color: #fff;
}
.projects .box {
    height: 420px;      /* Atur tinggi sesuai kebutuhan, misal 420px */
    min-height: 340px;  /* Opsional: batas minimum */
    max-height: 100%;   /* Opsional: agar tidak melebihi parent */
    display: flex;
    flex-direction: column;
}
.projects .box .image {
    height: 320px;      /* Atur tinggi gambar agar proporsional */
}
.projects .box .image img {
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px) {
   .projects .box-container {
      gap: 1.2rem;
   }
   .projects .box {
      width: 95vw;
      max-width: 420px;
   }
}
@media (max-width: 600px) {
   .projects .box-container {
      flex-direction: column;
      align-items: center;
   }
   .projects .box {
      width: 100%;
      min-width: 0;
   }
   .projects .box .image {
      height: 170px;
   }
}
@media (max-width: 600px) {
  .projects .box {
    height: 270px;
    min-height: 180px;
  }
  .projects .box .image {
    height: 272px;
  }
}
/* Project Section Styles */
.section.projects {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1.8rem;
  color: #7f8c8d;
  max-width: 800px;
  margin: 0 auto;
}
/* ======== PROJECT TABS MODERN REDESIGN ======== */
.project-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #f9f9f9; /* Sama dengan section.projects */
  border-radius: 2.5rem 2.5rem 0 0;
  box-shadow: none; /* Hilangkan shadow */
  margin-bottom: 0; /* Hilangkan jarak bawah */
  border: none;
  border-top: 1.5px solid #e3eaf6; /* Transisi lembut */
  padding: 8px 8px;
  min-width: 0;
  max-width: 100vw;
  position: relative;
  z-index: 10;
}

.project-tab {
  border: none;
  background: linear-gradient(90deg, #f8fafc 60%, #e3f0ff 100%);
  color: #0056b3;
  font-size: 2.25rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
  margin: 0 0.2rem;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,86,179,0.07);
  letter-spacing: 0.01em;
  position: relative;
  min-width: 120px;
}

.project-tab.active,
.project-tab:focus {
  background: linear-gradient(90deg, #ff7d00 0%, #ffae00 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255,125,0,0.13);
  transform: scale(1.07);
  z-index: 2;
}

.project-tab:hover:not(.active) {
  background: #e3f0ff;
  color: #ff7d00;
  transform: scale(1.03);
}

.project-tab.active::after,
.project-tab:focus::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid #ffae00;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 900px) {
  .project-tabs {
    border-radius: 1.2rem;
    padding: 4px 2px;
    gap: 0.2rem;
  }
  .project-tab {
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    min-width: 90px;
  }
}

@media (max-width: 600px) {
  .project-tabs {
    border-radius: 1rem;
    padding: 2px 1px;
    gap: 0.1rem;
    margin-bottom: 1rem;
    min-width: 0;
    max-width: 100vw;
  }
  .project-tab {
    font-size: 0.98rem;
    padding: 0.6rem 0.8rem;
    min-width: 70px;
    border-radius: 1rem;
  }
  .project-tab.active::after,
  .project-tab:focus::after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffae00;
    bottom: -7px;
  }
}

/* Tab Content Styles */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Responsive: sudut lebih kecil di mobile */
@media (max-width: 600px) {
  .project-tabs {
    border-radius: 1rem 1rem 0 0;
    padding: 4px 2px;
  }
  .box-container {
    border-radius: 0 0 1rem 1rem;
    margin-top: -6px;
    padding-top: 1rem;
  }
}
@media (max-width: 600px) {
  .section.projects .section-header {
    margin-bottom: 1.5rem !important; /* Perkecil jarak bawah judul */
  }
  .project-tabs {
    min-height: 66px !important;      /* Perkecil tinggi tab */
    padding: 3px 3px !important;      /* Perkecil padding tab */
    margin-bottom: 0 !important;      /* Hilangkan jarak bawah tab */
  }
  .box-container {
    padding-top: 0.5rem !important;   /* Perkecil jarak atas konten */
    margin-top: 5rem !important;         /* Hilangkan overlap ke atas */
  }
}
/* Project Box Styles */
.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.box:hover img {
  transform: scale(1.05);
}

.box .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box .info h3 {
  margin: 0;
  font-size: 1.8rem;
}

.box .info p {
  margin: 5px 0 0;
  font-size: 1.4rem;
  opacity: 0.9;
}

.box .fa-plus {
  font-size: 2rem;
  opacity: 0.8;
}

/* =========================
   ===== TESTIMONIALS SECTION =====
   ========================= */
/* Testimoni pelanggan */
.testimonials-slider {
  padding: 3rem;
  background: linear-gradient(135deg, #f8fafc 80%, #e9ecef 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,86,179,0.07);
}

.testimonial-item {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 1rem;
  transition: box-shadow 0.35s cubic-bezier(.77,0,.18,1), transform 0.35s cubic-bezier(.77,0,.18,1);
  will-change: box-shadow, transform;
}

.testimonial-item:hover {
  box-shadow: 0 8px 32px rgba(0,86,179,0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  transform: translateY(-8px) scale(1.025);
}

.testimonial-content {
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial-author img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.rating {
  color: var(--accent-color);
}

/* =========================
   ===== CLIENT LOGO SECTION =====
   ========================= */
/* Logo client/partner */
.client-logo-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.logo-slider {
  padding: 3rem 0;
  margin: 0 auto;
  max-width: 1200px;
}

.logo-slider .swiper-wrapper {
  transition-timing-function: linear; /* Untuk pergerakan yang konstan dan smooth */
  align-items: center; /* Pusatkan logo vertikal */
}

/* Hilangkan grayscale dan opacity pada logo client */
.logo-slider .swiper-slide {
  width: auto !important; /* Lebar menyesuaikan gambar */
  padding: 0 20px; /* Jarak antar logo */
  opacity: 1 !important; /* Full opacity */
  filter: none !important; /* Full color */
}
.logo-slider .swiper-slide img {
  max-height: 90px;
  max-width: 100px;
}
@media (max-width: 900px) {
  .logo-slider img {
    max-width: 90px;
    max-height: 45px;
  }
}

@media (max-width: 600px) {
  .logo-container h1.heading {
    font-size: 1.5rem;
  }
  .logo-slider img {
    max-width: 70px;
    max-height: 40px;
  }
}

/* =========================
   ===== CONTACT SECTION =====
   ========================= */
/* Kontak dan form */
.contact .row {
  display: flex;
}

.contact-info {
  flex: 1;
  font-size: 1.7rem;
  line-height: 1.6;
  background: white;
  padding: 3rem; /* sama dengan .contact-form */
  border-radius: 12px; /* sama dengan .contact-form */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* sama dengan .contact-form */
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%; /* pastikan tidak lebih kecil dari .contact-form */
  min-width: 0;
  box-sizing: border-box;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.info-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.info-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1.6rem;
  transition: var(--transition);
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.09);
  background: white;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: transparent;
  transition: color 0.2s;
}

.form-group textarea {
  resize: vertical;
  min-height: 15rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.contact-section {
  padding: 8rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; /* dari 4rem, diperkecil */
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
}

.info-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 0.3rem;
  min-width: 30px;
  text-align: center;
}

.info-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.info-item p, 
.info-item a {
  color: #555;
  font-size: 1.6rem;
  line-height: 1.6;
  transition: color 0.3s;
}

.info-item a:hover {
  color: var(--primary-color);
}

.contact-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white;
}

.social-icon.facebook:hover {
  background: #3b5998;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.linkedin:hover {
  background: #0077b5;
}

.social-icon.whatsapp:hover {
  background: #25D366;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
}

.contact-map {
  grid-column: span 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 400px;
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.7rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #0056b3;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.09);
  background: #fff;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}
/* =========================
   ===== HUBUNGI KAMI SECTION =====
   ========================= */
/* Header khusus hubungi kami */
.hubungi-kami-header {
  padding-top: 4rem;
  padding-bottom: 0rem; /* dikurangi agar lebih rapat dengan alamat */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 4rem;
}

.hubungi-kami-header .section-title {
  margin-bottom: 1.5rem;
}

.hubungi-kami-header .section-subtitle {
  max-width: 600px;
}

@media (max-width: 600px) {
  .hubungi-kami-header {
    padding-top: 2rem;
    padding-bottom: 1rem; /* dikurangi juga di mobile */
    margin-top: 2.2rem;
  }
}

/* =========================
   ===== FOOTER =====
   ========================= */
/* Footer website */
.footer {
  background: #003366 !important;
  color: var(--white);
  padding: 8rem 0 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  animation: fadeInSection 1.1s cubic-bezier(.77,0,.18,1) both;
  border-top-left-radius: 48px 32px;
  border-top-right-radius: 48px 32px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-about {
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
}

.footer-logo img {
  width: 4rem;
  height: auto;
}

.footer p {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 1.5rem;
}

.footer-links ul li a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-contact h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-contact ul li {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-contact ul li i {
  margin-top: 0.5rem;
  color: var(--primary-color);
}

.footer-contact ul li a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-contact ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(21, 9, 129, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 1.4rem;
}

.footer-bottom p:first-child {
  margin-bottom: 1rem;
}

.footer-bottom a {
  color: var(--primary-color);
  font-weight: 600;
}

/* =========================
   ===== BACK TO TOP BUTTON =====
   ========================= */
/* Tombol kembali ke atas */
.back-to-top {
  position: fixed;
  bottom: 10rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: var(--box-shadow);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.back-to-top:active {
  transform: scale(0.93);
}

/* ======== Tambahan: Jarak back-to-top dan WA float di mobile ======== */
@media (max-width: 600px) {
  .back-to-top {
    right: 1rem !important;
    bottom: 6.5rem !important; /* Lebih ke atas agar tidak menumpuk dengan WA */
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.3rem !important;
    z-index: 10001;
  }
  .wa-float {
    right: 1rem !important;
    bottom: 1rem !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.7rem !important;
    z-index: 10000;
  }
}
/* Untuk jarak lebih besar di perangkat sangat kecil */
@media (max-width: 400px) {
  .back-to-top {
    bottom: 7.5rem !important;
  }
  .wa-float {
    bottom: 1rem !important;
  }
}

/* =========================
   ===== RESPONSIVE STYLES =====
   ========================= */
/* Responsive untuk berbagai ukuran layar */
@media (max-width: 992px) {
  .about .row {
    flex-direction: column;
  }
  .about-media,
  .about-content,
  .contact-info,
  .contact-form {
    width: 100%;
  }
  
  /* .hero-title {
    font-size: 4rem;
  } */
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  /* .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  } */
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  /* .hero {
    min-height: 60rem;
  } */
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1200px) {
  .container,
  .section,
  /* .hero, */
  .logo-container,
  .projects,
  .testimonials,
  .contact,
  .footer {
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* Padding konsisten kiri-kanan untuk desktop & mobile */
.container,
.section,
.about,
.about-content,
.about-media,
.footer,
.footer-content,
.footer-about,
.footer-links,
.footer-contact,
.logo-container,
.projects,
.testimonials,
.contact,
.client-cards-section,
.client-cards-header,
.client-cards-grid,
.client-card,
.contact-info,
.contact-form,
.blogs-slider {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  body, html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .container,
  .section,
  .footer,
  .footer-content,
  .footer-about,
  .footer-links,
  .footer-contact,
  .logo-container,
  .projects,
  .testimonials,
  .contact,
  .client-cards-section,
  .client-cards-header,
  .client-cards-grid,
  .client-card,
  .about-content,
  .about-media,
  .contact-info,
  .contact-form,
  .blogs-slider {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .section-title {
    font-size: 1.5rem !important;
    word-break: break-word !important;
  }
  .section-subtitle {
    font-size: 1rem !important;
    word-break: break-word !important;
  }
  .btn,
  .btn-primary,
  .btn-outline,
  button,
  input[type="button"],
  input[type="submit"] {
    font-size: 1rem !important;
    min-width: 80px !important;
    max-width: 100% !important;
    padding: 0.7rem 0.7rem !important;
    border-radius: 1rem !important;
  }
  .client-card-logo {
    width: 32px !important;
    height: 32px !important;
  }
  .client-card-logo img {
    max-width: 28px !important;
    max-height: 28px !important;
  }
  .contact-map,
  .section.contact .maps,
  .section.contact iframe,
  .contact-info
  .contact .maps,
  .contact iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0.7rem !important;
    height: 140px !important;
  }
  .footer-logo img {
    width: 1.8rem !important;
  }
  .footer-bottom {
    font-size: 1.1rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .whatsapp-float,
  .back-to-top {
    right: 1rem !important;
    bottom: 1.5rem !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.3rem !important;
  }
  .back-to-top {
    bottom: 5.5rem !important;
  }
  .stats-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.7rem !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    padding: 0 0.2rem !important;
  }
  .stat-item {
    min-width: 80px !important;
    max-width: 100px !important;
    flex: 1 1 0;
    padding: 1.1rem 0.3rem 1rem 0.3rem !important;
    margin: 0 !important;
    border-radius: 0.7rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    font-size: 0.9rem !important;
  }
  .stat-number {
    font-size: 1.5rem !important;
    margin-bottom: 0.3rem !important;
  }
  .stat-label {
    font-size: 0.7rem !important;
    margin-bottom: 0.1rem !important;
    line-height: 1.1 !important;
    word-break: break-word;
  }
  .client-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .client-card {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem !important;
    border-radius: 0.7rem !important;
  }
  .hero-content {
    padding: 10px 2px !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
  .hero-title {
    font-size: 1.5rem !important;
    margin-bottom: 1.2rem !important;
    word-break: break-word !important;
  }
  .hero-text {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
  }
  .hero-buttons {
    flex-direction: row !important;
    gap: 0.7rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* Extra small: lebih kecil lagi */
@media (max-width: 400px) {
  .stat-item {
    min-width: 60px !important;
    max-width: 80px !important;
    padding: 0.7rem 0.1rem 0.7rem 0.1rem !important;
    font-size: 0.8rem !important;
  }
  .stat-number {
    font-size: 1.1rem !important;
  }
  .stat-label {
    font-size: 0.6rem !important;
  }
  .contact-form {
    padding: 0.5rem 0.2rem !important;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem !important;
    padding: 0.7rem 0.5rem !important;
  }
  .contact-map,
  .contact-map iframe {
    height: 90px !important;
  }
}

/* Konsistensi ukuran font di contact-info */
.contact-info {
  font-size: 1.6rem; /* default, sama dengan body */
}

/* Responsive font-size untuk contact-info */
@media (max-width: 600px) {
  .contact-info {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
  }
}
@media (max-width: 400px) {
  .contact-info {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }
}

/* Hindari overflow-x di semua elemen utama */
html, body, .container, .section, .footer, .projects, .testimonials, .contact, .client-cards-section {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* =========================
   ===== MODERN REDESIGN ===== */

/* Header: glassmorphism, floating, shadow, blur */
.header, .header.mobile-header {
  background: #fff !important; /* Ubah ke putih solid */
  box-shadow: 0 8px 32px rgba(0,86,179,0.08);
  backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(0,86,179,0.06);
  transition: background 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.35s cubic-bezier(.77,0,.18,1), padding 0.35s cubic-bezier(.77,0,.18,1);
}
.header.scrolled, .header.mobile-header.scrolled {
  background: #fff !important; /* Tetap putih solid saat discroll */
  box-shadow: 0 16px 48px rgba(0,86,179,0.13);
}

/* Navbar: modern underline, spacing, uppercase */
.navbar {
  gap: 2.2rem;
}
.nav-link {
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--secondary-color);
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-link.active {
  background: rgba(0,86,179,0.08);
  color: var(--primary-color);
}

/* =========================
   ===== STATISTICS SECTION =====
   ========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  justify-items: center;
  align-items: stretch;
  margin: 4rem 0 2rem 0;
}

.stat-item {
  background: rgba(255,255,255,0.93);
  border-radius: 1.5rem;
  box-shadow: 0 4px 18px rgba(0,86,179,0.10);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid rgba(0,86,179,0.07);
}

.stat-item:hover {
  box-shadow: 0 8px 32px rgba(0,86,179,0.13);
  transform: translateY(-6px) scale(1.04);
  background: #f8fafc;
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* Responsive: stats-grid mendatar & font kecil di mobile */
@media (max-width: 600px) {
  .stats-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.7rem !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    padding: 0 0.2rem !important;
  }
  .stat-item {
    min-width: 80px !important;
    max-width: 100px !important;
    flex: 1 1 0;
    padding: 1.1rem 0.3rem 1rem 0.3rem !important;
    margin: 0 !important;
    border-radius: 0.7rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    font-size: 0.9rem !important;
  }
  .stat-number {
    font-size: 1.5rem !important;
    margin-bottom: 0.3rem !important;
  }
  .stat-label {
    font-size: 0.7rem !important;
    margin-bottom: 0.1rem !important;
    line-height: 1.1 !important;
    word-break: break-word;
  }
}

/* Extra small: lebih kecil lagi */
@media (max-width: 400px) {
  .stat-item {
    min-width: 60px !important;
    max-width: 80px !important;
    padding: 0.7rem 0.1rem 0.7rem 0.1rem !important;
    font-size: 0.8rem !important;
  }
  .stat-number {
    font-size: 1.1rem !important;
  }
  .stat-label {
    font-size: 0.6rem !important;
  }
}
/* Tambahkan style khusus untuk link MCA di footer */
.footer-bottom .mca-highlight {
   color: #ff7d00 !important;
   font-weight: bold;
   text-decoration: underline;
   transition: color 0.2s;
}
.footer-bottom .mca-highlight:hover {
   color: #0056b3 !important;
}
/* =========================
   ===== HERO SECTION REDESIGN =====
   ========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;         /* sebelumnya 100vh */
  min-height: 100vh;     /* sebelumnya 100vh */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .swiper-slide > .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Pastikan tidak ada padding/margin atas bawah yang besar */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero-slider,
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  width: 100%;
  height: 100vh;         /* sebelumnya 100%/100vh */
}

.hero .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;     /* sebelumnya 100vh */
  display: flex;
  align-items: center;
}

/* HERO BANNER IMAGE SMOOTH ANIMATION */
.hero .swiper-slide img {
  opacity: 0;
  transform: scale(1.08) translateY(40px);
  transition: opacity 1.2s cubic-bezier(.77,0,.18,1), transform 1.2s cubic-bezier(.77,0,.18,1);
  will-change: opacity, transform;
}
.hero .swiper-slide-active img.hero-img-animate {
  opacity:  1 !important;
  transform: scale(1) translateY(0) !important;
  transition: opacity 1.2s cubic-bezier(.77,0,.18,1), transform 1.2s cubic-bezier(.77,0,.18,1);
}

.hero .swiper-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px; /* atau 100% jika ingin full */
  height: 100%;
  min-height: 0;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Konsistensi tampilan hero-content, hero-title, hero-text, hero-buttons di semua perangkat */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 16px;
  text-align: center;
  color: #fff;
  background: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  transition: none !important;
}
.hero-title {
  font-size: 4.8rem !important;
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
  text-shadow: none !important;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.hero-title::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, #ff7d00 0%, #0056b3 100%);
  border-radius: 2px;
  width: 0;
  transition: width 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.hero-title:hover,
.hero-title:focus {
  color: #ff7d00;
  background: #fff7e600;
}
.hero-title:hover::after,
.hero-title:focus::after {
  width: 100%;
}
.hero-title::selection {
  background: #ffecd200;
  color: #ff7d00;
}
.hero-text {
  font-size: 2.25rem !important;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-word;
  opacity: 1 !important;
  text-shadow: none !important;
}
.hero-text .highlight {
  font-weight: 700;
  color: #ff7d00 !important;
  background: none !important;
  font-size: inherit !important;
}
.hero-buttons {
  display: flex;
  flex-direction: row !important; /* Selalu horizontal */
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  
}
.btn,
.btn-primary,
.btn-outline {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-size: 1rem;
  padding: 0.7rem 0.7rem;
  border-radius: 1.2rem;
  margin: 0;
  text-align: center;
}


/* --- HERO BANNER: Perbesar text di mobile dan pertahankan efek --- */
@media (max-width: 600px) {
  .hero-title {
    font-size: 2.8rem !important;
    /* Efek underline tetap aktif */
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
  }
  .hero-title::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 4px;
    background: linear-gradient(90deg, #ff7d00 0%, #0056b3 100%);
    border-radius: 2px;
    width: 0;
    transition: width 0.35s cubic-bezier(.77,0,.18,1);
    pointer-events: none;
  }
  .hero-title:hover,
  .hero-title:focus {
    color: #ff7d00;
    background: #fff7e600;
  }
  .hero-title:hover::after,
  .hero-title:focus::after {
    width: 100%;
  }
  .hero-title::selection {
    background: #ffecd200;
    color: #ff7d00;
  }
  .hero-text {
    font-size: 1.6rem !important;
    line-height: 1.5 !important;
  }
}

/* Hapus override font-size kecil pada hero di media query lain */

@media (max-width:  1200px), (max-width: 900px), (max-width: 768px), (max-width: 600px), (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem !important;
  }
  .hero-text {
    font-size: 1.6rem !important;
  }
}

/* Pastikan efek hover/underline tetap aktif di semua ukuran */
.hero-title {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.hero-title::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, #ff7d00 0%, #0056b3 100%);
  border-radius: 2px;
  width: 0;
  transition: width 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.hero-title:hover,
.hero-title:focus {
  color: #ff7d00;
  background: #fff7e600;
}
.hero-title:hover::after,
.hero-title:focus::after {
  width: 100%;
}
.hero-title::selection {
  background: #ffecd200;
  color: #ff7d00;
}

/* MOBILE: Samakan tampilan dengan zoom 300% di PC */
@media (max-width: 600px) {
  html {
    font-size: 49% !important;
  }
  body {
    /* Pastikan tidak ada overflow dan scaling proporsional */
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Jika ada elemen yang terlalu lebar, batasi lebarnya */
  .container,
  .section,
  .footer,
  .footer-content,
  .footer-about,
  .footer-links,
  .footer-contact,
  .logo-container,
  .projects,
  .testimonials,
  .contact,
  .client-cards-section,
  .client-cards-header,
  .client-cards-grid,
  .client-card,
  .about-content,
  .about-media,
  .contact-info,
  .contact-form,
  .blogs-slider {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
    /* padding tetap agar tidak mepet */
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  /* Pastikan .contact .row tetap row agar dua kolom */
  .contact .row {
    flex-direction: row !important;
    gap: 1rem !important;
  }
  .contact-info,
  .contact-form {
    width: 100% !important;
    max-width: 50vw !important;
    min-width: 0 !important;
    box-sizing: border-box;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-radius: 8px !important;
  }
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-features .feature-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,86,179,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.about-features .feature-item i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-features .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.about-features .feature-item p {
  font-size: 1rem;
  color: var(--gray);
}

/* Responsive: stack di mobile */
@media (max-width: 900px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
/* Atur tombol di dalam .about-content agar vertikal dan rapi */
.about-content .about-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start; /* atau center jika ingin tengah */
  margin-top: 2rem;
}

.about-content .about-buttons .btn,
.about-content .about-buttons .btn-primary,
.about-content .about-buttons .btn-outline {
  width: auto;
  min-width: 160px;
  max-width: 100%;
}
.about-content .about-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: center;
}

@media (max-width: 600px) {
  .about-content .about-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  /* Hapus padding dan pastikan width parent hanya 100% */
  .container,
  .section,
  .about,
  .about-content,
  .about-media,
  .footer,
  .footer-content,
  .footer-about,
  .footer-links,
  .footer-contact,
  .logo-container,
  .projects,
  .testimonials,
  .contact,
  .client-cards-section,
  .client-cards-header,
  .client-cards-grid,
  .client-card,
  .contact-info,
  .contact-form,
  .blogs-slider {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }
  /* Terapkan padding hanya di .row */
  .row {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box;
  }
}
/* Loader 3 titik smooth */
.loader-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  height: 60px;
  width: 80px;
}
.loader-dots span {
  display: block;
  width: 13px;
  height: 13px;
  background: #0269d8;
  border-radius: 50%;
  opacity: 0.7;
  animation: loader-dots-bounce 1.2s cubic-bezier(.77,0,.18,1) infinite;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes loader-dots-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.7;}
  40% { transform: translateY(-16px); opacity: 1;}
}
/* Preloader overlay full screen */
#preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
/*tammbahhhhhhhhhhhhhhhhh*/
/* Batasi tinggi hero di mobile agar tidak terlalu tinggi */
@media (max-width: 600px) {
  .hero,
  .hero-slider,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    height: 60vh !important;   /* Ubah 70vh sesuai selera, misal 60vh */
    min-height: 320px !important; /* Batas minimum agar tidak terlalu kecil */
    max-height: 90vh !important;
  }
  .hero .swiper-slide .overlay {
    min-height: 320px !important;
  }
  .hero .swiper-slide > .container {
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .hero-content {
    padding: 16px 4vw !important;
    max-width: 98vw !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
  }
  .hero-text {
    font-size: 1.1rem !important;
  }
}
.hero .swiper-slide img {
  width: 100vw;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}
/* Penanda khusus link MCA di footer */
.footer-bottom .mca-highlight {
  color: #ff7d00 !important;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom .mca-highlight:hover {
  color: #f5f5f5 !important;
}
/* === Blog Card Modern Redesign === */
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,86,179,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 1.2rem 1.2rem 1.7rem 1.2rem;
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1.5px solid #e3eaf6;
  min-height: 260px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  padding: 0 0 1.5rem 0;
  box-sizing: border-box;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(0,86,179,0.16), 0 2px 12px rgba(0,86,179,0.09);
  transform: translateY(-8px) scale(1.03);
  background: #f8fafc;
}

.blog-image {
  width: 100%;
  max-width: 320px;
  height: 160px;
  margin: 0 auto 1.2rem auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,86,179,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f8fa;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.4s cubic-bezier(.10,2,.5,1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.07) rotate(-1deg);
}

.blog-content {
  padding: 0.7rem 0 0 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: color 0.2s;
}

.blog-card:hover .blog-title {
  color: #ff7d00;
}

.blog-desc {
  font-size: 0.98rem;
  color: #444;
  opacity: 0.93;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.blog-meta {
  margin-top: auto;
  font-size: 0.92rem;
  color: #888;
  opacity: 0.8;
}

/* Tombol Selengkapnya */
.blog-card .btn-selengkapnya {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: 2rem;
  margin-top: 1.1rem;
  margin-bottom: 0.2rem;
  background: linear-gradient(90deg, #ff7d00 0%, #ffae00 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 12px rgba(255,125,0,0.10);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(255,125,0,0.10);
  position: relative;
  overflow: hidden;
}

.blog-card .btn-selengkapnya i {
  font-size: 1.1em;
  margin-left: 0.3em;
  transition: transform 0.2s;
}

.blog-card .btn-selengkapnya:hover,
.blog-card .btn-selengkapnya:focus {
  background: linear-gradient(90deg, #0056b3 0%, #ff7d00 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,86,179,0.13);
  transform: translateY(-2px) scale(1.04);
}

.blog-card .btn-selengkapnya:hover i,
.blog-card .btn-selengkapnya:focus i {
  transform: translateX(4px);
}

/* Responsive: Blog grid 3 kolom di mobile, card tetap proporsional */
@media (max-width: 900px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    padding: 0 0.5rem 1rem 0.5rem;
  }
  .blog-card {
    padding: 0.7rem 0.5rem 1.1rem 0.5rem;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .blog-image {
    height: 70px;
    min-height: 70px;
    max-height: 80px;
    aspect-ratio: 16/9;
    margin-bottom: 0.5rem;
  }
  .blog-title {
    font-size: 0.95rem;
  }
  .blog-desc {
    font-size: 0.82rem;
  }
  .blog-meta {
    font-size: 0.75rem;
  }
  .blog-card .btn-selengkapnya {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
    border-radius: 1.2rem;
    min-width: 80px;
    width: 100%;
    max-width: 100%;
    margin-top: 0.7rem;
  }
}
      /* === About Section Improvements === */
.about .content-title {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
  }

  .about-media {
    flex: 1;
    min-width: 720px;
    max-width: 700px;
    margin: 0 auto;
  }

  .video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 0;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .about-content {
    flex: 1;
    min-width: 250px;
    max-width: 600px;
    padding: 0 15px;
  }

  .content-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
  }

  .content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    display: none;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .feature-item {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #fff;
  }

  .feature-item i {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  .feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
  }

  .feature-item p {
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .about .row {
      flex-direction: column;
      gap: 2rem;
    }
    
    .about-media, 
    .about-content {
      width: 100%;
      max-width: 100%;
      padding: 0;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .content-title {
      font-size: 2rem;
    }
  }

  /* Tambahkan/ubah di bagian style */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.stats-grid {
  display: flex;
  gap: 12.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 3rem 0 2rem 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,86,179,0.07);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.35s cubic-bezier(.77,0,.18,1);
  position: relative;
}
.stat-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255,125,0,0.10), 0 2px 12px rgba(0,0,0,0.08);
}
.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(0,86,179,0.07);
}
.stat-orange { color: #ff7d00; background: #fff7ed; }
.stat-blue { color: #0056b3; background: #e3f0ff; }
.stat-green { color: #25D366; background: #eafff3; }
.stat-orange2 { color: #ff6600; background: #fff7ed; }
.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.stat-label {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #555;
}
.stat-label span {
  font-weight: 600;
  color: #ff7d00;
}
@media (max-width: 900px) {
  .stats-grid {
    gap: 1.2rem;
  }
  .stat-item {
    min-width: 140px;
    max-width: 100%;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .stat-item {
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
/* Hilangkan semua scrollbar di seluruh elemen kecuali html */
body, *:not(html) {
  scrollbar-width: none !important;      /* Firefox */
  -ms-overflow-style: none !important;   /* IE/Edge */
}

body::-webkit-scrollbar,
*:not(html)::-webkit-scrollbar {
  display: none !important;              /* Chrome, Safari, Opera */
  width: 0 !important;
  height: 0 !important;
}
/* === MODERN LIGHTGALLERY CONTROLS === */

/* Tombol Close (X) */
.lg-close {
  color: #ff3b3b !important;
  font-size: 2.8rem !important;
  top: 28px !important;
  right: 32px !important;
  opacity: 1 !important;
  background: rgba(255,255,255,0.85) !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 1.5px solid #ff3b3b22;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 100;
}
.lg-close:hover {
  color: #fff !important;
  background: #ff3b3b !important;
  box-shadow: 0 4px 18px #ff3b3b44;
}

/* Tombol Panah Navigasi */
.lg-next, .lg-prev {
  color: #0056b3 !important;
  font-size: 2.8rem !important;
  width: 48px !important;
  height: 48px !important;
  background: rgba(255,255,255,0.85) !important;
  border-radius: 50% !important;
  top: 50% !important;
  margin-top: -24px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 1.5px solid #0056b322;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 100;
}
.lg-next:hover, .lg-prev:hover {
  background: #0056b3 !important; 
  color: #fff !important;
  box-shadow: 0 4px 18px #0056b344;
}

/* Indikator Slide (Counter) */
.lg-counter {
  color: #fff !important;
  font-size: 1.25rem !important;
  background: rgba(0,0,0,0.55) !important;
  padding: 7px 22px !important;
  border-radius: 1.5em !important;
  top: 28px !important;
  left: 32px !important;
  font-weight: 600;
  letter-spacing: 0.13em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 1.5px solid #fff2;
  backdrop-filter: blur(2px);
  z-index: 100;
}

/* Efek shadow halus saat hover */
.lg-close:active,
.lg-next:active,
.lg-prev:active {
  box-shadow: 0 1px 4px rgba(0,0,0,0.13);
  transform: scale(0.95);
}

/* Responsive: kecilkan tombol di mobile */
@media (max-width: 600px) {
  .lg-close {
    font-size: 1.5rem !important;
    width: 34px !important;
    height: 34px !important;
    top: 10px !important;
    right: 10px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
  .lg-prev {
    font-size: 1.5rem !important;
    width: 34px !important;
    height: 34px !important;
    top: 50% !important;
    left: 10px !important;
    right: auto !important;
    margin-top: -17px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
  .lg-next {
    font-size: 1.5rem !important;
    width: 34px !important;
    height: 34px !important;
    top: 50% !important;
    right: 10px !important;
    left: auto !important;
    margin-top: -17px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
  .lg-counter {
    font-size: 0.95rem !important;
    padding: 3px 10px !important;
    top: 10px !important;
    left: 10px !important;
  }
}
/* --- NAVBAR MOBILE MODERN --- */
.header.mobile-header .navbar {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) scale(0.98);
  width: 92vw;
  max-width: 420px;
  min-width: 220px;
  background: rgba(255,255,255,0.97);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,86,179,0.13), 0 2px 12px rgba(0,0,0,0.09);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  padding: 2.5rem 0 2rem 0;
  transition: opacity 0.35s cubic-bezier(.77,0,.18,1), transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 998;
  display: none;
  opacity: 0;
  pointer-events: none;
  border: 1.5px solid #e3eaf6;
  backdrop-filter: blur(10px);
}

.header.mobile-header .navbar.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.header.mobile-header .nav-link {
  font-size: 1.25rem;
  padding: 1.1rem 0;
  text-align: center;
  color: #0056b3;
  text-decoration: none;
  border-radius: 1.2rem;
  width: 80vw;
  max-width: 340px;
  margin: 0 auto;
  background: transparent;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.header.mobile-header .nav-link.active,
.header.mobile-header .nav-link:focus {
  background: linear-gradient(90deg, #ff7d00 0%, #ffae00 100%);
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(255,125,0,0.10);
  transform: scale(1.04);
}

.header.mobile-header .nav-link:hover:not(.active) {
  background: #f6f6f6;
  color: #ff7d00;
  transform: scale(1.03);
}

#menu-btn {
  display: block;
  font-size: 2.5rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
  color: #ff7d00;
  background: none;
  border: none;
  outline: none;
}

#menu-btn.active {
  transform: rotate(90deg) scale(1.15);
  color: #0056b3;
}

.header.mobile-header .header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 0.5rem;
}

.header.mobile-header .action-btn {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6f6f6;
  color: #0056b3;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,86,179,0.07);
}

.header.mobile-header .action-btn:hover {
  background: #ff7d00;
  color: #fff;
}

.header.mobile-header .action-btn.email {
  color: #ea4335;
}

.header.mobile-header .action-btn.email:hover {
  background: #ea4335;
  color: #fff;
}

/* Hamburger animasi */
#menu-btn {
  transition: color 0.2s, transform 0.3s cubic-bezier(.77,0,.18,1);
}
#menu-btn.active {
  color: #0056b3;
  transform: rotate(90deg) scale(1.15);
}

/* Responsive: mobile full width */
@media (max-width: 600px) {
  .header.mobile-header .navbar {
    width: 98vw;
    max-width: 99vw;
    min-width: 0;
    left: 50%;
    border-radius: 1.2rem;
    padding: 1.5rem 0 1.2rem 0;
  }
  .header.mobile-header .nav-link {
    font-size: 1.5rem;
    width: 95vw;
    max-width: 99vw;
    border-radius: 0.9rem;
    padding: 0.9rem 0;
  }
}
/* WhatsApp Floating Button */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 70%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  z-index: 9999;
  box-shadow: 0 5px 20px 0 rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.2s;
  animation: wa-float-bounce 2.2s infinite cubic-bezier(.77,0,.18,1);
}
.wa-float:hover {
  transform: scale(1.13) rotate(-8deg);
}
@keyframes wa-float-bounce {
  0%, 100% { transform: translateY(0) scale(1);}
  20% { transform: translateY(-10px) scale(1.12);}
  40% { transform: translateY(-3px) scale(1.04);}
  60% { transform: translateY(2px) scale(0.98);}
  80% { transform: translateY(0) scale(1);}
}

/* WhatsApp Popup */
.wa-popup {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 340px;
  max-width: 95vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.18);
  z-index: 10000;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.35s cubic-bezier(.77,0,.18,1), transform 0.35s cubic-bezier(.77,0,.18,1);
}
.wa-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: wa-popup-in 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes wa-popup-in {
  0% { opacity: 0; transform: translateY(60px) scale(0.93);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}
.wa-popup-header {
  background: linear-gradient(90deg, #25D366 70%, #128C7E 100%);
  color: #fff;
  padding: 1rem 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}
.wa-popup-header i {
  margin-right: 0.7rem;
  font-size: 1.5rem;
}
#wa-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  margin-left: 1rem;
}
.wa-popup-body {
  padding: 1.2rem;
  background: #f8fafc;
}
.wa-bubble {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.wa-bubble-text {
  background: #e1ffc7;
  color: #222;
  border-radius: 1.2rem 1.2rem 1.2rem 0.3rem;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(37,211,102,0.08);
  animation: wa-bubble-in 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes wa-bubble-in {
  0% { opacity: 0; transform: translateY(20px) scale(0.95);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}
.wa-popup-send {
  display: inline-block;
  background: linear-gradient(90deg, #25D366 70%, #128C7E 100%);
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  transition: background 0.2s, transform 0.18s;
  margin-top: 0.5rem;
}
.wa-popup-send:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.04);
}
.wa-popup-send i {
  margin-left: 0.5rem;
}
@media (max-width: 600px) {
  .wa-popup, .wa-float {
    right: 1rem !important;
    bottom: 1rem !important;
    width: 95vw !important;
    max-width: 99vw !important;
  }
  .wa-popup {
    border-radius: 1rem !important;
  }
}
/* WhatsApp Floating Button Modern & Soft */
.wa-float {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366 80%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  z-index: 9999;
  box-shadow: 0 8px 32px 0 rgba(37, 211, 102, 0.25), 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.18s, background 0.22s;
  border: 4px solid #25D366;
  animation: wa-float-bounce 2.2s infinite cubic-bezier(.77,0,.18,1);
}
.wa-float:hover {
  background: linear-gradient(135deg, #128C7E 80%, #25D366 100%);
  box-shadow: 0 16px 48px 0 rgba(37, 211, 102, 0.32), 0 4px 16px rgba(0,0,0,0.13);
  transform: scale(1.11) rotate(-7deg);
}
.wa-float i {
  filter: drop-shadow(0 2px 8px #25d36644);
  text-shadow: 0 2px 8px #25d36644;
  transition: filter 0.2s, text-shadow 0.2s;
}
@keyframes wa-float-bounce {
  0%, 100% { transform: translateY(0) scale(1);}
  20% { transform: translateY(-10px) scale(1.12);}
  40% { transform: translateY(-3px) scale(1.04);}
  60% { transform: translateY(2px) scale(0.98);}
  80% { transform: translateY(0) scale(1);}
}
@media (max-width: 600px) {
  .wa-float {
    right: 1rem !important;
    bottom: 1rem !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 2rem !important;
    border-width: 2.5px !important;
  }
}
/* ======== Tambahan: Jarak back-to-top dan WA float di mobile ======== */
@media (max-width: 600px) {
  .back-to-top {
    right: 1rem !important;
    bottom: 5.5rem !important; /* Selalu di atas WA float */
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.3rem !important;
    z-index: 10001;
  }
  .wa-float {
    right: 1rem !important;
    bottom: 1rem !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.7rem !important;
    z-index: 10000;
  }
}

/* Untuk jarak lebih besar di perangkat sangat kecil */
@media (max-width: 400px) {
  .back-to-top {
    bottom: 6.5rem !important; /* Tetap di atas WA float */
  }
  .wa-float {
    bottom: 1rem !important;
  }
}
/* Hide popup by default, show with .active */
.wa-popup {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.35s cubic-bezier(.77,0,.18,1), transform 0.35s cubic-bezier(.77,0,.18,1);
}
.wa-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  display: block;
}
/* ======== MODERN SMOOTH DESIGN IMPROVEMENTS ======== */

/* 1. Card, Box, dan Section lebih lembut */
.box, .service-card, .blog-card, .testimonial-item, .stat-item {
  border-radius: 1.5rem !important;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08) !important;
  transition: box-shadow 0.25s, transform 0.18s;
  background: #fff;
}
.box:hover, .service-card:hover, .blog-card:hover, .testimonial-item:hover, .stat-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.13) !important;
  transform: translateY(-6px) scale(1.03);
}

/* 2. Tombol lebih membulat dan efek hover smooth */
.btn, .btn-primary, .btn-outline, .service-link, .wa-popup-send {
  border-radius: 2.5rem !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(255,125,0,0.08);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
}
.btn:hover, .btn-primary:hover, .btn-outline:hover, .service-link:hover, .wa-popup-send:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(255,125,0,0.13);
}

/* 3. Section lebih lega dan background soft */
.section, section {
  padding: 4.5rem 0 4.5rem 0 !important;
  background: #f8fafc;
}
.section-header {
  margin-bottom: 2.5rem !important;
}

/* 4. Font dan warna lebih soft */
body {
  color: #222;
  background: #f8fafc;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
}
.section-title {
  color: #003366;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.section-subtitle {
  color: #607d8b;
  font-weight: 500;
}

/* 5. Animasi masuk fadeInUp pada card */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,2,.3,1), transform 0.7s cubic-bezier(.4,2,.3,1);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* 6. Responsive grid lebih rapi di mobile */
@media (max-width: 600px) {
  .box-container {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .section, section {
    padding: 2.2rem 0 2.2rem 0 !important;
  }
  .box, .service-card, .blog-card, .testimonial-item, .stat-item {
    border-radius: 1rem !important;
  }
}

/* 7. Tambahkan white space antar section */
.section + .section, section + section {
  margin-top: 2.5rem;
}

/* 8. Gambar pada card lebih membulat */
.box img, .blog-image img, .service-icon img, .testimonial-author img {
  border-radius: 1.2rem !important;
}

/* 9. Footer lebih soft */
.footer {
  background: linear-gradient(135deg, #003366 80%, #0056b3 100%) !important;
  border-top-left-radius: 32px 24px;
  border-top-right-radius: 32px 24px;
}

/* 10. Hilangkan garis tebal, gunakan warna pastel */
.section, .box-container, .service-card, .blog-card, .testimonial-item, .stat-item {
  border: none !important;
  background: #fff !important;
}

/* 11. Navbar lebih lembut */
.nav-link, .header.mobile-header .nav-link {
  border-radius: 1.2rem !important;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.nav-link:hover, .nav-link.active, .header.mobile-header .nav-link:hover, .header.mobile-header .nav-link.active {
  background: #f6f6f6 !important;
  color: #ff7d00 !important;
  box-shadow: 0 2px 12px rgba(255,125,0,0.10);
}

/* 12. Animasi hover pada logo client */
.logo-slider .swiper-slide img {
  transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
}
.logo-slider .swiper-slide img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0,86,179,0.13);
}
/*Tombol-Download*/
.btn-download-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  background: #003366; /* Biru tua solid */
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  border: none;
  border-radius: 30px;
  padding: 1em 2em;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s;
  text-align: center;
  cursor: pointer;
}
.btn-download-full:hover,
.btn-download-full:focus {
  background: #002244; /* Biru lebih gelap saat hover */
  color: #fff;
  text-decoration: none;
}
.btn-download-full .download-icon {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .btn-download-full {
    width: 100%;
    min-height: 1%;
    font-size: 1rem;
    padding: 1em 0.5em;
  }
}
/* Padding konsisten kiri-kanan untuk PC (di luar media query mobile) */
.container,
.section,
.about,
.about-content,
.about-media,
.footer,
.footer-content,
.footer-about,
.footer-links,
.footer-contact,
.logo-container,
.projects,
.btn-download-full,
.testimonials,
.contact,
.client-cards-section,
.client-cards-header,
.client-cards-grid,
.client-card,
.contact-info,
.stats-grid,
.stats-number,
.stats-item,
.row {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
  box-sizing: border-box;
}

/* Untuk mobile tetap gunakan 1.5rem */
@media (max-width: 600px) {
  .container,
  .section,
  .about,
  .about-content,
  .about-media,
  .footer,
  .footer-content,
  .footer-about,
  .footer-links,
  .footer-contact,
  .logo-container,
  .btn-download-full,
  .projects,
  .testimonials,
  .contact,
  .client-cards-section,
  .client-cards-header,
  .client-cards-grid,
  .client-card,
  .project-tab,
  .contact-info,
  .blogs-slider,
  .blogs-grid,
  .stats-grid,
  .stats-number,
  .stats-item,
  .row {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  /* Gunakan grid agar dua kolom di atas, map di bawah */
  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0.7rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Contact form di kiri, contact info di kanan */
  .contact-form {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 1rem 0.5rem !important;
    border-radius: 0.7rem !important;
    box-sizing: border-box;
  }
  .contact-info {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 1rem 0.5rem !important;
    border-radius: 0.7rem !important;
    box-sizing: border-box;
  }
  .contact-map,
  .contact-map iframe,
  .section.contact .maps,
  .section.contact iframe {
    grid-column: 1 / 3 !important;
    grid-row: 2 / 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0.7rem !important;
    height: 140px !important;
    display: block !important;
  }
}
