 @import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');


/* === Global Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body{
  scroll-behavior: smooth;
}

/* 2) Pastikan blok footer melebar penuh */
.about-footer,
.about-footer-certification {
  width: 100%;
  box-sizing: border-box;   /* supaya padding dihitung di dalam lebar */
}

/* 3) Buat kolom grup tidak ngoffset ke kiri */
.about-footer-group {
  margin-left: 0;           /* hapus offset 40 px */
}

/* 4) Jika mau kolom rata seimbang, bisa ganti justify‑content  */
.about-footer-container {
  justify-content: space-between;  /* atau center sesuai selera */
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica', sans-serif;
  overflow-x: hidden; /* pindah ke body, bukan html */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica', sans-serif;
}

/** Navbar Layout **/
.about-navbar{
  width:100%;
  padding:25px 50px;
  display:flex;
  justify-content:center;
  position:absolute;
  top:0; left:0;
  background:transparent;
  border-bottom:1px solid transparent;
  z-index:999;
  transition:all .3s ease;
}
/* setelah scroll */
.about-navbar.about-scrolled{
  position:fixed;
  background:#fff;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.about-nav-container{
  max-width:1600px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== 2. Logo ===== */
.about-nav-left{flex-shrink:0; align-self:center;}
.about-company-logo{
  height:45px;
  object-fit:contain;
  display:block;
  margin-left:-10px;
}

/* ===== 3. Menu tengah ===== */
.about-nav-center{
  display:flex;
  gap:75px;
  align-items:center;
}
.about-nav-center a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:color .3s ease;
  position:relative;
  display:inline-block;
  white-space:nowrap;
}
.about-nav-center a:hover,
.about-nav-center a.active{color:#fff;}
.about-nav-center a:hover::after,
.about-nav-center a.active::after{
  content:"";
  position:absolute;
  bottom:-8px; left:0;
  width:100%; height:2px;
  background:#fff;
}
/* link saat scrolled */
.about-navbar.about-scrolled .about-nav-center a{color:#333;}
.about-navbar.about-scrolled .about-nav-center a:hover,
.about-navbar.about-scrolled .about-nav-center a.active{color:#0047BB;}
.about-navbar.about-scrolled .about-nav-center a:hover::after,
.about-navbar.about-scrolled .about-nav-center a.active::after{background:#0047BB;}

/* ===== 4. Tombol kanan ===== */
.about-nav-right{display:flex; align-items:center;}
.about-try-btn{
  display:flex; align-items:center; justify-content:center;
  gap:6px;
  border:1px solid #fff;
  color:#fff;
  padding:13px 31px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700; font-size:17px;
  transition:all .2s ease;
}
.about-try-btn:hover{background:#0047BB; color:#fff;}
.about-navbar.about-scrolled .about-try-btn{border-color:#0047BB; color:#0047BB;}
.about-navbar.about-scrolled .about-try-btn:hover{background:#0047BB; color:#fff;}

/* ===== 5. Hamburger ===== */
.about-hamburger{display:none; cursor:pointer;}
.about-hamburger img{width:30px; height:30px;}

/* ===== 6. Mobile panel ===== */
.about-nav-menu{
  display:none;
  list-style:none;
  position:absolute;
  top:75px; right:10px;
  width:90vw; max-width:300px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  border-radius:8px;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  padding:10px 0;
  flex-direction:column;
  z-index:1000;
  transition:all .3s ease;
}
.about-nav-menu ul{margin:0; padding:0; list-style:none;}
.about-nav-menu li{width:100%;}
.about-nav-menu a{
  display:block; width:100%;
  padding:14px 20px;
  font-size:16px; font-weight:700;
  color:#fff;
  text-decoration:none;
  transition:background .2s,color .2s;
  border-radius:4px;
}
.about-nav-menu a:hover{background:rgba(255,255,255,.25); color:#fff;}
.about-nav-menu.show{display:flex;}

/* ===== 7. Desktop dropdown ===== */
.about-dropdown-menu{
  position:absolute;
  left:50%; top:100%;
  transform:translateX(-50%) translateY(10px);
  gap:50px 24px;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  border-radius:12px;
  padding:32px 40px;
  display:flex;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  visibility:hidden; opacity:0;
  transition:all .3s ease;
  z-index:998;
  white-space:nowrap;
}
.about-dropdown:hover .about-dropdown-menu{
  visibility:visible; opacity:1;
  transform:translateX(-50%) translateY(0);
}
.about-dropdown-menu a{
  display:block; margin:10px 0;
  font-weight:500; line-height:1.4;
  color:#333; text-decoration:none;
  position:relative; transition:color .2s;
}
.about-dropdown-menu a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px;
  height:1px; background:currentColor;
  opacity:0; transition:opacity .2s;
}
.about-dropdown-menu a:hover{color:#0047BB;}
.about-dropdown-menu a:hover::after{opacity:1;}
.about-dropdown-title,
.about-mobile-group-title{
  font-weight:700; font-size:14px;
  margin:12px 0 6px;
  text-transform:uppercase; letter-spacing:.5px;
  color:#333;
}

/* dropdown di navbar transparan */
.about-navbar:not(.about-scrolled) .about-dropdown-menu{background:rgba(0,0,0,.5);}
.about-navbar:not(.about-scrolled) .about-dropdown-menu a{color:#fff;}
.about-navbar:not(.about-scrolled) .about-dropdown-menu a::after{background:#fff;}
.about-navbar:not(.about-scrolled) .about-dropdown-title{color:#fff;}

/* ===== 8. Mobile breakpoint ===== */
@media(max-width:768px){
  .about-nav-center, .about-nav-right{display:none!important;}
  .about-hamburger{
    display:block;
    position:fixed; top:18px; right:20px; z-index:1001;
  }
  .about-navbar{padding:12px 20px;}
  .about-company-logo{height:35px;}

  /* slide panel */
  #nav-menu{
    position:fixed;
    top:70px; left:0; right:0;
    z-index:1000;
    max-height:calc(100vh - 70px);
    overflow-y:auto;
    background:#fff; color:#000;
    transform:translateY(-120%);
    transition:transform .3s ease-in-out;
  }
  #nav-menu.show{transform:translateY(0);}
  #nav-menu ul li>a{color:#000!important;}
  #nav-menu ul li>a:hover{color:#000!important; background:rgba(0,0,0,.05);}

  /* mobile dropdown */
  .about-dropdown-mobile .about-mobile-trigger{
    display:block;
    padding:14px 20px;
    font-weight:700; color:#000;
    cursor:pointer; user-select:none;
  }
  .about-dropdown-mobile-menu{
    display:none; flex-direction:column;
    background:#fff;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .about-dropdown-mobile.active .about-dropdown-mobile-menu{display:flex;}

  .about-mobile-group-title{
    padding:10px 20px 4px;
    font-size:16px; font-weight:600;
    color:#000; opacity:.8;
  }
  .about-dropdown-mobile-menu a{
    padding:12px 30px;
    color:#000; text-decoration:none;
    transition:background .2s,color .2s;
  }
  .about-dropdown-mobile-menu a:hover{
    background:rgba(255,255,255,.06); color:#fff;
  }
}

    /* ---------- HOME SECTION ---------- */
#home.content-section {
  min-height: 100vh;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: 
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.8)),
    url('/image/ABOUT\ US.png'); /* ganti dengan path image kamu */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Poppins', sans-serif;
}

.text-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 100px 20px 60px;
  text-align: center;
  color: white;

  /* Tambahan untuk memastikan teks tetap center */
  margin: 0 auto;
  transform: translateY(40px);
}

/* Kontainer teks */
.text-content {
  max-width: 850px;
  color: #002f6c; /* warna utama brand */
  margin: 0 auto;
}

/* Subtitle kecil */
.section-subtitle {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Judul utama */
.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Paragraf deskripsi */
.section-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/**PETA**/
.gc-section {
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.gc-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
}

.gc-image img {
  max-width: 100%;
  width: 550px;
  height: auto;
}

.gc-text {
  flex: 1;
  padding-left: 10px;
}

.gc-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #2b2b2b;
}

.gc-text .highlight {
  font-weight: 700;
}

.gc-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #3c3c3c;
  max-width: 500px;
}

.gc-text strong {
  color: #222;
}

    .container {
      width: min(1200px, 90%);
      margin-inline: auto;
      padding-block: 4rem 6rem;
    }

/* Partner Section */
.our-partners {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.our-partners-tittle {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #000000;
  text-transform: uppercase;
}

.partners-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.partner-track {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-item {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Optional: scale down specific logos */
.partner-item img[src*="mcdonald"] {
  transform: scale(0.85);
}

/* Responsive */
@media (max-width: 600px) {
  .partner-item {
    width: 120px;
    height: 60px;
  }
  .our-partners-tittle {
    font-size: 22px;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark-blue: #1e3a8a;
    --primary-blue: #3b82f6;
    --secondary-blue: #1d4ed8;
    --light-blue: #dbeafe;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    text-align: justify;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Intro Section */
/* Intro Section */
.about-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-blue) 100%);
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* TEXT di kiri */
.about-text {
    grid-column: 1;
    padding-right: 1rem;
}

/* GAMBAR di kanan */
.about-image {
    grid-column: 2;
}

.about-text h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--primary-dark-blue);
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
}

.about-text strong {
    color: var(--primary-dark-blue);
    font-weight: 700;
}

.about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .about-intro .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text,
    .about-image {
        grid-column: auto;
    }

    .about-text {
        padding: 0;
    }
}

/* ===============================
   VISI MISI SECTION
================================= */

.visimisi-section {
    padding: 4rem 0;
}

/* Grid dipasang di container */
.visimisi-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* Card */
.vm-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.vm-card h2 {
    font-size: 1.75rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.vm-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.vm-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-card li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--gray-600);
}

.vm-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .visimisi-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===============================
   CANGKUPAN KERJA HEADER
================================= */

.cangkupan-kerja {
    text-align: center;
    padding: 2rem 0;
    color: var(--primary-dark-blue);
}

.cangkupan-kerja h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cangkupan-kerja p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.scope-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
    align-items: center;
    transition: all 0.4s ease;
}

/* FLOAT EFFECT */
.scope-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* IMAGE */
.card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* CONTENT */
.card-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark-blue);
    text-align: left;
}

/* SERVICE LIST */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    padding-left: 10px;
}

/* ICON */
.icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.icon-box::before {
    content: '✓';
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .scope-card {
        grid-template-columns: 1fr;
    }

    .card-image img {
        height: 280px;
    }
}



/* Certificates */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark-blue);
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem; /* jarak title ke subtitle */
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.cert-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cert-item:hover img {
    filter: grayscale(0%);
}

