/* ==========================================================================
   DINO LOGISTICS - OPTIMIZED HOME PAGE CSS
   Consolidated & cleaned up version
   ========================================================================== */

/* ==========================================================================
   1. ABOUT SECTION - ZIGZAG BLUE-WHITE LAYOUT
   ========================================================================== */

.about-zigzag-section {
  padding: 0;
  /* Remove default padding, each row has its own */
}

/* Item Wrapper - Full Width Zigzag Rows */
.about-row-item {
  width: 100%;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background Colors - Zigzag Pattern */
.about-row-item.bg-blue {
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%);
  color: white;
}

.about-row-item.bg-white {
  background: #ffffff;
  color: #1f2937;
}

/* Inner Container */
.about-row-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Reverse Layout (Image Right) */
.about-row-item.row-reverse .about-row-inner {
  flex-direction: row-reverse;
}

/* No Image Mode (Centered) */
.about-row-item.no-image-mode .about-row-inner {
  flex-direction: column;
  text-align: center;
  max-width: 900px;
}

/* Kolom Gambar */
.about-col-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.image-frame-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  background: white;
  border: 8px solid white;
}

.about-row-item.row-reverse .image-frame-modern {
  transform: rotate(2deg);
}

.about-row-item:hover .image-frame-modern {
  transform: rotate(0deg) scale(1.02);
}

.image-frame-modern img {
  width: 100%;
  height: auto;
  display: block;
}

/* Kolom Teks */
.about-col-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Typography - Blue Background */
.about-row-item.bg-blue .sub-title {
  background: rgba(255, 255, 255, 0.2);
  color: #FFD54F;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-row-item.bg-blue h2 {
  color: white;
}

.about-row-item.bg-blue .content-text-body {
  color: rgba(255, 255, 255, 0.95);
}

.about-row-item.bg-blue .point-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.about-row-item.bg-blue .point-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #FFD54F;
}

.about-row-item.bg-blue .point-card span {
  color: white;
}

/* Typography - White Background */
.about-row-item.bg-white .sub-title {
  background: rgba(5, 84, 198, 0.1);
  color: #0554c6;
  border: 1px solid rgba(5, 84, 198, 0.2);
}

.about-row-item.bg-white h2 {
  color: #1f2937;
}

.about-row-item.bg-white .content-text-body {
  color: #6b7280;
}

.about-row-item.bg-white .point-card {
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-row-item.bg-white .point-icon {
  background: rgba(5, 84, 198, 0.1);
  color: #0554c6;
}

.about-row-item.bg-white .point-card span {
  color: #1f2937;
}

/* Common Typography Styles */
.sub-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
}

