/* ======================================================

   BASE STYLE

====================================================== */

:root {

  --accent: #673ab7;

  --text: #222;

  --muted: #777;

  --bg: #fff;

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: "Inter", sans-serif;

  color: var(--text);

  background: var(--bg);

  line-height: 1.6;

  overflow-x: hidden;

}



img, video {

  max-width: 100%;

  height: auto;

  display: block;

}



.container {

  width: 90%;

  max-width: 1200px;

  margin: 0 auto;

}



/* ======================================================

   HEADER (Header ori)

====================================================== */

header {

  background: var(--bg);

  position: fixed;

  width: 100%;



  top: 0;

  left: 0;

  z-index: 1000;

  box-shadow: 0 2px 4px rgba(0,0,0,0.05);

}



.navbar {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 0;
  

}



.brand img {

  height: 45px;

}



.nav-icons {

  display: flex;

  align-items: center;

  gap: 18px;

}



.icon-btn {

  background: none;

  border: none;

  cursor: pointer;

  padding: 4px;

  transition: opacity 0.3s;

}



.icon-btn:hover {

  opacity: 0.7;

}



/* ======================================================

   MENU OVERLAY (SMOOTH + ZOOM)

====================================================== */

#menu-overlay {

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.95);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: scale(1.03) translateY(-10px);

  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),

              opacity 0.45s ease, visibility 0.45s ease;

  z-index: 1200;

}



#menu-overlay.active {

  opacity: 1;

  visibility: visible;

  pointer-events: all;

  transform: scale(1) translateY(0);

}



#menu-overlay .menu-content {

  text-align: center;

  width: 90%;

  max-width: 400px;

}



#menu-overlay ul {

  list-style: none;

}



#menu-overlay ul li {

  margin: 10px 0;

}



#menu-overlay a {

  color: #fff;

  text-decoration: none;

  font-size: 20px;

  font-weight: 500;

  transition: color 0.3s;

}



#menu-overlay a:hover {

  color: var(--accent);

}



/* Tombol close */

#menu-close {

  position: absolute;

  top: 30px;

  right: 40px;

  font-size: 30px;

  background: none;

  border: none;

  color: #fff;

  cursor: pointer;

  transition: transform 0.3s ease;

}



#menu-close:hover {

  transform: rotate(90deg);

}



/* ======================================================

   SEARCH OVERLAY (SMOOTH + ZOOM)

====================================================== */

#search-overlay {

  position: fixed;

  inset: 0;

  background: rgba(255,255,255,0.98);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: scale(1.03) translateY(-10px);

  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),

              opacity 0.45s ease, visibility 0.45s ease;

  z-index: 1300;

}



#search-overlay.active {

  opacity: 1;

  visibility: visible;

  pointer-events: all;

  transform: scale(1) translateY(0);

}



#search-overlay input {

  width: 80%;

  max-width: 500px;

  padding: 14px 18px;

  font-size: 18px;

  border: 2px solid var(--accent);

  border-radius: 6px;

  outline: none;

}



#search-close {

  position: absolute;

  top: 40px;

  right: 60px;

  font-size: 30px;

  background: none;

  border: none;

  color: var(--accent);

  cursor: pointer;

  transition: transform 0.3s ease;

}



#search-close:hover {

  transform: rotate(90deg);

}



/* ======================================================

   SUBMENU

====================================================== */

.submenu {

  display: block;

  overflow: hidden;

  max-height: 0;

  opacity: 0;

  transition: max-height 0.4s ease, opacity 0.4s ease;

}



.submenu.open {

  max-height: 400px;

  opacity: 1;

}



.submenu li a {

  font-size: 16px;

  color: #ccc;

}



.submenu li a:hover {

  color: var(--accent);

}



/* ======================================================

   HERO VIDEO (FULL RESPONSIVE)

====================================================== */

.hero-video {

  position: relative;

  width: 100%;

  min-height: 100vh;

  margin-top: 70px;

  overflow: hidden;

  background: #fff;

}



.video-container {

  position: absolute;

  inset: 0;

  overflow: hidden;

  background: #fff;

}



.video-container video, .video-container img {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%) scale(1.1);

  background-color: #fff;

  aspect-ratio: 16 / 9;
  
  /* Hero Brightness */
  filter: brightness(0.6); 
  transition: filter 0.5s ease; 

}



.hero-text {

  position: absolute;

  bottom: 8%;

  left: 8%;

  color: #fff;

  text-shadow: 0 2px 8px rgba(0,0,0,0.5);

}



.hero-text h1 {

  font-size: 2.2rem;

  font-weight: 700;

}



/* ======================================================

   TWO COLUMN SECTION

====================================================== */

.two-col {

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

  margin: 100px auto;

  width: 90%;

  max-width: 1200px;

}



.section-title {

  color: var(--accent);

  font-size: 1.4rem;

  margin-bottom: 10px;

}



.product-text p {

  margin-bottom: 20px;

}



.btn.secondary {

  display: inline-block;

  padding: 10px 18px;

  color: var(--accent);

  border: 2px solid var(--accent);

  border-radius: 8px;

  text-decoration: none;

  transition: all 0.3s;

  margin-top: 16px;

}



.btn.secondary:hover {

  background: var(--accent);

  color: #fff;

}



/* ======================================================

   COUNTER

====================================================== */

.counter-row {

  display: flex;

  justify-content: center;

  gap: 65px;

  text-align: center;

  flex-wrap: wrap;

  margin: 140px 0;

}