.cert-item h3 {
    color: var(--primary-dark-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cert-item p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-download {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .about-intro,
    .scope {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 3rem 0;
    }

    .scope-left h2 {
        font-size: 1.875rem;
    }

    .visimisi-section {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 3rem 0;
    }

    .about-image img,
    .scope-right img {
    width: 100%;
    max-width: 520px;
    height: auto; 
    aspect-ratio: 4 / 3; 
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
        padding: 1rem 0;
    }

    .icon-box {
        width: 64px;
        height: 64px;
    }

    .cangkupan-kerja {
        padding: 2.5rem 0;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .vm-card,
    .cert-item {
        padding: 1.75rem 1.25rem;
    }

    .scope {
        padding: 2.5rem 0;
        gap: 1.5rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-text p {
        font-size: 1rem;
        hyphens: auto;
        word-break: break-word;
    }
}



/**WHY CHOOSE US**/
.custom-icon-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
}

.custom-icon-container::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 0;
}

.custom-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.custom-icon-wrapper img {
  max-width: 60%;
  height: auto;
  transition: filter 0.3s ease;
}

/* Hover effect */
.feature-item:hover .custom-icon-wrapper {
  background-color: #0056d2;
}

.feature-item:hover .custom-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.why-choose-us-section {
    background: #f7f8f9;
    padding: 10px 0;
  }

  .why-choose-us-section .container {
    max-width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
  padding: 0 30px; /* atau 30px kalau mau lebih luas */
  }
  

  .why-choose-us-section .row {
    display: flex;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
  }

  .left-content {
    flex: 1;
    max-width: 600px;
  }

  .left-content h6 {
    font-size: 1rem;
    color: #0056d2;
    margin-bottom: 10px;
    text-align: left;
  }

  .left-content h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 20px;
    text-align: left;
  }

  .left-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 5px;
    max-width: 90%;
  }

  .image-wrapper img {
    max-width: 80%;
    margin-left: 30px;
    height: auto;
  }

  
  .right-cards {
    flex: 1;
    max-width: 680px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .feature-item {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .feature-item .ft-icon {
    width: 120px;
    height: 120px;
    background-color: #e9f0fe;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0056d2;
  }

  .feature-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
  }

  .feature-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
  }

  @media (max-width: 992px) {
    .container {
      flex-direction: column;
      align-items: center;
    }
    .row {
      flex-direction: column;
      align-items: center;
    }
    .card-grid {
      grid-template-columns: 1fr;
    }
  }


  /*FAQ*/