.about-col-text h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.content-text-body {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.content-text-body p {
  margin-bottom: 16px;
}

/* Points Grid */
.about-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.point-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.point-card span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* Button Wrapper */
.about-btn-wrapper {
  display: flex;
  margin-top: 10px;
}

.about-row-item.no-image-mode .about-btn-wrapper {
  justify-content: center;
}

/* Button Styling */
.about-row-item.bg-blue .btn-hero-primary {
  background: white;
  color: #0554c6;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.about-row-item.bg-blue .btn-hero-primary:hover {
  background: #FFD54F;
  color: #0554c6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

.about-row-item.bg-white .btn-hero-primary {
  background: #0554c6;
  color: white;
  box-shadow: 0 4px 15px rgba(5, 84, 198, 0.3);
}

.about-row-item.bg-white .btn-hero-primary:hover {
  background: #0442a0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(5, 84, 198, 0.5);
}

/* ==========================================================================
   2. RESPONSIVE - TABLET
   ========================================================================== */
@media (max-width: 992px) {
  .about-row-item {
    padding: 60px 0;
  }

  .about-row-inner,
  .about-row-item.row-reverse .about-row-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .image-frame-modern {
    transform: rotate(0deg) !important;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-btn-wrapper {
    justify-content: center;
  }

  .about-col-text h2 {
    font-size: 32px;
  }

  .about-points-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   3. RESPONSIVE - MOBILE
   ========================================================================== */
@media (max-width: 576px) {
  .about-row-item {
    padding: 50px 0;
  }

  .about-row-inner {
    padding: 0 20px;
    gap: 30px;
  }

  .about-col-text h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .content-text-body {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .sub-title {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .about-points-grid {
    gap: 12px;
  }

  .point-card {
    padding: 12px;
  }

  .point-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .point-card span {
    font-size: 13px;
  }

  .image-frame-modern {
    border: 4px solid white;
    border-radius: 16px;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ==========================================================================
   4. HERO SECTION OPTIMIZATION (Consolidated from both CSS files)
   ========================================================================== */

.hero-section-modern {
  position: relative;
  width: 100%;
  height: 85vh !important;
  /* Increased for better visual impact */
  min-height: 700px !important;
  /* Taller minimum height */
  background: #000;
  overflow: hidden;
  border-radius: 0;
  /* Remove border radius for full width */
  padding-bottom: 0 !important;
}

/* Curved bottom edge for hero section - BLUE CURVE */
.hero-section-modern::after {
  content: '' !important;
  position: absolute !important;
  bottom: -1px !important;
  left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  /* Increased curve height */
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%) !important;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide-item.active {
  opacity: 1;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(3, 35, 80, 0.85) 0%,
      rgba(5, 84, 198, 0.4) 50%,
      rgba(5, 84, 198, 0.05) 100%);
  z-index: 2;
}

.hero-content-front {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 30px;
  /* Reduced for tighter layout */
}

.hero-text-col {
  color: white;
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  /* Reduced from 24px */
  backdrop-filter: blur(5px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 10px #00E676;
  animation: pulse 2s infinite;
}

.hero-text-col h1 {
  font-size: 42px;
  /* Slightly reduced for better fit */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  /* Tighter spacing */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.text-highlight {
  color: #FFD54F;
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 15px;
  /* Slightly reduced */
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  /* Tighter spacing */
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  /* Reduced spacing */
}

.btn-primary-glow {
  background: #FF3D00;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 61, 0, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(255, 61, 0, 0.6);
  color: white;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: white;
  color: #0554c6;
  border-color: white;
}

.hero-social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0.9;
}

.hero-social-links .social-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.social-icons-hero {
  display: flex;
  gap: 10px;
}

.social-icons-hero a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icons-hero a:hover {
  background: white;
  color: #0554c6;
  transform: translateY(-3px);
  border-color: white;
}

.hero-card-col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-image-free {
  width: 100%;
  max-width: 380px;
  /* Slightly reduced */
  height: 340px;
  /* Slightly reduced */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Hero Promo Slider Container */
.hero-promo-slider {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Promo Images */
.hero-promo-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: floatUpDownDesktop 4s ease-in-out infinite;
  transform: rotate(-2deg);
  transition: opacity 0.8s ease-in-out, transform 0.3s ease;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-promo-image.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-promo-image:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Legacy support for single image */
.hero-image-free img:not(.hero-promo-image) {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: floatUpDownDesktop 4s ease-in-out infinite;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.hero-image-free img:not(.hero-promo-image):hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-nav-controls {
  display: none !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

@keyframes floatUpDownDesktop {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

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

@keyframes floatUpDownMobile {

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

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

/* ==========================================================================
   5. HERO RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section-modern {
    height: auto;
    min-height: 100vh;
    padding-bottom: 100px !important;
    /* Increased for better spacing */
  }

  .hero-section-modern::after {
    height: 60px !important;
    /* Adjusted curve height for tablet */
  }

  #tracking {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
    /* No curve needed */
  }

  #tracking .floating-box {
    margin-top: -120px !important;
    /* Adjusted overlap for tablet */
    margin-bottom: 30px !important;
  }

  #services {
    margin-top: 0 !important;
    /* No overlap needed */
    padding-top: 80px !important;
  }

  .hero-layout-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 110px;
  }

  .hero-text-col {
    padding-right: 0;
    margin: 0 auto;
    max-width: 700px;
  }

  .hero-text-col h1 {
    font-size: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-image-free {
    height: auto;
  }
}

@media (max-width: 576px) {
  .hero-section-modern {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 140px !important;
    /* Increased for better spacing */
  }

  .hero-section-modern::after {
    height: 50px !important;
    /* Adjusted curve height for mobile */
  }

  #tracking {
    margin-top: 0 !important;
    padding-top: 30px !important;
    padding-bottom: 40px !important;
    /* No curve needed */
  }

  #services {
    margin-top: 0 !important;
    /* No overlap needed */
    padding-top: 60px !important;
  }

  #tracking .floating-box {
    margin-top: -100px !important;
    /* Adjusted overlap for mobile */
    margin-bottom: 30px !important;
    padding: 30px 20px !important;
    /* Reduced padding for mobile */
  }

  .hero-overlay-mask {
    background: linear-gradient(180deg,
        rgba(3, 35, 80, 0.95) 0%,
        rgba(5, 84, 198, 0.6) 50%,
        rgba(5, 84, 198, 0.1) 100%);
  }

  .hero-content-front {
    position: relative;
    height: auto;
    display: block;
    inset: auto;
  }

  .hero-layout-grid {
    display: flex;
    flex-direction: column;
    padding-top: 110px;
    gap: 20px;
    text-align: center;
  }

  .hero-text-col {
    padding: 0 15px;
  }

  .hero-text-col h1 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 5px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .btn-primary-glow,
  .btn-outline-light {
    width: auto;
    flex: 1;
    padding: 12px 5px;
    font-size: 12px;
    white-space: nowrap;
    justify-content: center;
  }

  .hero-social-links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .hero-image-free {
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: 5;
    height: auto;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-promo-slider {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .hero-image-free img,
  .hero-promo-image {
    max-width: 220px !important;
    width: auto !important;
    height: auto !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) !important;
    animation: floatUpDownMobile 4s ease-in-out infinite !important;
    transform: rotate(0deg) !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .hero-promo-image.active {
    opacity: 1 !important;
    position: relative !important;
  }
}

/* ==========================================================================
   6. SERVICES SECTION (Moved to top, after tracking)
   ========================================================================== */
#services {
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%) !important;
  /* Blue gradient background - SAME AS TRACKING */
  padding-top: 35px !important;
  /* Increased padding for smoother spacing */
  margin-top: -120px !important;
  /* Increased overlap with tracking white curve for seamless transition */
  position: relative !important;
  z-index: 51 !important;
  /* Above tracking */
  color: white !important;
  /* Ensure all text is white */
}

#services .section-title {
  padding-top: 0px !important;
  /* Remove extra padding */
}

#services .section-title h2 {
  color: white !important;
  /* White text on blue background */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  /* Subtle shadow for depth */
}

#services .section-title p {
  color: rgba(255, 255, 255, 0.95) !important;
  /* White text with slight transparency */
  font-weight: 400 !important;
}

/* ==========================================================================
   7. TRACKING SECTION - WITH BLUE BACKGROUND (NO CURVE)
   ========================================================================== */

#tracking {
  margin-top: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  /* Reduced padding, no curve needed */
  position: relative !important;
  z-index: 50 !important;
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%) !important;
}

/* Remove curved bottom edge */
#tracking::after {
  display: none !important;
}

