/* Warna Oranye Utama */
:root {
  --coopn-orange: #FF6C0E;
  --coopn-purple: #721BDB;
}

/* Styling Link Navbar */
.navbar-nav .nav-link {
  color: #333; /* Warna teks default abu gelap */
  font-weight: 500;
  font-size: 1.1rem;
  padding-bottom: 5px; /* Memberi ruang untuk garis bawah */
  transition: all 0.3s ease;
  
  width: fit-content;
}

/* Styling saat Link Active */
.navbar-nav .nav-link.active {
  color: var(--coopn-orange) !important;
  border-bottom: 3px solid var(--coopn-orange); /* Garis bawah oranye */
}

/* Efek Hover (Opsional: supaya interaktif) */
.navbar-nav .nav-link:hover {
  color: var(--coopn-orange);
}

/* Styling Tombol Contact Us */
.btn-contact {
  border-color: #000; /* Border hitam tipis */
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #000;
  color: #fff;
}

/* Menghilangkan border default toggler saat diklik */
.navbar-toggler:focus {
  box-shadow: none;
}

.main-title {
  line-height: 1.2;
}

.text-purple {
  color: var(--coopn-purple);
}

.text-orange {
  color: var(--coopn-orange);
}

/* Tombol Oranye dengan Gradient */
.btn-schedule {
  background: linear-gradient(90deg, #f7931e 0%, #ffb347 100%);
  color: white;
  border: none;
  border-radius: 15px; /* Kurva kotak seperti di gambar */
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-schedule:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

/* Penyesuaian Gambar Hero */
.hero-image {
  max-width: 110%; /* Sedikit meluap ke kanan agar terlihat dinamis */
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-image {
    max-width: 100%;
    margin-top: 2rem;
  }
  .main-title {
    font-size: 2.5rem;
  }
  #contact-section .col-lg-7 {
      margin-top: 2rem;
  }
}

/* Container baris tetap menggunakan start agar card tidak saling tarik-menarik */
.row.g-4 {
  align-items: start;
}

.feature-card {
  min-height: 250px; 
  
  display: flex;
  flex-direction: column;
  justify-content: center; /* Menjaga konten tetap di tengah secara vertikal saat tertutup */
  align-items: center;
  border-radius: 20px;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

/* Efek Hover Card */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  z-index: 10; /* Agar card yang terbuka menutupi bayangan tetangganya */
  /* Card akan bertambah tinggi secara otomatis mengikuti konten p yang muncul */
}

/* Styling Separator */
.separator {
  height: 2px;
  width: 0;
  background-color: var(--coopn-orange);
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.feature-card:hover .separator {
  width: 50px;
  margin-top: 15px;
  margin-bottom: 10px;
  opacity: 1;
}

/* Styling Teks Deskripsi */
.feature-text {
  font-size: 0.85rem;
  color: #6c757d;
  opacity: 0;
  max-height: 0;
  margin: 0 !important; /* Hilangkan margin default agar tidak merusak tinggi awal */
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.feature-card:hover .feature-text {
  opacity: 1;
  max-height: 150px; /* Nilai maksimal yang cukup untuk teks */
  margin-top: 5px !important;
}

.feature-icon-wrapper {
  height: 80px;              /* ← TURUNKAN DARI 100 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper img {
  width: auto;
  height: 100%;
  max-height: 80px;          /* ← INI KUNCINYA */
  object-fit: contain;
}

/* Tambahan: Pastikan Card tidak menarik teman sebarisnya (Solusi sebelumnya) */
.row.g-4 {
  align-items: start; /* Mencegah stretch tinggi ke card lain */
}

/* Penyesuaian judul agar transisinya sinkron */
.feature-card h5 {
  transition: color 0.3s ease;
}

.feature-card:hover h5 {
  color: var(--coopn-orange); /* Judul berubah oranye saat di-hover */
}

/* Warna khusus Flexagift */
.text-purple {
  color: var(--coopn-purple) !important; /* Ungu brand */
}

/* Branding & Typography */
.flexagift-brand p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: -10px;
}

/* Container Visual */
.voucher-visual-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.main-voucher-img {
  width: 100%;
  max-width: 500px;
  z-index: 2;
  position: relative;
}

/* Ukuran Umum Bintang */
.decoration-star {
  position: absolute;
  z-index: 4;
  width: 100%; /* Sesuaikan ukuran bintang */
  max-width: 100px;
}

/* Posisi Bintang Kiri */
.star-left {
  top: 30%;
  left: -5%;
}

/* Posisi Bintang Kanan */
.star-right {
  top: 40%;
  right: -5%;
  width: 110px; /* Sedikit lebih besar */
  opacity: 0.8;
}

/* Posisi Kado */
.decoration-gift {
  position: absolute;
  bottom: 5%;
  left: 0;
  z-index: 5;
  width: 125px;
}

/* Animasi Tambahan untuk Bintang */
.floating-slow {
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .decoration-star { width: 60px; }
  .star-left { left: 0; }
  .star-right { right: 0; }
  .decoration-gift { width: 80px; }
}

#top-vouchers-section {
    background: linear-gradient(180deg, #ffffff 0%, hsl(269, 100%, 95%) 100%); /* Efek ungu pudar di bawah */
}

/* Container Utama */
.voucher-stack-container {
    max-width: 500px;
    padding: 20px;
    z-index: 2;
}

/* Badge Kecil (Atas & Bawah) */
.v-badge-small {
    background: white;
    padding: 10px 40px;
    border-radius: 50px;
    color: #d1c4e9; /* Warna ungu pudar sesuai mockup */
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    letter-spacing: 1px;
}

/* Badge Utama (Tengah - LAKUEMAS) */
.v-badge-main {
    background: white;
    padding: 20px 60px;
    border-radius: 50px;
    color: var(--coopn-purple);
    font-weight: 900;
    font-size: 2rem; /* Lebih besar dari yang lain */
    box-shadow: 0 15px 35px rgba(94, 44, 237, 0.1) !important;
    border: none;
    z-index: 5;
    margin: 10px 0;
}

/* Dekorasi Mengambang */
.deco-item {
    position: absolute;
    z-index: 1;
    width: 150px;
    pointer-events: none;
}

.deco-star {
    top: -20%;
    left: -20%;
    width: 100px;
}

.deco-v-left {
    bottom: 20%;
    left: -30%;
    transform: rotate(-55deg);
}

.deco-v-right {
    /* top: 40%; */
    right: -30%;
    transform: rotate(5deg);
}

.solution-visual-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 50px auto;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-container {
    position: relative;
    z-index: 2;
    width: 50%; /* Memberi ruang untuk kartu di kiri dan kanan */
}

.main-mockup {
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    background: transparent;
    width: 300px; 
    min-height: 160px; /* Tingkatkan sedikit min-height agar ruang di bawah lebih luas */
    z-index: 3;
    display: flex;
    /* UBAH INI: Agar konten mepet ke bawah */
    align-items: flex-end; 
    border: none;
    overflow: visible;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* PENTING: Aktifkan kembali height 100% agar gambar kartu penuh */
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 3;
    /* PENTING: Padding atas diperkecil, padding bawah dijaga 
       agar teks tidak menabrak lekukan gambar kartu */
    padding: 10px 25px 30px 35px; 
    text-align: left;
    width: 100%;
}

.small-text {
    font-size: 0.82rem; 
    line-height: 1.4;
    margin: 0;
    font-weight: 600; /* Sedikit lebih tebal agar terbaca di atas gambar */
    color: white;
    max-width: 95%; 
    text-shadow: none !important;
}

.card-icon-wrapper {
    background-color: var(--coopn-orange);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

/* Geser posisi agar tidak menutupi HP di tengah */
.card-top-left { top: 5%; left: -10%; }
.card-bottom-left { bottom: 5%; left: -10%; }
.card-bottom-right { top: 38%; right: -10%; }

.orange-bg {
    background-color: var(--coopn-orange);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling Garis SVG agar berada di belakang gambar & kartu */
.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Responsif Mobile: Kartu bertumpuk biasa */
@media (max-width: 991px) {
    .solution-visual-wrapper {
        flex-direction: column;
    }
    .floating-card {
        position: relative !important;
        width: 100%;
        margin-bottom: 20px;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    .main-image-container {
        width: 100%;
        margin-bottom: 30px;
    }
}

.features-container {
  max-width: 850px; /* Nilai ini menjaga agar grid tetap rapat */
}

/* Lingkaran Ikon */
.icon-circle {
  width: 90px; 
  height: 90px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  transition: all 0.3s ease;
  border: 1px solid #f2f2f2;
  padding: 18px; /* Padding dalam untuk mengatur besar kecilnya gambar di dalam lingkaran */
}

.icon-circle img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Judul Fitur */
.feature-title {
  font-size: 0.85rem;
  color: #4a4a4a;
  line-height: 1.3;
  max-width: 130px; /* Agar teks memanjang ke bawah jika terlalu panjang */
  margin: 0 auto;
}

/* Efek Hover (Optional) */
.icon-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(94, 44, 237, 0.1) !important;
  border-color: var(--coopn-purple);
}

/* Container Background */
.product-feature-section {
    background-color: #ffffff;
}

/* Base Nav Styling */
.custom-product-nav {
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    gap: 15px;
    border: none !important;
    padding-top: 30px; 
    align-items: flex-end; /* Menjaga semua item tetap di dasar garis */
}

.custom-product-nav .nav-link {
    border: none !important;
    background: transparent !important;
    color: #555555 !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 25px;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center; /* Center teks secara vertikal */
    justify-content: center; /* Center teks secara horizontal */
    min-height: 50px; /* Tentukan tinggi minimal agar konsisten */
    z-index: 1;
}

/* Pseudo-element sebagai Background Ungu */
.custom-product-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border-radius: 12px 12px 0 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1; /* Di belakang teks */
    border-bottom: 5px solid transparent;
}

/* Span untuk Teks */
.custom-product-nav .nav-link span {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

/* Gaya ACTIVE */
.custom-product-nav .nav-link.active {
    color: #ffffff !important;
}

.custom-product-nav .nav-link.active::before {
    background-color: var(--coopn-purple) !important;
    border-bottom: 5px solid #00d1ff !important;
    transform: translateY(-12px); /* Kotak ungu naik */
    box-shadow: 0 5px 15px rgba(112, 48, 160, 0.2);
}

/* Teks ikut naik dengan nilai yang SAMA dengan background agar tetap di tengah */
.custom-product-nav .nav-link.active span {
    transform: translateY(-12px); 
}

/* Hover effect */
.custom-product-nav .nav-link:hover:not(.active) span {
    color: var(--coopn-purple);
    transform: translateY(-3px);
}

/* Memperhalus perpindahan antar konten tab */
.tab-pane.fade {
    transition: opacity 0.3s linear, transform 0.3s ease-out;
    transform: translateY(10px);
}
.tab-pane.fade.show {
    transform: translateY(0);
}


.custom-security-img {
    /* Membuat sudut gambar sedikit melengkung agar modern */
    border-radius: 15px; 
    
    /* Memberikan bayangan halus agar gambar terlihat "mengambang" dari background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    /* Memastikan gambar tidak pecah dan responsif */
    width: 100%;
    height: auto;
    
    transition: transform 0.3s ease;
}

.custom-security-img:hover {
    transform: scale(1.01);
}

#client-partner-section .client-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(1); 
  mix-blend-mode: multiply;
}

#client-partner-section .client-logo:hover {
  transform: scale(1.15) translateY(-5px);
  filter: brightness(1.1); 
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12)) brightness(1.05);
  position: relative;
  z-index: 10;
}