.counter h3 {



  font-size: 3rem; 

  color: var(--accent);



  margin-bottom: 1px; 

}



/* Pastikan teks (Business Partners) memiliki ukuran yang wajar, 

   jika tag <p> tidak memiliki gaya bawaan, tambahkan ini: */

.counter p {

  font-size: 1rem; /* Ukuran font standar */

  margin-top: 0;

}



.counter h3::after {

    content: "+"; 

    margin-left: 5px; 

}



/* ======================================================

   CARD BERITA (SMOOTH VERSION)

====================================================== */

.card-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));

  gap: 20px;

  margin: 30px 0 100px;

}



.card {

  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 2px 10px rgba(0,0,0,0.06);

  transition: all 0.4s ease;

  cursor: pointer;

  transform: translateY(0);

}



.card img {

  width: 100%;

  height: 180px;

  object-fit: cover;

  border-bottom: 1px solid #eee;

  transition: transform 0.4s ease;

}



.card h4 {

  padding: 16px;

  font-size: 1.1rem;

  color: #222;

  transition: color 0.3s ease;

}



.card p {

  padding: 0 16px 16px;

  color: var(--muted);

  font-size: 0.9rem;

}



/* Hover halus */

.card:hover {

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  transform: translateY(-6px);

}



.card:hover img {

  transform: scale(1.05);

}



.card:hover h4 {

  color: var(--accent);

}



/* ======================================================

   FOOTER

====================================================== */

footer {

  background: #fafafa;

  padding: 40px 0;

  border-top: 1px solid #eee;

}



.footer-row {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 40px;

}



/* ======================================================

   REVEAL ANIMATION

====================================================== */

[data-reveal] {

  opacity: 0;

  transform: translateY(30px);

  transition: all 0.6s ease;

}



[data-reveal].revealed {

  opacity: 1;

  transform: none;

}



/* ======================================================

   RESPONSIVE

====================================================== */

@media (max-width: 900px) {

  .two-col {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    width: 92%;

    max-width: 480px;

    margin: 60px auto;

    gap: 24px;

  }



  .product-text p {

    margin-bottom: 24px;

  }



  .product-image img {

    width: 100%;

    height: auto;

    border-radius: 10px;

  }



  .hero-text h1 {

    font-size: 1.6rem;

  }



  .hero-video {

    min-height: 85vh;

  }



  .footer-row {

    flex-direction: column;

  }

}





/* ======================================================

   ENHANCEMENTS (NAVBAR DESKTOP + HERO CENTER + ROUNDED IMAGE)

   Safe to append at the end of current CSS

====================================================== */



/* ===== Desktop navbar menu (non-interfering) ===== */

.main-nav {

  display: none;

}



@media (min-width: 992px) {

  .main-nav {

    display: block;

  }



  .main-nav ul {

    display: flex;

    align-items: center;

    gap: 28px;

    list-style: none;

  }



  .main-nav ul li a {

    text-decoration: none;

    color: var(--text);

    font-weight: 515;

    font-size: 16px;

    transition: color 0.3s ease;

  }



  .main-nav ul li a:hover {

    color: var(--accent);

  }

}



/* ===== Hero text centered with white box ===== */

.hero-text.hero-centered {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  width: 100%;

}



.hero-box {

/* Mengubah latar belakang (fill) menjadi transparan penuh */

    background: transparent;

    

    /* Menambahkan border (outline) putih dengan ketebalan 2px */

    border: 5px solid white; 

    

    /* Menghapus box-shadow agar terlihat lebih bersih (opsional) */

    box-shadow: none; 

    

    /* Menjaga padding yang sudah ada */

    padding: 22px 36px;

    

    /* Properti lain dipertahankan */

    border-radius: 10px;

    display: inline-block;

    max-width: 90%;

    transition: opacity 0.6s ease;

}



.hero-box h1 {

/* Mengubah warna teks menjadi putih */

    color: white; 

    

    /* Mengubah text-shadow agar teks putih tetap terbaca di atas video */

    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); 

    

    /* Properti lain dipertahankan */

    font-size: clamp(1.8rem, 3vw, 3rem);

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;

}



/* ===== Hero video responsive fix (no gap) ===== */

.hero-video {

  margin-top: 70px;

  background: #fff;

}

.video-container {

  background: #fff;

}

.video-container video {

  object-fit: cover;

  width: 100%;

  height: 100%;

  background: #fff;

}



/* ===== Product section refinement ===== */

.two-col {

  gap: 70px;

  margin: 100px auto;

}



.product-image img {

  border-radius: 12px;

  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);

}



.product-text .btn {

  margin-top: 28px;

}



/* ===== Responsive adjustment ===== */

@media (max-width: 900px) {

  .hero-box {

    padding: 16px 22px;

  }

  .hero-box h1 {

    font-size: 1.6rem;

  }

  .two-col {

    gap: 40px;

  }

}





.hero-box {

  transition: opacity 0.6s ease;

}



/* === SEARCH RESULT STYLING === */

#search-overlay form {width:80%;max-width:600px;margin-bottom:10px}

#search-input{width:100%;padding:14px 18px;font-size:18px;border:2px solid #ddd;border-radius:8px;outline:none}

#search-status{margin-top:5px;color:#777;font-size:14px}

#search-results{width:80%;max-width:900px;margin-top:15px;display:grid;gap:12px}