/* Tracking box styling - FLOATING ABOVE HERO */
#tracking .floating-box {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3) !important;
  /* Stronger shadow for floating effect */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
  background: white !important;
  position: relative !important;
  z-index: 100 !important;
  /* Ensure it's above everything */
  margin-top: -140px !important;
  /* Pull up to overlap hero - increased overlap */
  margin-bottom: 40px !important;
  /* Space below box */
  padding: 40px !important;
  border-radius: 20px !important;
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#tracking .floating-box:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35) !important;
  transform: translateY(-5px) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.tracking-section {
  padding-bottom: 80px;
}


/* ==========================================================================
   7. ADDITIONAL FIXES & OPTIMIZATIONS
   ========================================================================== */

/* Ensure proper backgrounds for all sections */
.wrapper-dark {
  background-color: var(--clr-dark-bg);
  position: relative;
  z-index: 2;
}

footer {
  background-color: #111;
  position: relative;
  z-index: 2;
}

/* Tracking Section spacing */
#tracking {
  padding-bottom: 60px;
  background: transparent;
}

/* REMOVED: Promo, Contact, Testimonials, Clients background overrides */
/* These sections now use zigzag pattern from zigzag-sections.css */

/* ==========================================================================
   8. BUTTON CONSISTENCY
   ========================================================================== */

.btn-hero-primary {
  background: #0554c6;
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(5, 84, 198, 0.3);
}

.btn-hero-primary:hover {
  background: #0442a0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(5, 84, 198, 0.5);
  color: white;
}

/* ==========================================================================
   9. ANIMATION PERFORMANCE OPTIMIZATION
   ========================================================================== */

/* Use GPU acceleration for animations */
.hero-slide-item,
.image-frame-modern,
.point-card,
.service-card {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   10. PRINT STYLES (Bonus)
   ========================================================================== */

@media print {

  .hero-section-modern,
  header,
  footer,
  .whatsapp-float,
  .hero-nav-controls {
    display: none !important;
  }

  .about-row-item {
    page-break-inside: avoid;
    background: white !important;
    color: black !important;
  }

  .about-row-item * {
    color: black !important;
  }
}


/* ==========================================================================
   11. ZIGZAG SECTIONS (WHY US, STEPS, NETWORK, FAQ) - FULL WIDTH
   ========================================================================== */

.zigzag-section {
  width: 100%;
  padding: 80px 0;
  position: relative;
}

/* Background Colors - Zigzag Pattern */
.zigzag-section.bg-blue {
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%);
  color: white;
}