/* Memastikan gambar responsif */
.presence-map-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Efek saat kursor di arahkan ke area peta */
.presence-map-wrapper:hover .presence-map-img {
  transform: scale(1.02);
  opacity: 0.95;
}

#contact-section {
  background-color: var(--coopn-purple);
}

/* Styling Input Form */
#contact-section .custom-input {
    background-color: #f1f1f1;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: #333;
}

#contact-section .custom-input::placeholder {
    color: #999;
}

/* Styling Tombol Send Message */
#contact-section .btn-outline-light {
    border-width: 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#contact-section .btn-outline-light:hover {
    background-color: white;
    color: var(--coopn-purple); /* Warna ungu brand */
}

/* Update jarak antar item contact agar lebih seimbang karena hanya 2 poin */
#contact-section .d-flex.align-items-start.mb-5 {
    margin-bottom: 3rem !important; /* Jarak antar poin diperlebar */
}

/* Memperhalus tampilan ikon kecil di dalam teks support */
#contact-section .text-white i {
    font-size: 0.85rem;
    vertical-align: middle;
    color: var(--coopn-orange); /* Beri sentuhan oranye pada ikon kecil agar manis */
}

/* Styling Lingkaran Ikon */
.contact-icon-circle {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coopn-purple); /* Warna ungu brand */
    font-size: 1.2rem;
    flex-shrink: 0;
}