.search-item{background:#fff;border:1px solid #eee;border-radius:10px;padding:14px 16px;box-shadow:0 2px 8px rgba(0,0,0,.05)}

.search-item a{color:#222;font-weight:600;text-decoration:none}

.search-item p{color:#666;margin-top:6px}

#search-results mark{background:#fff3bf;padding:0 .15em;border-radius:.2em}



/* === Search overlay: scrollable results === */





#search-results {

  width: 80%;

  max-width: 900px;

  margin-top: 16px;

  display: grid;

  gap: 12px;



  /* BARU: biar long list bisa di-scroll */

  max-height: min(60vh, 560px);

  overflow-y: auto;

  overscroll-behavior: contain;

  padding-right: 6px; /* space untuk scrollbar */

  scrollbar-gutter: stable; /* supaya layout gak lompat saat scrollbar muncul */

}



/* scrollbar yang halus (opsional) */

#search-results::-webkit-scrollbar { width: 8px; }

#search-results::-webkit-scrollbar-thumb {

  background: rgba(0,0,0,.18);

  border-radius: 6px;

}





/* === FOOTER MODERN (FINAL RESPONSIVE FIX) === */

.site-footer {

  background: #1d1a16;

  color: #f2f2f2;

  padding: 60px 0 20px;

  font-size: 15px;

  line-height: 1.7;

}



.footer-container {

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  max-width: 1300px;

  margin: 0 auto;

  padding: 0 10px;

  gap: 500px;

}



.footer-col {

  flex: 1 1 280px;

  min-width: 240px;

}



.footer-logo {

  width: 150px;

  margin-bottom: 10px;

  filter: brightness(0) invert(1);

}



.footer-col h4 {

  display: flex;

  align-items: center;

  gap: 8px;

  color: #fff;

  font-size: 17px;

  font-weight: 600;

  margin-bottom: 10px;

}



.footer-col p {

  color: #ccc;

  margin-bottom: 8px;

}



.footer-col a {

  color: #ddd;

  text-decoration: none;

  transition: color 0.3s;

}



.footer-col a:hover {

  color: var(--accent);

}



.footer-lang {

  margin-top: 8px;

  display: flex;

  align-items: center;

  gap: 8px;

}



.footer-lang select {

  background: #2b2724;

  color: #fff;

  border: 1px solid #555;

  border-radius: 6px;

  padding: 4px 8px;

  cursor: pointer;

}



.footer-bottom {

  border-top: 1px solid #333;

  margin-top: 30px;

  padding-top: 15px;

  text-align: center;

  font-size: 14px;

  color: #999;

}



/* ===== FINAL RESPONSIVE FIX ===== */

@media (max-width: 768px) {

  .footer-container {

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 30px 20px; /* ⬅️ tambahkan padding-bottom 20px di sini */

  gap: 40px;

}





  .footer-col {

    width: 100%;

    margin: 0;

    padding: 0;

  }



  /* Hapus ruang bawah ekstra */

  .footer-col:last-child {

    margin-bottom: 0 !important;

    padding-bottom: 0 !important;

  }



  /* Kompres padding bawah footer */

  .site-footer {

    padding-bottom: 10px;

  }



  .footer-bottom {

    margin-top: 12px;

    padding-top: 8px;

  }



  /* Pastikan tidak ada height collapse dari flexbox */

  .footer-container > * {

    flex: unset;

  }



  /* Perkecil dropdown dan sejajarkan */

  .footer-lang {

    justify-content: flex-start;

  }



  .footer-lang select {

    transform: scale(0.95);

  }

}







.footer-contact-item {

  display: flex;

  align-items: center; /* ⬅️ ini yang bikin sejajar vertikal */

  gap: 8px; /* jarak antara ikon dan teks */

  color: #fff;

  font-size: 14px;

  line-height: 1.5;

  margin: 3px 0;

}



.footer-contact-item .icon {

  flex-shrink: 0;

  color: #fff;

  opacity: 0.9;

  width: 16px;

  height: 16px;

}



.site-footer {

  background-color: #1b1816;

  color: #fff;

  padding: 50px 5% 20px;

  font-size: 14px;

  line-height: 1.7;

}



.footer-container {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 40px;

  margin-bottom: 30px;

}



.footer-col h4 {

  font-weight: 700;

  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 12px;

}



.footer-logo {

  width: 90px;

  margin-bottom: 10px;

}



.footer-contact-item {

  display: flex;

  align-items: center;

  gap: 8px;

  color: #ddd;

  margin: 4px 0;

}



.footer-contact-item svg {

  width: 16px;

  height: 16px;

  flex-shrink: 0;

}



.footer-links {

  display: flex;

  flex-direction: column;

  gap: 8px;

}



.footer-links a {

  display: flex;

  align-items: center;

  gap: 8px;

  color: #ccc;

  text-decoration: none;

  transition: color 0.3s ease;

}



.footer-links a:hover {

  color: #fff;

}



.footer-bottom {

  border-top: 1px solid rgba(255,255,255,0.1);

  text-align: center;

  font-size: 13px;

  padding-top: 15px;

  color: #aaa;

}



.footer-logo {

  width: 140px;

  margin-bottom: 20px;

  filter: brightness(0) invert(1);

  opacity: 0.95;

}



/* ===== HERO ===== */

.coa-hero {

  position: relative;

  width: 100%;

  height: 75vh;

  overflow: hidden;

}



.coa-hero-img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



.coa-hero-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.35);

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: #fff;

  padding: 0 20px;

}