.zigzag-section.bg-white {
  background: #ffffff;
  color: #1f2937;
}

/* Inner Container */
.zigzag-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section Headers - Blue Background */
.zigzag-section.bg-blue .section-header h2 {
  color: white;
}

.zigzag-section.bg-blue .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Section Headers - White Background */
.zigzag-section.bg-white .section-header h2 {
  color: #1f2937;
}

.zigzag-section.bg-white .section-header p {
  color: #6b7280;
}

/* Why Us Grid - Blue Background */
.zigzag-section.bg-blue .why-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.zigzag-section.bg-blue .why-item i {
  color: #FFD54F;
}

.zigzag-section.bg-blue .why-item h4 {
  color: white;
}

.zigzag-section.bg-blue .why-item p {
  color: rgba(255, 255, 255, 0.9);
}

/* Why Us Grid - White Background */
.zigzag-section.bg-white .why-item {
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.zigzag-section.bg-white .why-item i {
  color: #0554c6;
}

.zigzag-section.bg-white .why-item h4 {
  color: #1f2937;
}

.zigzag-section.bg-white .why-item p {
  color: #6b7280;
}

/* Steps Grid - Blue Background */
.zigzag-section.bg-blue .step-icon-box {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD54F;
  color: #FFD54F;
}

.zigzag-section.bg-blue .step-item:hover .step-icon-box {
  background: #FFD54F;
  color: #0554c6;
}

.zigzag-section.bg-blue .step-badge {
  background: #FFD54F;
  color: #0554c6;
}

.zigzag-section.bg-blue .step-item h4 {
  color: white;
}

.zigzag-section.bg-blue .step-item p {
  color: rgba(255, 255, 255, 0.85);
}

/* Steps Grid - White Background */
.zigzag-section.bg-white .step-icon-box {
  background: rgba(5, 84, 198, 0.1);
  border-color: #0554c6;
  color: #0554c6;
}

.zigzag-section.bg-white .step-item:hover .step-icon-box {
  background: #0554c6;
  color: white;
}

.zigzag-section.bg-white .step-badge {
  background: #0554c6;
  color: white;
}

.zigzag-section.bg-white .step-item h4 {
  color: #1f2937;
}

.zigzag-section.bg-white .step-item p {
  color: #6b7280;
}

/* Network Wrapper - Blue Background */
.zigzag-section.bg-blue .network-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zigzag-section.bg-blue .city-item {
  color: rgba(255, 255, 255, 0.85);
}

.zigzag-section.bg-blue .city-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.zigzag-section.bg-blue .city-item::before {
  color: #FFD54F;
}

/* Network Wrapper - White Background */
.zigzag-section.bg-white .network-wrapper {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.zigzag-section.bg-white .city-item {
  color: #6b7280;
}

.zigzag-section.bg-white .city-item:hover {
  color: #1f2937;
  background: white;
}

.zigzag-section.bg-white .city-item::before {
  color: #0554c6;
}

/* FAQ - Blue Background */
.zigzag-section.bg-blue .faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.zigzag-section.bg-blue .faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD54F;
}

.zigzag-section.bg-blue .faq-header {
  color: white;
}

.zigzag-section.bg-blue .faq-header i {
  color: #FFD54F;
}

.zigzag-section.bg-blue .faq-body {
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ - White Background */
.zigzag-section.bg-white .faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.zigzag-section.bg-white .faq-item:hover {
  border-color: #0554c6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.zigzag-section.bg-white .faq-header {
  color: #1f2937;
}

.zigzag-section.bg-white .faq-header i {
  color: #0554c6;
}

.zigzag-section.bg-white .faq-body {
  color: #6b7280;
}

/* Steps Grid - Remove old connecting line for blue sections */
.zigzag-section.bg-blue .steps-grid::before {
  background: rgba(255, 255, 255, 0.2);
}

.zigzag-section.bg-white .steps-grid::before {
  background: rgba(5, 84, 198, 0.15);
}

/* ==========================================================================
   12. CONTACT SECTION - TWO COLUMN LAYOUT (Info Left, Map Right)
   ========================================================================== */

.contact-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

/* LEFT COLUMN: Contact Information */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Clickable Contact Cards */
.contact-info-link {
  text-decoration: none;
  cursor: pointer;
}

.contact-info-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFD54F;
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Non-clickable cards (Address, Working Hours) */
.contact-info-item:not(.contact-info-link):hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #FFD54F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-link:hover .contact-info-icon {
  background: #FFD54F;
  transform: rotate(10deg) scale(1.1);
}

.contact-info-icon i {
  font-size: 24px;
  color: #FFD54F;
  transition: color 0.3s ease;
}

.contact-info-link:hover .contact-info-icon i {
  color: #0554c6;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.contact-info-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Hint Text - Only visible on clickable cards */
.contact-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #FFD54F;
  margin-top: 8px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.contact-hint::before {
  content: '→';
  font-size: 16px;
}

.contact-info-link:hover .contact-hint {
  opacity: 1;
  transform: translateY(0);
}

/* RIGHT COLUMN: Google Maps */
.contact-map-column {
  position: sticky;
  top: 100px;
}

.contact-map-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.map-label {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-label i {
  color: #FFD54F;
  font-size: 20px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-empty-state i {
  font-size: 48px;
  color: #FFD54F;
  margin-bottom: 16px;
  display: block;
}

.contact-empty-state p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   13. ZIGZAG RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
  .zigzag-section {
    padding: 60px 0;
  }

  .zigzag-inner {
    padding: 0 5%;
  }

  /* Contact Section Responsive */
  .contact-layout-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-column {
    position: relative;
    top: 0;
  }

  .contact-map-wrapper iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .zigzag-section {
    padding: 50px 0;
  }

  .zigzag-inner {
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

  /* Contact Section Mobile */
  .contact-layout-split {
    gap: 30px;
  }

  .contact-info-column {
    gap: 16px;
  }

  .contact-info-item {
    padding: 20px;
    gap: 16px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
  }

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

  .contact-info-text h4 {
    font-size: 16px;
  }

  .contact-info-text p {
    font-size: 14px;
  }

  .contact-link-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .contact-map-wrapper {
    padding: 16px;
  }

  .contact-map-wrapper iframe {
    height: 300px;
  }

  .map-label {
    font-size: 16px;
  }


}


.achievements-section {
  padding: 80px 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.achievement-item {
  text-align: center;
}

.achievement-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0554c6;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.achievement-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .achievements-section {
    padding: 60px 0;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }

  .achievement-number {
    font-size: 2.8rem;
  }

  .achievement-label {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .achievement-number {
    font-size: 2.4rem;
  }

  .achievement-label {
    font-size: 0.9rem;
  }
}


/* ==========================================================================
   CLIENTS SECTION - FULL WIDTH GRID
   ========================================================================== */

/* White Background Styling */
.clients-static-grid.bg-white .section-title h2 {
  color: #1f2937;
}

.clients-static-grid.bg-white .section-title p {
  color: #6b7280;
}

/* Blue Background Styling */
.clients-static-grid.bg-blue .section-title h2 {
  color: white;
}

.clients-static-grid.bg-blue .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

/* Common Styling */
.clients-static-grid .section-title {
  text-align: center;
  margin-bottom: 20px;
  /* reduced to bring grid closer to title */
}

.clients-static-grid .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.clients-static-grid .section-title p {
  font-size: 16px;
  margin: 0;
}

/* Full Width Grid Container */
/* Container utama untuk handle overflow */
.clients-outer-wrapper {
  width: 100%;
  overflow-x: auto;
  /* Kuncinya di sini */
  padding: 8px 0;
  /* reduced top/bottom padding */
  -webkit-overflow-scrolling: touch;
  /* Biar smooth di HP */
}

/* Hilangkan scrollbar default (opsional) atau percantik */
.clients-outer-wrapper::-webkit-scrollbar {
  height: 6px;
}

.clients-outer-wrapper::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}

.clients-grid-container {
  display: grid;
  /* Kita pakai minmax supaya logo nggak terlalu kecil pas zoom */
  grid-template-columns: repeat(8, minmax(140px, 1fr));
  gap: 0 20px;
  /* adjust row and column gap */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  /* reduced horizontal padding to shift content up visually */
  place-items: center;
  /* Min-width ini yang maksa scroll muncul pas zoom 150% */
  min-width: 1200px;
}

.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.client-logo-item:hover {
  transform: translateY(-5px);
}

.logo-inner {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f9fafb; Kasih background tipis biar rapi */
  border-radius: 8px;
  padding: 10px;
}

.client-logo-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  /* pin logo to top */
  justify-content: center;
  /* keep horizontal centering */
  width: 100%;
  aspect-ratio: 1.4 / 1;
  padding: 8px;
  /* reduce overall padding so image sits nearer top */
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: transparent;
  border: none;
}

.client-name {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
}

.and-others {
  margin-top: 20px;
  font-style: italic;
  color: #3b82f6;
  font-weight: bold;
  font-size: 18px;
}

/* Individual Client Logo Item - Clean Without Box */
.client-logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  padding: 0 15px;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: transparent;
  border: none;
}

.client-logo-item:hover {
  transform: translateY(-8px);
}

/* Logo - Always Colored, Fit to Container */
.client-logo-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0);
  opacity: 0.85;
}