#footer {
  background-color: var(--coopn-orange);
}

.voucher-scroll-wrapper {
    height: 380px; 
    position: relative;
    /* Ubah ke auto/scroll agar bisa discroll manual */
    overflow-y: auto; 
    scrollbar-width: none; /* Sembunyikan scrollbar Firefox */
    -ms-overflow-style: none; /* Sembunyikan scrollbar IE/Edge */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.voucher-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar Chrome/Safari */
}

.voucher-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Hapus animasi CSS scroll-vertical karena kita pakai JS sekarang */
    will-change: transform;
}

.v-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.v-badge-small {
    display: flex;            /* Gunakan flex agar gambar ke tengah */
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    background: white;
    
    /* Atur lebar & tinggi tetap agar seragam */
    width: 220px;             
    height: 60px;
    
    padding: 10px 20px;       /* Kurangi padding manual karena sudah pakai width/height */
    border-radius: 50px;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;         /* Biar gambar gak keluar jalur */
}

/* Styling Gambar di dalam Badge */
.img-v-badge {
    width: 100%;
    object-fit: contain;
}

.img-v-badge-2 {
    width: 100%;
    max-width: 150px;
    object-fit: contain;
}

/* Pastikan saat aktif gambar tetap terlihat jelas */
.v-badge-small.active {
    opacity: 1;
    transform: scale(1.15);
    border-color: #5e2ced44;
    box-shadow: 0 15px 35px rgba(94, 44, 237, 0.2);
}