.faqx-section {
  width: 100%;
  margin-top: 100px;
}

.faqx-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.faqx-col {
  padding: 60px;
}

.faqx-info {
  color: black;
  width: 41.6667%;
  display: flex;
  align-items: center;
}

.faqx-info-content {
  max-width: 450px;
}

.faqx-info-content h6 {
  color: #0047BB;
  font-size: 18px;
  font-weight: 400;
}

.faqx-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faqx-subtitle {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
}

.faqx-accordion {
  width: 58.3333%;
}

.faqx-list {
  max-width: 800px;
}

.faqx-item {
  border-bottom: 1px solid #666;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.faqx-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqx-question p {
  font-size: 20px;
  font-weight: 600;
  color: black;
}

.faqx-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faqx-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
  color: black;
}

.faqx-answer p {
  font-size: 17px;
  line-height: 26px;
  padding-top: 10px;
}

.faqx-item.active .faqx-answer {
  max-height: 300px;
}

.faqx-item.active .faqx-toggle-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .faqx-info {
    width: 100%;
    text-align: center;
  }

  .faqx-accordion {
    width: 100%;
  }

  .faqx-info-content {
    margin: 0 auto;
  }

  .faqx-title {
    font-size: 32px;
  }

  .faqx-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faqx-col {
    padding: 30px;
  }

  .faqx-title {
    font-size: 28px;
  }

  .faqx-subtitle {
    font-size: 15px;
  }

  .faqx-question p {
    font-size: 18px;
  }

  .faqx-answer p {
    font-size: 16px;
  }
}