.coa-hero-text h1 {

  font-size: 2.2rem;

  font-weight: 700;

  margin-bottom: 10px;

}



.coa-hero-text p {

  font-size: 1rem;

  max-width: 700px;

  margin: 0 auto;

}



/* ===== FORM SECTION ===== */

.coa-section {

  padding: 80px 20px;

  display: flex;

  justify-content: center;

}



.coa-card {

  background: #fff;

  border-radius: 16px;

  padding: 40px 30px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  max-width: 600px;

  width: 100%;

  text-align: center;

  animation: fadeIn 1s ease;

}



.coa-title {

  font-size: 24px;

  color: #6a2ee8;

  margin-bottom: 10px;

  font-weight: 700;

}



.coa-sub {

  color: #555;

  font-size: 15px;

  margin-bottom: 25px;

}



.coa-form {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  justify-content: center;

}



.coa-form input {

  flex: 1 1 65%;

  padding: 12px 14px;

  border: 1px solid #ccc;

  border-radius: 8px;

  font-size: 15px;

  transition: all 0.3s ease;

}



.coa-form input:focus {

  border-color: #7a3cff;

  box-shadow: 0 0 0 3px rgba(122,60,255,0.15);

}



.coa-form button {

  background: #7a3cff;

  color: #fff;

  border: none;

  border-radius: 8px;

  padding: 12px 22px;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;

}



.coa-form button:hover {

  background: #652eff;

  transform: translateY(-1px);

}



/* ===== HASIL CEK ===== */

.coa-result {

  margin-top: 25px;

  text-align: left;

  line-height: 1.6;

}



.coa-valid {

  background: #f0fdf4;

  border-left: 5px solid #22c55e;

  padding: 16px;

  border-radius: 10px;

}



.coa-invalid {

  background: #fef2f2;

  border-left: 5px solid #ef4444;

  padding: 16px;

  border-radius: 10px;

}



/* ===== ANIMASI ===== */

@keyframes fadeIn {

  from { opacity: 0; transform: translateY(30px); }

  to { opacity: 1; transform: translateY(0); }

}



/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .coa-hero {

    height: 50vh;

  }

  .coa-hero-text h1 {

    font-size: 1.7rem;

  }

  .coa-card {

    padding: 30px 20px;

  }

  .coa-form {

    flex-direction: column;

  }

  .coa-form input, .coa-form button {

    width: 100%;

  }

}



/* =========================================================

   HALAMAN BERITA / BULETIN / PENGUMUMAN — GSA STYLE FINAL

   ========================================================= */



/* SECTION WRAPPER */

.berita-section {

  margin-top: 100px;

  padding-bottom: 80px;

}



/* ====== TAB NAVIGATION ====== */

.tab-nav {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 1rem;

  margin-bottom: 3rem;

  flex-wrap: wrap;

}



.tab-btn {

  background: #f6f3ff;

  color: #3a3a3a;

  border: 2px solid #d2b8ff;

  padding: 12px 32px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  letter-spacing: 0.3px;

  font-size: 15px;

  transition: all 0.3s ease;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);

}



/* Hover state */

.tab-btn:hover {

  background: rgba(125, 0, 255, 0.1);

  border-color: #7d00ff;

  color: #7d00ff;

  transform: translateY(-1px);

}



/* Aktif (tab sedang dipilih) */

.tab-btn.active {

  background: linear-gradient(135deg, #7d00ff, #b266ff);

  color: #fff;

  border-color: #7d00ff;

  box-shadow: 0 5px 18px rgba(125, 0, 255, 0.25);

  transform: scale(1.05);

}



/* ====== TAB CONTENT ANIMATION ====== */

.tab-content {

  display: none;

  opacity: 0;

  transform: translateY(10px);

  transition: all 0.4s ease;

}



.tab-content.active {

  display: block;

  opacity: 1;

  transform: translateY(0);

}



/* ====== GRID CARD LAYOUT ====== */

.card-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;

  padding: 0 1.5rem;

}



.card {

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);

  overflow: hidden;

  display: flex;

  flex-direction: column;

  transition: all 0.25s ease;

}



.card:hover {

  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(125, 0, 255, 0.15);

}



/* ====== GAMBAR BERITA ====== */

.card img {

  width: 100%;

  height: 200px;

  object-fit: cover;

}



/* ====== ISI CARD ====== */

.card-body {

  padding: 24px 26px;

  flex: 1;

}



.card-body h4 {

  color: #280040;

  font-size: 1.2rem;

  margin-bottom: 8px;

  font-weight: 700;

  transition: color 0.3s ease;

}



.card-body h4:hover {

  color: #7d00ff;

}



.card-body p.muted {

  color: #888;

  font-size: 0.9rem;

  margin-bottom: 8px;

}



.card-body p {

  color: #444;

  font-size: 0.95rem;

  line-height: 1.5;

}



/* ====== FOOTER CARD ====== */

.card-footer {

  padding: 16px 26px 24px;

  margin-top: auto;

  display: flex;

  justify-content: flex-start;

}



/* ====== TOMBOL ====== */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 10px 22px;

  font-weight: 600;

  border-radius: 8px;

  border: none;

  cursor: pointer;

  text-decoration: none;

  transition: all 0.3s ease;

}



/* Tombol utama (ungu) */