.client-logo-item:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0);
}

/* Client Name - Hidden, shown as cursor tooltip */
.client-name {
  display: none;
}

/* Cursor Tooltip for Client Name */
.client-tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translate(-50%, -120%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.client-tooltip.show {
  opacity: 1;
  transform: translate(-50%, -140%);
}

.client-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .clients-grid-container {
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    padding: 0 50px;
  }
}

@media (max-width: 1200px) {
  .clients-grid-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .clients-static-grid .section-title h2 {
    font-size: 28px;
  }

  .clients-grid-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 0 30px;
  }

  .client-logo-item {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .clients-static-grid .section-title h2 {
    font-size: 26px;
  }

  .clients-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 20px;
  }

  .client-logo-item {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .clients-static-grid .section-title h2 {
    font-size: 22px;
  }

  .clients-static-grid .section-title p {
    font-size: 14px;
  }

  /* Mobile: Horizontal Scroll - Grid with 4 Rows */
  .clients-grid-container {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-columns: minmax(110px, 1fr);
    gap: 4px;
    /* Dikurangi dari 8px ke 4px untuk lebih rapat */
    padding: 0 16px 10px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .clients-grid-container::-webkit-scrollbar {
    height: 6px;
  }

  .clients-grid-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 0 16px;
  }

  .clients-grid-container::-webkit-scrollbar-thumb {
    background: #0554c6;
    border-radius: 10px;
  }

  .clients-grid-container::-webkit-scrollbar-thumb:hover {
    background: #0442a0;
  }

  .client-logo-item {
    padding: 6px;
    /* Dikurangi dari 10px ke 6px untuk lebih rapat */
    scroll-snap-align: start;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-logo-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}


/* ==========================================================================
   CONTACT SECTION - MODERN & PROFESSIONAL STYLE
   ========================================================================== */

.contact-modern {
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%);
  position: relative;
  overflow: hidden;
}