.btn-flexagift {
    background-color: var(--coopn-purple); /* Warna ungu brand */
    color: white;
    border-radius: 50px; /* Membuat tombol rounded/pill */
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
}

.btn-flexagift:hover {
    background-color: #4b22bd; /* Ungu sedikit lebih gelap saat hover */
    color: white;
    transform: translateY(-3px); /* Efek sedikit naik saat hover */
    box-shadow: 0 10px 20px rgba(94, 44, 237, 0.3) !important;
}

.btn-flexagift:active {
    transform: translateY(0);
}

/* Animasi icon panah saat hover */
.btn-flexagift i {
    transition: transform 0.3s ease;
}

.btn-flexagift:hover i {
    transform: translateX(5px);
}

/* Styling Default (Desktop) */
.security-banner-img {
  width: 100%;
  max-width: 900px; /* Batas maksimal di layar besar */
  height: auto;
  margin: 0 auto;
}

/* Styling khusus untuk stack kartu di mobile */
@media (max-width: 768px) {
  .v-badge-main {
    font-size: 1.5rem;
    padding: 15px 40px;
  }

  .deco-item {
    display: none; /* Hilangkan ornamen di mobile agar tidak berantakan */
  }
  
  .icon-circle {
    width: 75px;
    height: 75px;
    padding: 15px;
  }
  
  .feature-title {
    font-size: 0.75rem;
  }
  
  #regional-presence-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  #client-partner-section .client-logo {
    max-height: 50px;   /* atau 55px / 60px */
    width: auto;
  }

  #client-partner-section .client-logo-wrapper {
    gap: 1.5rem; /* sedikit diperkecil biar rapat */
  }

  .mobile-solution-stack {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Jarak antar kotak */
    padding: 0 15px;
  }

  .mobile-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease;
    /* border: 1px solid #f0f0f0; */
  }

  /* Efek sedikit miring atau offset agar terlihat dinamis (opsional) */
  .mobile-card:nth-child(even) {
    transform: rotate(1deg);
  }

  .mobile-card:nth-child(odd) {
    transform: rotate(-1deg);
  }

  .mobile-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Memberikan jarak antar baris gambar di dalam tab */
  .tab-pane .row > div:first-child {
    margin-bottom: 2rem; /* Jarak antara gambar atas dan gambar bawah/teks */
  }

  /* Mengatur ulang ukuran gambar agar tidak terlalu besar di layar kecil */
  .bank-logo {
    max-width: 350px !important; /* Ukuran lebih proporsional untuk HP */
    margin-bottom: 10px;
  }

  .bank-logo-2{
    max-width: 280px !important; /* Ukuran lebih proporsional untuk HP */
    margin-bottom: 10px;
  }

  /* Khusus untuk tab eVouchers & Giftcard yang berisi teks */
  .product-description {
    margin: 0 auto;
    padding-top: 10px;
    font-size: 0.95rem;
  }

  .security-banner-img {
    max-width: 100% !important; /* Paksa mengikuti lebar layar HP */
    padding: 0 10px; /* Opsional: sedikit padding agar tidak nempel layar */
  }

  #security-certification .container {
    padding-left: 0;
    padding-right: 0; /* Agar gambar bisa benar-benar full ke tepi jika mau */
  }
}