.btn.primary {

  background: linear-gradient(135deg, #7d00ff, #a84dff);

  color: #fff;

  box-shadow: 0 3px 10px rgba(125, 0, 255, 0.3);

}



.btn.primary:hover {

  background: linear-gradient(135deg, #6a00e0, #932aff);

  box-shadow: 0 5px 18px rgba(125, 0, 255, 0.35);

  transform: translateY(-2px);

}







/* RESPONSIVE DESIGN */

@media (max-width: 992px) {

  .card img {

    height: 180px;

  }

  .card-body {

    padding: 20px 22px;

  }

}



@media (max-width: 768px) {

  .berita-section {

    margin-top: 70px;

  }

  .tab-btn {

    font-size: 14px;

    padding: 10px 24px;

  }

  .card img {

    height: 160px;

  }

  .card-body h4 {

    font-size: 1.05rem;

  }

}



@media (max-width: 480px) {

  .card-footer {

    justify-content: center;

  }

  .btn {

    width: 100%;

  }

}



/* ===== CONTACT SECTION STYLING ===== */

.contact-section {

  display: flex;

  flex-direction: column;

  gap: 3rem;

  padding: 4rem 0;

}



.contact-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: start;

}



.contact-form, .contact-info {

  background: #fff;

  border-radius: 16px;

  padding: 2rem 2.5rem;

  box-shadow: 0 6px 20px rgba(0,0,0,0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.contact-form:hover, .contact-info:hover {

  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

}



/* ===== FORM ===== */

.contact-form h2 {

  margin-bottom: 1.5rem;

  color: var(--primary-color);

}



.form-group {

  margin-bottom: 1.2rem;

}



.form-group label {

  display: block;

  margin-bottom: .5rem;

  font-weight: 600;

  color: #333;

}



.form-group input,

.form-group textarea {

  width: 100%;

  padding: .8rem 1rem;

  border: 1px solid #ddd;

  border-radius: 8px;

  font-family: 'Inter', sans-serif;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;

}



.form-group input:focus,

.form-group textarea:focus {

  border-color: var(--primary-color);

  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.15);

  outline: none;

}



/* ===== BUTTON ===== */

#send-message {

  display: inline-block;

  background: linear-gradient(135deg, #7d00ff, #a84dff);

  color: #fff;

  border: none;

  padding: .9rem 2.2rem;

  border-radius: 50px;

  font-weight: 600;

  cursor: pointer;

  transition: background 0.3s ease, transform 0.2s ease;

}



#send-message:hover {

 background: linear-gradient(135deg, #6a00e0, #932aff);

  box-shadow: 0 5px 18px rgba(125, 0, 255, 0.35);

  transform: scale(1.03);

}



/* ===== INFO PANEL ===== */

.contact-info h2 {

  margin-bottom: 1rem;

  color: var(--primary-color);

}



.contact-info p {

  margin-bottom: .7rem;

  line-height: 1.6;

  color: #444;

}



/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {

  .contact-grid {

    grid-template-columns: 1fr;

  }

  .contact-form, .contact-info {

    padding: 1.8rem;

  }

}



/* ===== ABOUT PAGE HIGHLIGHT CARDS ===== */

.about-highlights {

  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);

  padding: 90px 0 70px;

}



.highlight-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2.5rem;

  align-items: stretch;

  justify-content: center;

  text-align: center;

}



.highlight-card {

  background: #ffffff;

  border-radius: 16px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);

  padding: 2rem 1.8rem 2.5rem;

  transition: all 0.35s ease;

  position: relative;

}



.highlight-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);

}



.icon-wrap {

  width: 70px;

  height: 70px;

  margin: 0 auto 1.2rem;

  background: rgba(88, 46, 139, 0.08); /* ungu-biru khas GSA */

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.icon-wrap img {

  width: 34px;

  height: 34px;

  filter: invert(25%) sepia(55%) saturate(400%) hue-rotate(240deg) brightness(0.9);

}



.highlight-card h3 {

  font-size: 1.2rem;

  color: var(--primary-color, #582e8b);

  font-weight: 700;

  margin-bottom: 0.8rem;

}



.highlight-card p {

  color: #555;

  font-size: 0.95rem;

  line-height: 1.7;

  margin: 0 auto;

  max-width: 90%;

}



/* RESPONSIVE */

@media (max-width: 768px) {

  .highlight-grid {

    gap: 1.5rem;

  }

  .highlight-card {

    padding: 1.8rem 1.5rem;

  }

}



/* ===== BULAT EFEK LEMBUT UNTUK LOGO ISO ===== */

.about-highlights {

  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);

  padding: 90px 0 70px;

}



.highlight-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2.5rem;

  text-align: center;

  align-items: stretch;

}



.highlight-card {

  background: #fff;

  border-radius: 18px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);

  padding: 2rem 1.8rem 2.5rem;

  transition: all 0.35s ease;

}



.highlight-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

}



/* === ICON WRAPPER (CIRCLE + HOVER EFFECT) === */