.contact-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Modern Two Column Layout */
.contact-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Left Column - Contact Info */
.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-modern-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modern-link {
  cursor: pointer;
}

.contact-modern-link:hover {
  transform: translateX(6px);
}

.contact-whatsapp:hover .contact-modern-text p {
  text-decoration: underline;
}

.contact-modern-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-modern-link:hover .contact-modern-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.contact-modern-icon i {
  font-size: 20px;
  color: white;
}

.contact-modern-text {
  flex: 1;
}

.contact-modern-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 4px 0;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.contact-modern-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.6;
}

/* Right Column - Modern Map Card */
.contact-map-modern {
  position: relative;
}

.map-card-modern {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.map-card-modern:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* Gradient Overlay on Top of Map */
.map-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(5, 84, 198, 0.4) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Open in Google Maps Button */
.map-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #0554c6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.map-open-btn:hover {
  background: white;
  color: #0442a0;
}

.map-open-btn i {
  font-size: 13px;
}

/* Company Description (Optional) */
.contact-description {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-description p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-modern-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-embed-wrapper {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-modern-layout {
    gap: 40px;
    margin-top: 40px;
  }

  .contact-info-modern {
    gap: 24px;
  }

  .contact-modern-icon {
    width: 44px;
    height: 44px;
  }

  .contact-modern-icon i {
    font-size: 18px;
  }

  .contact-modern-text h4 {
    font-size: 15px;
  }

  .contact-modern-text p {
    font-size: 14px;
  }

  .map-card-modern {
    border-radius: 16px;
  }

  .map-embed-wrapper {
    height: 320px;
  }

  .map-open-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .contact-description {
    margin-top: 40px;
    padding-top: 30px;
  }
}

@media (max-width: 576px) {
  .contact-info-modern {
    gap: 20px;
  }

  .contact-modern-item {
    gap: 14px;
  }

  .contact-modern-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .contact-modern-icon i {
    font-size: 16px;
  }

  .map-embed-wrapper {
    height: 280px;
  }

  .map-open-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .contact-description p {
    font-size: 14px;
  }
}


/* ==========================================================================
   ABOUT SECTION - FULL WIDTH DIAGONAL SPLIT DESIGN
   ========================================================================== */

.about-modern-slider {
  padding: 0;
  position: relative;
  overflow: hidden;
  color: white;
  background: #f9fafb;
}

.about-slider-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.about-slides-wrapper {
  position: relative;
  width: 100%;
  min-height: auto;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Full Width Split Layout */
.about-slide-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: auto;
  position: relative;
}

/* Left Side - Blue Background with Text */
.about-text-section {
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%);
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Diagonal Edge Effect */
.about-text-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 200px;
  height: 100%;
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%);
  transform: skewX(-8deg);
  z-index: -1;
}