/* ========== OUR GALLERY ========== */
.about-our-gallery-title {
  font-size: 28px;
  font-weight: 700;
  color: #002f6c;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}

.about-our-gallery {
  padding: 60px 20px 80px;
  background: #fff;
}

.about-gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.about-gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE legacy */
  scroll-snap-type: x mandatory;
}
.about-gallery-container::-webkit-scrollbar { display: none; }

.about-gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 350px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Arrow buttons */
.about-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}
.about-scroll-btn.about-left  { left: 10px; }
.about-scroll-btn.about-right { right: 10px; }

/* Gallery Responsive */
@media (max-width: 600px) {
  .about-gallery-container { gap: 12px; padding: 0 10px; }
  .about-gallery-item { width: 300px; height: 400px; }
  .about-scroll-btn { padding: 8px 10px; font-size: 14px; }
}



/* ================= ABOUT FOOTER STYLE ================= */
.footer {
  background-color: #04144f;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start; /* changed from space-between */
}

.footer-logo{
  flex-shrink: 0;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-left: -10px;
}


.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-left: 40px; /* spacing from brand */
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0 12px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.5;
}

.footer-brand h4 {
  margin-top: 20px;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin: 10px 0 20px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-certification {
  background-color: #04144f;
  color: #d0d0d0;
  padding: 40px 30px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.cert-divider {
  border: none;
  border-top: 1px solid #1c2d5c;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cert-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cert-text {
  font-size: 16px;
  max-width: 600px;
  line-height: 1.5;
}

.cert-text strong {
  color: #ffffff;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.cert-logos img {
  height: 45px;
  max-width: 100px;
  object-fit: contain;
}

.footer-bottom-text {
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col,
  .footer-group {
    flex: 1 1 100%;
    flex-direction: column;
    margin-left: 0;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .cert-logos img {
    height: 35px;
    max-width: 80px;
  }

  .cert-text {
    font-size: 14px;
  }

  .footer-certification {
    padding: 30px 20px 15px;
  }

  .footer-bottom-text {
    font-size: 12px;
  }
}

/* --- Floating WhatsApp FAB --- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
}

.wa-fab a {
  display: flex;
  align-items: center;
  gap: 14px;                          /* jarak avatar ↔ label */
  background: #0b2e67;                /* biru navy */
  color: #fff;
  font: 600 16px/1 'Inter', sans-serif;
  border-radius: 50px;
  padding: 10px 24px 10px 12px;       /* ruang atas‑bawah & kanan‑kiri */
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s;
}

.wa-fab a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,.25);
}

/* avatar lingkaran + cincin hijau */
.wa-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b4d900;          /* outer ring */
  box-shadow: 0 0 0 2px #fff inset;   /* inner white ring */
}

/* responsif: sedikit lebih kecil di handset sempit */
@media (max-width: 420px){
  .wa-fab a{
    font-size: 14px;
    padding: 8px 20px 8px 10px;
  }
  .wa-avatar{
    width: 42px; height: 42px;
  }
}