.icon-wrap {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  margin: 0 auto 1.2rem;

  background: radial-gradient(circle at center, #fff 50%, #f3eefb 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 6px 18px rgba(88, 46, 139, 0.12);

  transition: all 0.35s ease;

}



.icon-wrap.circle svg {

  width: 58px;

  height: 58px;

  border-radius: 50%;

  transition: all 0.35s ease;

}





.highlight-card:hover .icon-wrap {

  box-shadow: 0 8px 22px rgba(88, 46, 139, 0.3);

}



/* === TEXT === */

.highlight-card h3 {

  font-size: 1.2rem;

  color: #582e8b;

  font-weight: 700;

  margin-bottom: 0.8rem;

}



.highlight-card p {

  color: #555;

  font-size: 0.95rem;

  line-height: 1.7;

  margin: 0 auto;

  max-width: 90%;

}


/* =========================================

   BAGIAN TAB VERTIKAL "TENTANG KAMI"

   ========================================= */

.about-tabs {

  margin-top: 0rem;

  display: flex; 

  justify-content: center;

}



.tab-layout {

  display: grid;

  grid-template-columns: 270px 1fr;

  gap: 3rem;

  align-items: start;

}



/* ================================

   SIDEBAR TOMBOL KIRI

   ================================ */

.tab-sidebar {

  display: flex;

  flex-direction: column;

  gap: 1.3rem; /* jarak antar tombol */

}



.tablink {

  border: 2px solid #582E8B;

  background: transparent;

  color: #582E8B;

  font-weight: 600;

  border-radius: 50px;

  padding: 0.8rem 1.2rem;

  cursor: pointer;

  text-align: center;

  transition: all 0.35s ease;

  box-shadow: 0 2px 6px rgba(88, 46, 139, 0.08);

  position: relative;

  overflow: hidden;

}



.tablink::before {

  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(90deg, rgba(88,46,139,0.1), rgba(255,255,255,0));

  transition: all 0.5s ease;

}



.tablink:hover::before {

  left: 100%;

}



.tablink:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 12px rgba(88, 46, 139, 0.15);

}