.about-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  color: #FFD54F;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: white;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 90%;
}

.about-description p {
  margin-bottom: 14px;
}

.about-highlights {
  display: none;
  /* Hidden in full-width design for cleaner look */
}

.about-cta {
  display: none;
  /* Hidden in full-width design */
}

/* Right Side - Image */
.about-image-section {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons - Positioned at Bottom Edges */
.about-nav-btn {
  position: absolute;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.about-nav-btn:hover {
  background: white;
  border-color: white;
  transform: scale(1.1);
}

.about-nav-btn i {
  font-size: 18px;
  color: white;
  transition: color 0.3s ease;
}

.about-nav-btn:hover i {
  color: #0554c6;
}

.about-prev {
  left: 30px;
}

.about-next {
  right: 30px;
}

/* Dots Indicator - Bottom Center */
.about-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.about-dot.active {
  background: #FFD54F;
  border-color: white;
  width: 30px;
  border-radius: 10px;
}

/* Responsive Tablet */
@media (max-width: 992px) {
  .about-slides-wrapper {
    min-height: 500px;
  }

  .about-slide-inner {
    grid-template-columns: 50% 50%;
    min-height: 500px;
  }

  .about-text-section {
    padding: 60px 40px;
  }

  .about-text-section::after {
    right: -80px;
    width: 160px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-description {
    font-size: 15px;
    max-width: 100%;
  }

  .about-prev {
    left: 20px;
  }

  .about-next {
    right: 20px;
  }

  .about-dots {
    bottom: 35px;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .about-slides-wrapper {
    min-height: auto;
  }

  .about-slide-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Mobile: Image on Top */
  .about-image-section {
    order: 1;
    height: 400px;
    position: relative;
  }

  .about-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

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

  /* Mobile: Text Below with Gradient Overlay */
  .about-text-section {
    order: 2;
    padding: 50px 30px;
    background: linear-gradient(180deg, rgba(5, 84, 198, 0.95) 0%, rgba(4, 66, 160, 0.98) 100%);
    margin-top: -80px;
    position: relative;
    z-index: 3;
    border-radius: 30px 30px 0 0;
  }

  .about-text-section::after {
    display: none;
  }

  .about-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-subtitle {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  /* Navigation - Stay on Image Section */
  .about-nav-btn {
    width: 45px;
    height: 45px;
    bottom: 25px;
  }

  .about-nav-btn i {
    font-size: 16px;
  }

  .about-prev {
    left: 15px;
  }

  .about-next {
    right: 15px;
  }

  .about-dots {
    bottom: 30px;
  }
}

@media (max-width: 576px) {
  .about-image-section {
    height: 350px;
  }

  .about-text-section {
    padding: 40px 25px;
    margin-top: -60px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-description {
    font-size: 13px;
  }

  .about-nav-btn {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }

  .about-nav-btn i {
    font-size: 14px;
  }

  .about-prev {
    left: 10px;
  }

  .about-next {
    right: 10px;
  }

  .about-dots {
    bottom: 25px;
  }

  .about-dot {
    width: 8px;
    height: 8px;
  }

  .about-dot.active {
    width: 24px;
  }
}


/* ==========================================================================
   ACHIEVEMENTS SECTION - MODERN INFOGRAPHIC DESIGN
   ========================================================================== */

.achievements-modern {
  background: #f9fafb;
  padding: 80px 0;
  position: relative;
  margin-bottom: 100px;
}

.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.achievements-modern .section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0554c6;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.achievements-modern .section-title p {
  font-size: 17px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.achievements-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.achievement-card-modern {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.achievement-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0554c6, #0442a0);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.achievement-card-modern:hover::before {
  transform: scaleX(1);
}

.achievement-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(5, 84, 198, 0.15);
  border-color: #0554c6;
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  background: linear-gradient(135deg, #0554c6 0%, #0442a0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.achievement-card-modern:hover .achievement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(5, 84, 198, 0.3);
}

.achievement-icon i {
  font-size: 36px;
  color: white;
}

.achievement-number-modern {
  font-size: 48px;
  font-weight: 800;
  color: #0554c6;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1;
}

.achievement-label-modern {
  font-size: 18px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.achievement-desc {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 500;
}



/* Responsive Tablet */
@media (max-width: 992px) {
  .achievements-modern {
    padding: 60px 0;
  }

  .achievements-modern .section-title h2 {
    font-size: 34px;
  }

  .achievements-grid-modern {
    gap: 30px;
  }

  .achievement-card-modern {
    padding: 40px 25px;
  }

  .achievement-icon {
    width: 70px;
    height: 70px;
  }

  .achievement-icon i {
    font-size: 32px;
  }

  .achievement-number-modern {
    font-size: 42px;
  }

  .achievement-label-modern {
    font-size: 17px;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .achievements-modern {
    padding: 50px 0;
  }

  .achievements-modern .section-title h2 {
    font-size: 30px;
  }

  .achievements-modern .section-title p {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .achievements-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .achievement-card-modern {
    padding: 35px 25px;
  }

  .achievement-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .achievement-icon i {
    font-size: 28px;
  }

  .achievement-number-modern {
    font-size: 38px;
  }

  .achievement-label-modern {
    font-size: 16px;
  }

  .achievement-desc {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .achievement-number-modern {
    font-size: 36px;
  }

  .achievement-label-modern {
    font-size: 15px;
  }
}

/* =========================================
   UPDATE MOBILE ORDERING (IMAGE ABOVE BUTTON)
   ========================================= */
@media (max-width: 576px) {

  /* 1. Pastikan container utama Flex Column */
  .hero-layout-grid {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    /* Sesuaikan jarak atas */
    gap: 0;
    /* Kita atur gap manual di elemennya */
  }

  /* 2. TEKNIK KUNCI: 'Hancurkan' pembungkus .hero-text-col secara visual 
     agar anak-anaknya (h1, p, btn) bisa diatur urutannya terpisah */
  .hero-text-col {
    display: contents;
  }

  /* --- GROUP 1: ELEMEN TEKS (Paling Atas) --- */

  /* Badge, Judul H1, dan Deskripsi tetap di urutan 1 */
  .hero-badge,
  .hero-text-col h1,
  .hero-desc {
    order: 1;
    /* Karena display:contents menghilangkan padding induk, kita pasang lagi di sini */
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
  }

  /* --- GROUP 2: GAMBAR (Di Tengah/Di Atas Button) --- */

  .hero-card-col {
    order: 2;
    /* Urutan kedua, setelah deskripsi */
    margin-top: 10px;
    margin-bottom: 25px;
    /* Jarak antara gambar dan tombol di bawahnya */
    width: 100%;
    height: auto;
    z-index: 5;
  }

  /* Reset ukuran gambar untuk mobile agar pas di tengah */
  .hero-image-free {
    max-width: 260px;
    /* Sesuaikan ukuran gambar mobile */
    margin: 0 auto;
  }

  /* --- GROUP 3: TOMBOL (Di Bawah Gambar) --- */

  .hero-actions {
    order: 3;
    /* Urutan ketiga */
    justify-content: center;
    margin-bottom: 25px;
    padding-left: 20px;
    /* Kembalikan padding */
    padding-right: 20px;
    position: relative;
    z-index: 20;
    /* Pastikan tombol di atas elemen lain agar bisa diklik */
    width: 100%;
    gap: 12px;
  }

  /* --- GROUP 4: SOCIAL MEDIA (Paling Bawah) --- */

  .hero-social-links {
    order: 4;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }


  /* Pastikan letakkan di file CSS utama kamu */

  .img-optimized {
    width: 100%;
    /* Mengikuti lebar container */
    height: auto;
    /* Menjaga proporsi */
    object-fit: cover;
    /* INI KUNCINYA: Memotong gambar besar agar pas di kotak kecil tanpa gepeng */
    display: block;
    aspect-ratio: attr(width) / attr(height);
    /* Mencegah layout shifting */
  }

}