/* Pastikan wrapper utama tidak membatasi tinggi di mobile */
@media (max-width: 991px) {
  .solution-visual-wrapper {
      padding: 20px 0;
      margin: 20px auto;
      display: block; /* Matikan flex agar stack vertikal normal */
  }
}

/* background ungu muda */
.product-tabs-bg {
  /* background-color: #faf8fe; */

  /* padding CUKUP buat tab */
  padding-top: 3rem;
  padding-bottom: 0; /* penting: stop tepat di nav */
}

/* hilangkan gap misterius */
.product-tabs-bg .row {
  margin-bottom: 0;
}

/* pastikan nav tidak nambah tinggi */
.custom-product-nav {
  margin-bottom: 0;
}

/* Card saat Tidak Aktif: Border Oranye Tebal */
.custom-solution-accordion .accordion-item {
  border: 0.5px solid var(--coopn-orange) !important;
  border-radius: 15px !important;
  overflow: hidden;
  position: relative;
  background-color: white;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* Header Card: Bold & Warna Ungu */
.custom-solution-accordion .accordion-button {
  font-weight: 800 !important;
  font-size: 1.05rem;
  color: var(--coopn-purple);
  padding: 1rem 1.25rem;
  box-shadow: none !important;
  background-color: white;
}

/* Status Active: Header jadi Ungu, Border jadi Soft */
.custom-solution-accordion .accordion-item:has(.show) {
  border: 1px solid var(--inactive-gray) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.custom-solution-accordion .accordion-button:not(.collapsed) {
  background-color: var(--coopn-purple) !important;
  color: white !important;
}

/* Progress Bar: Menempel di dasar card putih */
.progress-container {
  height: 5px;
  background: #f0f0f0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
}

/* Tampilkan progress hanya di item yang aktif */
.accordion-item:has(.show) .progress-container {
  display: block;
}

.progress-bar-orange {
  height: 100%;
  background: var(--coopn-orange);
  width: 0%;
  transition: none; /* Penting agar tidak ada delay saat pause */
}

/* Custom Panah Accordion */
.custom-solution-accordion .accordion-button::after {
  filter: invert(18%) sepia(88%) saturate(3753%) hue-rotate(274deg) brightness(92%) contrast(105%);
}
.custom-solution-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.animate-map {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease-out; /* Durasi animasi muncul */
}

/* Keadaan setelah script jalan: muncul dan naik ke posisi asli */
.animate-map.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-col {
    display: flex;
}

/* Content dalam column */
.contact-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Company name highlight */
.company-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Optional: biar spacing lebih rapih */
#contact-section h6.text-uppercase {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    opacity: 0.85;
}