.tablink.active {

  background: linear-gradient(135deg, #582E8B, #7A4ACF);

  color: #fff;

  transform: scale(1.03);

  box-shadow: 0 8px 18px rgba(88, 46, 139, 0.3);

}



/* ================================

   KONTEN KANAN

   ================================ */

.tab-contents {

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 10px 28px rgba(88, 46, 139, 0.07);

  padding: 2.8rem 3rem;

  min-height: 340px;

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;

}



.tab-contents::after {

  /* efek background lembut */

  content: "";

  position: absolute;

  top: 0;

  right: 0;

  width: 220px;

  height: 220px;

  background: radial-gradient(circle at 80% 20%, rgba(88,46,139,0.08), transparent 70%);

  pointer-events: none;

}



/* ================================

   KONTEN SETIAP TAB

   ================================ */

.tabpane {

  display: none;

  opacity: 0;

  transform: translateY(15px);

  transition: all 0.45s ease;

}



.tabpane.active {

  display: block;

  opacity: 1;

  transform: translateY(0);

  animation: fadeInUp 0.6s ease forwards;

}



/* animasi muncul lembut */

@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translateY(15px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* ================================

   FORMAT TEKS & LIST

   ================================ */

.tabpane h3 {

  color: #582E8B;

  font-size: 1.4rem;

  margin-bottom: 0.6rem;

}



.tabpane p,

.tabpane li {

  line-height: 1.7;

  color: #333;

  font-size: 1rem;

}



.tabpane ul {

  margin-top: 0.6rem;

  padding-left: 1.2rem;

}



.tabpane ul li {

  margin-bottom: 0.4rem;

}



/* ================================

   BAGIAN FILOSOFI LOGO

   ================================ */

.logo-preview {

  display: flex;

  justify-content: center;

  align-items: center;

  margin: 2rem auto 1.5rem;

  padding: 1.5rem;

  background: radial-gradient(circle at center, #faf8ff 0%, #ffffff 80%);

  border-radius: 16px;

  box-shadow: 0 8px 18px rgba(88, 46, 139, 0.08);

  width: 100%;

  max-width: 280px;

  opacity: 0;

  transform: scale(0.95);

  animation: logoFadeIn 0.9s ease 0.2s forwards;

}



@keyframes logoFadeIn {

  to {

    opacity: 1;

    transform: scale(1);

  }

}



.logo-preview img {

  width: 100%;

  height: auto;

  object-fit: contain;

  filter: drop-shadow(0 2px 6px rgba(88, 46, 139, 0.15));

  transition: transform 0.4s ease, filter 0.4s ease;

}



.logo-preview:hover img {

  transform: scale(1.06);

  filter: drop-shadow(0 4px 10px rgba(88, 46, 139, 0.25));

}



.logo-caption {

  text-align: center;

  font-size: 0.95rem;

  color: #555;

  font-style: italic;

  margin-top: 0.8rem;

}



/* ================================

   RESPONSIVE

   ================================ */

@media (max-width: 992px) {

  .tab-layout {

    /* Di layar tablet/mobile, kita paksa layout menjadi satu kolom */

    grid-template-columns: 1fr;

    gap: 2rem;

  }



  .tab-sidebar {

    /* Di layar mobile, buat tombol berjajar horizontal/wrapping */

    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.8rem; /* Mengurangi jarak di mobile */

  }



  .tablink {

    flex: 1 1 45%;

    font-size: 0.9rem;

  }



  .tab-contents {

    padding: 2rem 1.5rem;

  }

}



  .about-tabs {

    margin-bottom: 10rem;

  }



/* =====================================================

   SECTION: SEJARAH / TIMELINE - FINAL VERSION

===================================================== */

.timeline-section {

  background: linear-gradient(to bottom, #ffffff, #faf7ff);

  padding: 6rem 2rem 7rem;

  overflow: hidden;

  position: relative;

}



.timeline-section::before {

  content: "";

  position: absolute;

  top: -50%;

  left: 0;

  width: 100%;

  height: 200%;

  background: radial-gradient(circle at center, rgba(88, 46, 139, 0.06) 0%, transparent 70%);

  pointer-events: none;

}



.timeline-section h2 {

  text-align: center;

  color: #582E8B;

  font-size: 2.2rem;

  font-weight: 700;

  margin-bottom: 0.75rem;

  opacity: 0;

  transform: translateY(20px);

  transition: all 1s ease;

}



.timeline-section.revealed h2 {

  opacity: 1;

  transform: translateY(0);

}



.timeline-subtitle {

  text-align: center;

  color: #555;

  max-width: 700px;

  margin: 0 auto 4rem;

  font-size: 1rem;

  line-height: 1.7;

  opacity: 0;

  transform: translateY(20px);

  transition: all 1s ease 0.3s;

}



.timeline-section.revealed .timeline-subtitle {

  opacity: 1;

  transform: translateY(0);

}



/* Garis tengah */

.timeline {

  position: relative;

  max-width: 1100px;

  margin: 0 auto;

  padding: 3rem 0;

}

.timeline::before {

  content: "";

  position: absolute;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 4px;

  height: 100%;

  background: linear-gradient(to bottom, rgba(88, 46, 139, 0.1), rgba(88, 46, 139, 0.25), rgba(88, 46, 139, 0.1));

  border-radius: 2px;

}



/* Item */

.timeline-item {

  position: relative;

  width: 50%;

  padding: 2rem 3rem;

  box-sizing: border-box;

  opacity: 0;

  transform: translateY(60px);

  transition: all 0.8s ease;

}

.timeline-item.visible {

  opacity: 1;

  transform: translateY(0);

}



/* Posisi kiri-kanan */

.timeline-item:nth-child(odd) {

  left: 0;

  text-align: right;

}

.timeline-item:nth-child(even) {

  left: 50%;

  text-align: left;

}



/* Titik tahun */

.timeline-year {

  background: linear-gradient(145deg, #582E8B, #7A4ACF);

  color: #fff;

  font-weight: 700;

  border-radius: 50%;

  width: 85px;

  height: 85px;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  font-size: 1.1rem;

  box-shadow: 0 8px 18px rgba(88, 46, 139, 0.25);

  border: 3px solid #fff;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.timeline-year:hover {

  transform: scale(1.1);

  box-shadow: 0 10px 25px rgba(88, 46, 139, 0.35);

}



/* Isi teks */

.timeline-content {

  background: #fff;

  padding: 1.3rem 1rem;

  border-radius: 14px;

  box-shadow: 0 6px 16px rgba(88, 46, 139, 0.08);

  color: #333;

  font-size: 0.95rem;

  line-height: 1.6;

  display: inline-block;

  max-width: 340px;

  margin-top: 1.2rem;

  transition: all 0.3s ease;

}

.timeline-content:hover {

  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(88, 46, 139, 0.15);

}



/* Jarak antar sisi */

.timeline-item:nth-child(odd) .timeline-content {

  margin-right: 50px;

}

.timeline-item:nth-child(even) .timeline-content {

  margin-left: 50px;

}



/* RESPONSIVE MODE - HP */

@media (max-width: 768px) {

  .timeline::before {

    left: 20px;

    width: 3px;

    height: 100%;

  }

  .timeline-item {

    width: 100%;

    text-align: left !important;

    padding-left: 60px;

  }

  .timeline-item:nth-child(even) {

    left: 0;

  }

  .timeline-content {

    margin: 1.5rem 0 0 2.5rem;

  }

  .timeline-year {

    position: absolute;

    left: -10px;

    top: 10px;

    width: 65px;

    height: 65px;

    font-size: 0.9rem;

  }

}



/* === Khusus halaman Manajemen Direksi === */

.director-name {

  font-size: 1.8rem;          

  font-weight: 700;

  color: var(--accent);

  margin-bottom: 0.3em;

}



.director-title {

  font-size: 1.2rem;

  font-weight: 505;

  color: #555;

  margin-bottom: 1em;

}



.profildireksi-image {

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 1rem;

}



.profildireksi-image img {

  width: 260px;               

  height: auto;              

  aspect-ratio: 3 / 4;    

  object-fit: cover;        

  border-radius: 16px;     

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); 

  transition: transform 0.3s ease;

}



.profildireksi-image img:hover {

  transform: scale(1.03);  

}





.direksi-page {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

  box-sizing: border-box;

}



/* ======================================================

   LOGO PERUSAHAAN SCROLLER

====================================================== */
/* Container Induk: Harus menjadi Flex Container dan menyembunyikan overflow */
.carousel {
display: flex;
    width: 100%; /* Akan mengikuti lebar 100% dari induknya (carousel-full-width-wrapper) */
    overflow: hidden;
    margin: 0;
    padding: 20px 0;
}

/* Pengaturan Hover (Koreksi Sintaks SASS/SCSS) */
.carousel:hover .group {
    animation-play-state: paused;
}

/* --- Grup Konten (Tidak ada perubahan signifikan) --- */
.group {
    display: flex;
    gap: 20px;
    width: max-content; 
    padding-right: 20px; 
    will-change: transform;
    /* PERHATIAN: 1 detik terlalu cepat untuk animasi, gunakan 10s atau lebih */
    animation: scrolling 10s linear infinite; 
}

/* --- Kartu Konten --- */
.card {

    flex-shrink: 0;
    flex-basis: 300px; 
    min-height: 200px;
		
    color: white;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0;
    padding: 20px;
    font-size: xx-large;
    
 
    display: flex; 
    justify-content: center;
    align-items: center;
    

}

.card img {
    max-width: 100%;
    max-height: 100%; 
    height: auto;   
    object-fit: contain; 
}

/* Randomize warna Penataan Warna  */
/*.card:nth-child(1) {*/
/*    background: #7958ff;*/
/*}*/

/*.card:nth-child(2) {*/
/*    background: #5d34f2;*/
/*}*/

/*.card:nth-child(3) {*/
/*    background: #4300da;*/
/*}*/

/* --- Keyframes Koreksi (Tidak ada perubahan) --- */
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}

/* Ganti .container-wrapper dengan class yang tepat dari HTML Anda */
.container-wrapper {
    /* Hapus atau setel ulang batasan lebar */
    max-width: none !important; 
    width: 100%;    
    padding-left: 0;       
    padding-right: 0;     
    padding-bottom: 0;     

}

.carousel-full-width-wrapper {
    width: 100%; 
    max-width: none;
    margin-left: 0; 
    margin-right: 0; 
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 90px;   
    padding-top: 0px;   
	background-color: #f9f9f9;
}



/* ======================================================

   STRUKTUR ORGANISASI / DIREKSI

====================================================== */

.struktur-organisasi-page .two-col {

  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  max-width: none;            

  margin: 60px 0px 160px; //overall jarak

  padding: 0;

  box-sizing: border-box;

}



.struktur-organisasi-page .product-text {

  flex: 1;                    

  padding: 60px;              

}



.struktur-organisasi-page .profildireksi-image {

  flex: 1;                    

  height: 80vh;               

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;



  /* tambahan: beri jarak kanan-kiri */

  margin: 0 130px;             

}



/* Gambar tetap penuh dan proporsional */

.struktur-organisasi-page .profildireksi-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;          

}



.struktur-organisasi-page main {

  padding: 0 80px;

  box-sizing: border-box;

}



/* ===== Responsive: layar kecil ===== */

@media (max-width: 768px) {

  .struktur-organisasi-page .two-col {

    flex-direction: column;

  }



  .struktur-organisasi-page .profildireksi-image {

    margin: 20px 0;  

    height: 50vh;    

  }



  .struktur-organisasi-page .product-text {

    padding: 30px 20px;

  }

}







/* ===== HEADER STRUKTUR ORGANISASI ===== */

.strukturOrganisasi-section {

  padding: 150px 20px 10px; /* jarak overall section*/

  text-align: center;          /* teks di tengah */

  /*background-color: #f9f9f9;*/

  box-sizing: border-box;

}



.strukturOrganisasi-section .struktur-header h2 {

  font-size: 2.5rem;           /* ukuran judul */

  margin-bottom: 20px;         /* jarak antara judul dan paragraf */

  font-weight: 700;

  color: #582E8B;                 /* warna judul */

}



.strukturOrganisasi-section .struktur-header .struktur-subtitle {

  font-size: 1.1rem;           /* ukuran paragraf */

  color: #555;                 /* warna teks */

  max-width: 800px;            /* agar teks tidak terlalu panjang */

  margin: 0 auto;              /* center secara horizontal */

  line-height: 1.6;

}



/* Responsif untuk layar kecil */

@media screen and (max-width: 768px) {

  .strukturOrganisasi-section {

    padding: 60px 15px;

  }

  

  .strukturOrganisasi-section .struktur-header h2 {

    font-size: 2rem;

  }

  

  .strukturOrganisasi-section .struktur-header .struktur-subtitle {

    font-size: 1rem;

  }

}







/* ===== MODIFIKASI DAN SELECTOR RANDOM===== */
.investor-tabs-spacing {

padding: 60px 20px 70px; 

}



.investor-tabs-spacing2 {

/*margin-bottom: 10rem; */
margin-top: 0;
margin-bottom: 0;
}



.investor-tabs-spacing3 {

background-color: #f9f9f9;

padding: 60px 20px 70px; 

}

.investor-tabs-spacing4 {

padding: 0px 20px 0px; 

}

.investor-tabs-spacing5 {

margin-bottom: 0rem;

}

.investor-tabs-spacing6 {

margin-bottom: 4rem;

}




.colorReplace_AbuTua {

background-color: #f9f9f9;

}



.penghargaan-spacing {

padding: 0px 20px 10px; 

}

.tabs-full-bg {
    width: 100%;
    /* pengisi ruang putih */
    padding: 0 0 5rem 0;; 
}

/* ===== PENGATURAN TEKS HERO BOX ===== */
.hero-box p {
    font-size: 1.4rem; 
    line-height: 1.5;
	font-weight: 700;
    color: #fff; 
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6); 
    margin-top: 15px; /* Jarak antara h1 dan paragraf */
}


/* ===== PENGATURAN TEKS HOVER ===== */
.email-link-contact {
    transition: color 0.3s ease; 
}

.email-link-contact:hover {
    color: #582E8B !important; 
    text-decoration: underline !important;
}

/* Mengubah warna ICON SVG saat HOVER */
.email-link-contact:hover svg {
    fill: #582E8B; 
}

.card2 img {
    max-width: 100%; 
    
    max-height: 120px; 
    
    object-fit: contain; 
    
    height: auto;
    
    margin-bottom: 15px; 
}