/* ==================== RESET & GLOBAL ==================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Animasi */
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-100%); }
  60% { opacity: 1; transform: translateY(20%); }
  100% { transform: translateY(0); }
}
@keyframes growLine {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-short {
  0% { transform: translateX(0); }
  50% { transform: translateX(-20%); }
  100% { transform: translateX(0); }
}
@keyframes slideDownFromTop {
  from { transform: translateY(-6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==================== HEADER ==================== */
header {
  width: 100%;
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: #fff;
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* Header-top: logo + judul dalam satu baris */
.header-top {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 20px 10px 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Logo */
.header-top img {
  width: 210px;
  height: 210px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Title wrapper di sebelah kanan */
.title-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 30px;
  min-width: 0;
  max-width: calc(100% - 240px);
}

/* Judul utama */
.title-wrapper h1 {
  margin: 0;
  font-size: 60px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffffff, #ffe6cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
  animation: slideDown 1s ease-out;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Divider */
.title-wrapper .divider {
  width: 100%;
  height: 4px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  animation: growLine 2s ease-out;
}

/* Tagline */
.title-wrapper .tagline {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.9;
  animation: fadeIn 1.5s ease-in;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ==================== NAVBAR UTAMA ==================== */
.navbar {
  width: 100%; 
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Container untuk konten navbar */
.navbar-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
}

/* navbar saat sticky */
.navbar.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  animation: slideDownFromTop 180ms ease;
  margin: 0;
  border-radius: 0;
  justify-content: center;
}

/* placeholder mencegah konten loncat */
.navbar-placeholder {
  height: 0;
  width: 100%;
}

/* nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10000;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: .3s ease;
}

.nav-links a:hover {
  background: #f77f00;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* search */
.search-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-box input {
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: .3s ease;
}

.search-box input:focus {
  border-color: #f77f00;
  box-shadow: 0 0 5px rgba(247,127,0,0.4);
}

.search-box button {
  background: #f77f00;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: .3s ease;
}

.search-box button:hover {
  background: #d62828;
}

/* ===== MENU TOGGLE (BURGER) ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  line-height: 1;
  color: #333 !important;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  z-index: 10001;
  transition: .15s;
}

.navbar.stuck .menu-toggle {
  color: #333 !important;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* ============================================================
   RESPONSIVE DESIGN - TABLET (601px - 900px)
============================================================ */
@media (min-width: 601px) and (max-width: 900px) {
  /* HEADER - Tablet */
  .header-top {
    padding: 0 16px 10px 16px;
    max-width: 100%;
  }
  
  .title-wrapper {
    max-width: calc(100% - 180px);
  }
  
  .title-wrapper h1 {
    font-size: 44px;
    letter-spacing: 2px;
  }
  
  .title-wrapper .tagline {
    font-size: 16px;
  }
  
  /* Logo lebih kecil di tablet */
  .header-top img {
    width: 160px;
    height: 160px;
    margin-right: 10px;
  }
  
  /* NAVBAR - Tablet */
  .navbar {
    width: 100%;
    padding: 12px 0;
    margin: 0;
    left: 0;
    right: 0;
  }
  
  .navbar-content {
    padding: 0 16px;
    justify-content: space-between;
    max-width: 100%;
  }
  
  /* NAVBAR FORCE WHITE BACKGROUND - SOLUSI UTAMA! */
  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
  }
  
  /* Navbar links lebih kompak */
  .nav-links {
    gap: 10px;
  }
  
  .nav-links a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .search-box input {
    width: 120px;
    padding: 5px 8px;
    font-size: 14px;
  }
  
  .search-box button {
    padding: 5px 10px;
    font-size: 14px;
  }
}

/* ============================================================
   RESPONSIVE DESIGN - HANDPHONE (≤600px)
   SEMUA STYLING MOBILE DI SATU TEMPAT!
============================================================ */
@media (max-width: 600px) {
  /* HEADER - Mobile */
  header {
    padding: 15px 0 0 0;
  }
  
  /* Header-top di mobile - column layout */
  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px 5px 15px;
    max-width: 100%;
  }
  
  .header-top img {
    width: 150px;
    height: 150px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .title-wrapper {
    margin-left: 0;
    align-items: center;
    max-width: 100%;
  }
  
  .title-wrapper h1 {
    font-size: 36px;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }
  
  .title-wrapper .tagline {
    font-size: 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  
  /* ========== NAVBAR MOBILE FIX ========== */
  .navbar {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .navbar-content {
    padding: 12px 15px;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }
  
  /* NAVBAR WHITE BACKGROUND FORCE */
  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50vw;
    right: -50vw;
    width: 200vw;
    height: 100%;
    background: #fff;
    z-index: -1;
  }
  
  /* Burger menu */
  .menu-toggle {
    display: block;
    margin-right: 0;
  }
  
  /* Menu tersembunyi default */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 9999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease;
    border-top: 2px solid #f77f00;
  }
  
  /* Menu terbuka */
  .nav-links.show {
    display: flex;
    max-height: 500px;
    opacity: 1;
    padding: 18px 15px;
  }
  
  /* Link di mobile */
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    margin: 2px 0;
  }
  
  /* Search box di mobile */
  .search-box {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  
  .search-box input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 2px solid #ddd;
  }
  
  .search-box button {
    padding: 10px 15px;
    font-size: 16px;
  }
  
  /* Sticky navbar di mobile */
  .navbar.stuck {
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: rgba(255,255,255,0.98) !important;
  }
  
  .navbar.stuck::before {
    background: rgba(255,255,255,0.98);
  }
  
  .navbar.stuck .navbar-content {
    padding: 10px 15px;
    justify-content: space-between;
  }
  
  .navbar.stuck .menu-toggle {
    background: rgba(255,255,255,0.85);
  }
}

/* ============================================================
   RESPONSIVE DESIGN - DESKTOP (>900px)
============================================================ */
@media (min-width: 901px) {
  .navbar-content {
    max-width: 1200px;
  }
}

/* ============================================================
   RESPONSIVE DESIGN - VERY WIDE DESKTOP (>1200px)
============================================================ */
@media (min-width: 1201px) {
  .header-top {
    max-width: 1200px;
  }
  
  .navbar-content {
    max-width: 1200px;
  }
}





   /* ===== PROFIL SECTION ===== */
#profil {
position: relative;
background-image: url('gambar/parjo.webp'); /* ganti dengan gambar relevan */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 50px 20px;

overflow: hidden;
color: white;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
width: 100%;
height: 100%;
max-width: 100%;
}


/* Overlay redup tapi lebih gelap agar teks lebih terbaca */
#profil::before {
content: "";
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom right, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
z-index: 0;
border-radius: 16px;
}

/* Konten di atas overlay */
.profil-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Hiasan dekoratif modern */
.profil-container::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(247,127,0,0.15);
    top: -40px;
    right: -40px;
    z-index: 0;
    filter: blur(20px);
}

/* Judul */
#profil h2 {
    font-size: 32px;
    font-weight: 700;
    color: whitesmoke;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    font-family: 'Bebas Neue', sans-serif;
}

/* Paragraf */
#profil p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: whitesmoke;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}




        /* ===== NILAI KINERJA ===== */
    #nilai-kinerja {
        background: linear-gradient(145deg, #fff5eb, #ffe8d6);
        padding: 50px 20px;
        text-align: center;
        border-radius: 12px;
        margin-top: 50px;
        margin-bottom:  50px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    }

    .nilai-container {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .nilai-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 200px 200px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .nilai-card:hover {
        transform: translateY(0px);
        box-shadow: 0 8px 25px rgba(247, 127, 0, 0.4);
    }

    .nilai-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .nilai-card h3 {
        color: #d62828;
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .nilai-card p {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
    }


    /* Style untuk daftar layanan (class desc) */
.card .desc {
  display: none;             
  margin-top: 12px;          
  padding: 12px 18px;        
  background: #fff8f0;       
  border-left: 4px solid #f77f00; 
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Style untuk list */
.card .desc ul {
  margin: 0;
  padding-left: 18px;   /* jarak biar tidak mepet */
  list-style-type: disc;
}

.card .desc li {
  margin-bottom: 6px;  /* jarak antar item */
}


/* ============================
   Brand Colors
============================ */
:root {
    --primary: #D32F2F; 
    --secondary: #F4F4F4;
    --accent: #FF9800;
}

/* ============================
   Benefit Section
============================ */
.benefit-section {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary), #ffffff);
    max-width: 100%
}

.main-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
    max-width: 100%
}

/* ----------------
   TEXT COLUMN
---------------- */
.text-col {
    flex: 1;
    padding-left: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.subtitle {
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
}

/* ----------------
   BENEFIT CARD
---------------- */
.benefit-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    margin-bottom: 20px;

    background: #fff;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.icon {
    font-size: 28px;
    color: var(--accent);
}

.benefit-card h4 {
    margin: 0;
    font-size: 18px;
    color: var(--primary);
}

/* ----------------
   IMAGE COLUMN
---------------- */
.img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-left:200px;
    z-index: 1; /* lebih rendah dari red-fill */
}

.tech-img {
    max-width: 430px;
    width: 100%;
    position: relative;
    z-index: 3; /* di belakang red-fill */
    margin-bottom: -140px; /* atur tinggi overlap */
}




/* ============================
   RED-FILL (FULL WIDTH)
============================ */
.red-fill {
    width: 100%;
    background: var(--primary);
    padding: 30px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 3; /* lebih tinggi */
     margin-top: -120px;
}

.red-container {
    width: 100%;
    max-width: 1100px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #fff;
    font-family: "Poppins", sans-serif;
}
.red-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.red-logo img {
    width:80px;
    height: 80px;
    filter: brightness(1000%);
}

.red-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.red-info .phone {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.red-info .website {
    ffont-size: 1rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Fade Up */
.fade-up {
  opacity: 0;
  transform: translateY(0); /* Tidak geser layout */
  transition: opacity 0.8s ease;
}


.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}





/* ==========================================
   RED-FILL RESPONSIVE — TABLET (≤992px)
   ========================================== */
@media (max-width: 992px) {

  .red-fill {
    padding: 25px 20px;
    text-align: center;
  }

  .red-container {
    display: flex;
    flex-direction: column;     /* Susunan vertikal */
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;             /* Tengah */
  }

  .red-logo img {
    width: 150px;
    height: auto;
  }

  .red-info {
    text-align: center;
    font-size: 20px;
  }

  .red-info .phone,
  .red-info .website {
    margin: 6px 0;
  }
}



/* ==========================================
   RED-FILL RESPONSIVE — HANDPHONE (≤600px)
   ========================================== */
@media (max-width: 600px) {

  .red-fill {
    padding: 20px 12px;
  }

  .red-container {
    gap: 12px;
    max-width: 100%;
  }

  .red-logo img {
    width: 120px;
  }

  .red-info {
    font-size: 18px;
    line-height: 1.4;
    word-break: break-word;   /* cegah teks kepotong */
  }

  .red-info .phone,
  .red-info .website {
    display: block;
    font-size: 17px;
  }
}





/* ===== KONTENER ===== */
.container {
max-width: 1200px;
margin: auto;
padding: 40px 20px;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
}
.left {
flex: 1;
}
.left h1 {
font-size: 48px;
color: #00194f;
line-height: 1.2;
margin-bottom: 25px;
}
.features {
display: flex;
gap: 40px;
margin-bottom: 20px;
}
.feature-item {
display: flex;
align-items: flex-start;
gap: 12px;
}
.feature-item img {
width: 40px;
height: 40px;
}
.left p.desc {
font-size: 18px;
line-height: 1.6;
color: #333;
margin-bottom: 25px;
}
.contact-box {
display: flex;
align-items: center;
gap: 20px;
padding-top: 20px;
border-top: 2px solid #eee;
margin-top: 30px;
}
.contact-item {
display: flex;
align-items: center;
gap: 12px;
}
.contact-item .icon {
width: 45px;
height: 45px;
background: #ff7a00;
color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 22px;
}
.right {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.right img {
width: 100%;
border-radius: 10px;
}


    .peta{
            border-radius: 60px;    
        }
    .prgTentang{
        max-width: 800px;       /* Biar tidak terlalu lebar di layar besar */
  margin: 40px auto;      /* Tengah di layar dengan jarak atas-bawah */
  padding: 20px 30px;     /* Ruang dalam biar tidak terlalu mepet */
  line-height: 1.8;       /* Jarak antar baris */
  font-size: 18px;        /* Ukuran huruf pas dibaca */
  text-align: justify;    /* Teks rata kiri-kanan */
  font-family: "Segoe UI", Arial, sans-serif; /* Font modern & rapi */
  color: #333;            /* Warna teks nyaman di mata */
  /*background: #fafafa;    /* Latar belakang lembut */
  background: 
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),  /* lapisan putih semi transparan */
    url("gambar/logos-removebg.png");  /* ganti dengan path gambar lu */
  background-size: cover;
  background-position: center;
  border-radius: 12px;    /* Sudut melengkung biar tidak kaku */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Bayangan halus */

}
.prgTentang p:first-of-type {
  text-indent: 40px;
  margin-left: 10px;
}
.paragraf-profil h2 {
  text-align: center;     /* Judul di tengah */
  font-size: 26px;
  margin-bottom: 20px;
  color: #006699;         /* Warna aksen */
}
.paragraf-profil ul {
  margin: 15px 0 15px 20px;
  padding: 0;
}
.paragraf-profil li {
  margin-bottom: 8px;     /* Jarak antar list item */
}  

/* Hanya tampil sebagian dulu */
#tentang-text.collapsed {
  height: 250px;             /* Batasi tinggi awal */
  overflow: hidden;
  position: relative;
}
#tentang-text.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #fafafa, transparent);
}

/* Tombol Baca Selengkapnya */
#toggleBtn {
  margin-top: 15px;
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 10px 15px;
  background: #cc5f00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
#toggleBtn:hover {
  background: #a84800;
}




    
    /* ===== CAROUSEL (DIPERBAIKI) ===== */
.carousel {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  margin: 30px auto;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  height: auto;
}

.carousel-slide img {
  width: 100%;
  display: block;
  pointer-events: none;
}

.carousel-slide.first-load {
  animation: fadeInUp 1.2s ease-out forwards;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px) scale(1.05); } to { opacity:1; transform: translateY(0) scale(1); } }

/* Tombol — bersih dan tanpa syntax error */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999 !important;
  background: rgba(0,0,0,0.45);
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 28px;
  color: white;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
/* Agar tombol tidak naik ke navbar */
.carousel img {
  display: block;
  width: 100%;
  height: auto;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); transform: translateY(-50%) scale(1.08); }

.carousel-indicators { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
.indicator { width: 14px; height: 14px; background: rgba(0,0,0,0.3); border-radius: 50%; cursor: pointer; transition: transform 0.3s, background 0.3s; }
.indicator.active { background: #ff9800; transform: scale(1.5); box-shadow: 0 0 10px #ff9800; }



 


.galeri-animasi {
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin-top: 200px;
  margin-bottom: 200px;
}

/* Garis merah */
.garis-merah {
  width: 0;
  height: 4px;
  background-color: #d62828;
  margin: 0 auto 20px auto;
  border-radius: 2px;
  opacity: 0;
}

/* Foto container */
.galeri-foto {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
}

/* Bungkus gambar jadi link */
.galeri-foto a {
  display: inline-block;
  width: 250px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gambar di dalamnya */
.galeri-foto a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease, filter 0.3s ease;
  backface-visibility: hidden;
}

/* Efek hover zoom in/out */
.galeri-foto a:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) saturate(1.05);
}
.galeri-foto a:active img {
  transform: scale(0.97);
}

/* Foto brand (satu baris full) */
.galeri-foto-brand {
  display: flex;
  justify-content: center; /* konten di tengah horizontal */
  opacity: 0;
}

.galeri-foto-brand img {
  
  width: 88%;        /* supaya tetap responsif */
  height: auto;
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.galeri-foto-brand img {
  width: 100% !important;     /* penuh kiri-kanan */
  max-width: 100% !important; /* cegah terbatas */
  height: auto;               /* tinggi proporsional */
  border-radius: 0 !important;/* hilangkan lengkung sudut */
  margin: 0 !important;       /* hilangkan jarak */
  display: block;             /* biar nempel */
}



/* === Keyframes === */
@keyframes growLine {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}

@keyframes munculFoto {
  to { opacity: 1; }
}

@keyframes naikFoto {
  to { transform: translateY(0); opacity: 1; }
}

/* === Aktif saat disorot === */
.galeri-animasi.aktif .garis-merah {
  animation: growLine 2s ease-out forwards;
}

.galeri-animasi.aktif .galeri-foto {
  animation: munculFoto 0.1s linear forwards;
  animation-delay: 2s; /* foto muncul setelah garis selesai */
}

.galeri-animasi.aktif .galeri-foto a:nth-child(1) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.2s;
}
.galeri-animasi.aktif .galeri-foto a:nth-child(2) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.4s;
}
.galeri-animasi.aktif .galeri-foto a:nth-child(3) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.6s;
}
.galeri-animasi.aktif .galeri-foto a:nth-child(4) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.8s;
}

/* === Tambahan untuk kontrol animasi (default dimatikan) === */
.galeri-animasi .garis-merah,
.galeri-animasi .foto-container,
.galeri-animasi .foto-container img {
  animation: none;   /* tanpa !important supaya mudah dioverride */
  opacity: 0;
}

/* Aktifkan hanya ketika class 'aktif' muncul */
.galeri-animasi.aktif .garis-merah {
  animation: growLine 2s ease-out forwards !important;
}

.galeri-animasi.aktif .foto-container {
  animation: munculFoto 2s ease-out forwards !important;
  animation-delay: 2s !important;
}

.galeri-animasi.aktif .foto-container img:nth-child(1) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.2s !important;
}
.galeri-animasi.aktif .foto-container img:nth-child(2) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.4s !important;
}
.galeri-animasi.aktif .foto-container img:nth-child(3) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.6s !important;
}
.galeri-animasi.aktif .foto-container img:nth-child(4) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.8s !important;
}

/* Pastikan posisi awal gambar benar (hapus transform: translateY(0px) yang dobel) */
.foto-container img {
  width: 250px;
  height: 250px;
  border-radius: 15px;
  object-fit: cover;
  transform: translateY(20px); /* posisi awal turun 20px */
  opacity: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* === galeri foto brand === */
.galeri-foto-brand {
  display: flex;
  justify-content: center; /* konten di tengah horizontal */
  opacity: 0;
}

.galeri-foto-brand img {
  width: 88%;        
  height: auto;
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
/* Saat section aktif, gambar brand muncul */
.galeri-animasi.aktif .galeri-foto-brand {
  animation: munculFoto 0.5s ease-out forwards;
  animation-delay: 2s; /* setelah garis merah */
}

.galeri-animasi.aktif .galeri-foto-brand img {
  animation: naikFoto 0.6s ease-out forwards;
  animation-delay: 2.3s; /* muncul sedikit setelah container */
}










        /* ===== CONTENT ===== */
        section {
            padding:40px 20px;
            max-width:1100px;
            margin:auto;
        }
        h2 {
            color:#d62828;
            font-size:28px;
            margin-bottom:15px;
        }
        /* ====== LAYANAN ====== */
.layanan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 25px;
  padding: 20px;
}

/* Tampilan card umum */
.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(247, 127, 0, 0.4);
}

/* Gambar di dalam card */
.card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}



/* ============================
   Brand Colors
============================ */
:root {
    --primary: #D32F2F; 
    --secondary: #F4F4F4;
    --accent: #FF9800;
}

/* ============================
   Benefit Section
============================ */
.benefit-section {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary), #ffffff);
    max-width: 100%
}

.main-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
    max-width: 100%
}

/* ----------------
   TEXT COLUMN
---------------- */
.text-col {
    flex: 1;
    padding-left: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.subtitle {
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
}

/* ----------------
   BENEFIT CARD
---------------- */
.benefit-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    margin-bottom: 20px;

    background: #fff;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.icon {
    font-size: 28px;
    color: var(--accent);
}

.benefit-card h4 {
    margin: 0;
    font-size: 18px;
    color: var(--primary);
}

/* ----------------
   IMAGE COLUMN
---------------- */
.img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-left:200px;
    z-index: 1; /* lebih rendah dari red-fill */
}

.tech-img {
    max-width: 430px;
    width: 100%;
    position: relative;
    z-index: 3; /* di belakang red-fill */
    margin-bottom: -140px; /* atur tinggi overlap */
}




/* ============================
   RED-FILL (FULL WIDTH)
============================ */
.red-fill {
    width: 100%;
    background: var(--primary);
    padding: 30px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 3; /* lebih tinggi */
     margin-top: -120px;
}

.red-container {
    width: 100%;
    max-width: 1100px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #fff;
    font-family: "Poppins", sans-serif;
}
.red-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.red-logo img {
    width:80px;
    height: 80px;
    filter: brightness(1000%);
}

.red-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.red-info .phone {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.red-info .website {
    ffont-size: 1rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Fade Up */
.fade-up {
  opacity: 0;
  transform: translateY(0); /* Tidak geser layout */
  transition: opacity 0.8s ease;
}


.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}





/* ==========================================
   RED-FILL RESPONSIVE — TABLET (≤992px)
   ========================================== */
@media (max-width: 992px) {

  .red-fill {
    padding: 25px 20px;
    text-align: center;
  }

  .red-container {
    display: flex;
    flex-direction: column;     /* Susunan vertikal */
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;             /* Tengah */
  }

  .red-logo img {
    width: 150px;
    height: auto;
  }

  .red-info {
    text-align: center;
    font-size: 20px;
  }

  .red-info .phone,
  .red-info .website {
    margin: 6px 0;
  }
}



/* ==========================================
   RED-FILL RESPONSIVE — HANDPHONE (≤600px)
   ========================================== */
@media (max-width: 600px) {

  .red-fill {
    padding: 20px 12px;
  }

  .red-container {
    gap: 12px;
    max-width: 100%;
  }

  .red-logo img {
    width: 120px;
  }

  .red-info {
    font-size: 18px;
    line-height: 1.4;
    word-break: break-word;   /* cegah teks kepotong */
  }

  .red-info .phone,
  .red-info .website {
    display: block;
    font-size: 17px;
  }
}





/* ===== KONTENER ===== */
.container {
max-width: 1200px;
margin: auto;
padding: 40px 20px;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
}
.left {
flex: 1;
}
.left h1 {
font-size: 48px;
color: #00194f;
line-height: 1.2;
margin-bottom: 25px;
}
.features {
display: flex;
gap: 40px;
margin-bottom: 20px;
}
.feature-item {
display: flex;
align-items: flex-start;
gap: 12px;
}
.feature-item img {
width: 40px;
height: 40px;
}
.left p.desc {
font-size: 18px;
line-height: 1.6;
color: #333;
margin-bottom: 25px;
}
.contact-box {
display: flex;
align-items: center;
gap: 20px;
padding-top: 20px;
border-top: 2px solid #eee;
margin-top: 30px;
}
.contact-item {
display: flex;
align-items: center;
gap: 12px;
}
.contact-item .icon {
width: 45px;
height: 45px;
background: #ff7a00;
color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 22px;
}
.right {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.right img {
width: 100%;
border-radius: 10px;
}


    .peta{
            border-radius: 60px;    
        }
    .prgTentang{
        max-width: 800px;       /* Biar tidak terlalu lebar di layar besar */
  margin: 40px auto;      /* Tengah di layar dengan jarak atas-bawah */
  padding: 20px 30px;     /* Ruang dalam biar tidak terlalu mepet */
  line-height: 1.8;       /* Jarak antar baris */
  font-size: 18px;        /* Ukuran huruf pas dibaca */
  text-align: justify;    /* Teks rata kiri-kanan */
  font-family: "Segoe UI", Arial, sans-serif; /* Font modern & rapi */
  color: #333;            /* Warna teks nyaman di mata */
  /*background: #fafafa;    /* Latar belakang lembut */
  background: 
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),  /* lapisan putih semi transparan */
    url("gambar/logos-removebg.png");  /* ganti dengan path gambar lu */
  background-size: cover;
  background-position: center;
  border-radius: 12px;    /* Sudut melengkung biar tidak kaku */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Bayangan halus */

}
.prgTentang p:first-of-type {
  text-indent: 40px;
  margin-left: 10px;
}
.paragraf-profil h2 {
  text-align: center;     /* Judul di tengah */
  font-size: 26px;
  margin-bottom: 20px;
  color: #006699;         /* Warna aksen */
}
.paragraf-profil ul {
  margin: 15px 0 15px 20px;
  padding: 0;
}
.paragraf-profil li {
  margin-bottom: 8px;     /* Jarak antar list item */
}  

/* Hanya tampil sebagian dulu */
#tentang-text.collapsed {
  height: 250px;             /* Batasi tinggi awal */
  overflow: hidden;
  position: relative;
}
#tentang-text.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #fafafa, transparent);
}

/* Tombol Baca Selengkapnya */
#toggleBtn {
  margin-top: 15px;
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 10px 15px;
  background: #cc5f00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
#toggleBtn:hover {
  background: #a84800;
}




    
    /* ===== CAROUSEL (DIPERBAIKI) ===== */
.carousel {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  margin: 30px auto;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  height: auto;
}

.carousel-slide img {
  width: 100%;
  display: block;
  pointer-events: none;
}

.carousel-slide.first-load {
  animation: fadeInUp 1.2s ease-out forwards;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px) scale(1.05); } to { opacity:1; transform: translateY(0) scale(1); } }

/* Tombol — bersih dan tanpa syntax error */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999 !important;
  background: rgba(0,0,0,0.45);
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 28px;
  color: white;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
/* Agar tombol tidak naik ke navbar */
.carousel img {
  display: block;
  width: 100%;
  height: auto;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); transform: translateY(-50%) scale(1.08); }

.carousel-indicators { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
.indicator { width: 14px; height: 14px; background: rgba(0,0,0,0.3); border-radius: 50%; cursor: pointer; transition: transform 0.3s, background 0.3s; }
.indicator.active { background: #ff9800; transform: scale(1.5); box-shadow: 0 0 10px #ff9800; }



 


.galeri-animasi {
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin-top: 200px;
  margin-bottom: 200px;
}

/* Garis merah */
.garis-merah {
  width: 0;
  height: 4px;
  background-color: #d62828;
  margin: 0 auto 20px auto;
  border-radius: 2px;
  opacity: 0;
}

/* Foto container */
.galeri-foto {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
}

/* Bungkus gambar jadi link */
.galeri-foto a {
  display: inline-block;
  width: 250px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gambar di dalamnya */
.galeri-foto a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease, filter 0.3s ease;
  backface-visibility: hidden;
}

/* Efek hover zoom in/out */
.galeri-foto a:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) saturate(1.05);
}
.galeri-foto a:active img {
  transform: scale(0.97);
}

/* Foto brand (satu baris full) */
.galeri-foto-brand {
  display: flex;
  justify-content: center; /* konten di tengah horizontal */
  opacity: 0;
}

.galeri-foto-brand img {
  
  width: 88%;        /* supaya tetap responsif */
  height: auto;
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.galeri-foto-brand img {
  width: 100% !important;     /* penuh kiri-kanan */
  max-width: 100% !important; /* cegah terbatas */
  height: auto;               /* tinggi proporsional */
  border-radius: 0 !important;/* hilangkan lengkung sudut */
  margin: 0 !important;       /* hilangkan jarak */
  display: block;             /* biar nempel */
}
/* ============================
   GALERI RESPONSIVE – TABLET
   ============================ */
@media (max-width: 992px) {

  .galeri-animasi {
    text-align: center;
  }

  .galeri-foto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* TENGAHKAN GAMBAR */
    gap: 18px;
  }

  .galeri-foto a img {
    display: block;
    margin: 0 auto;
    max-width: 240px;
  }

  .galeri-foto-brand {
    display: flex;
    justify-content: center;
  }

  .galeri-foto-brand img {
    max-width: 320px;
    margin: 20px auto 0;
    display: block;
  }
}


/* ============================
   GALERI RESPONSIVE – MOBILE
   ============================ */
@media (max-width: 600px) {

  .galeri-foto {
    gap: 14px;
  }

  .galeri-foto a img {
    max-width: 180px;  /* Sesuaikan ukuran untuk HP */
  }

  .galeri-foto-brand img {
    max-width: 260px;
  }
}



/* === Keyframes === */
@keyframes growLine {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}

@keyframes munculFoto {
  to { opacity: 1; }
}

@keyframes naikFoto {
  to { transform: translateY(0); opacity: 1; }
}

/* === Aktif saat disorot === */
.galeri-animasi.aktif .garis-merah {
  animation: growLine 2s ease-out forwards;
}

.galeri-animasi.aktif .galeri-foto {
  animation: munculFoto 0.1s linear forwards;
  animation-delay: 2s; /* foto muncul setelah garis selesai */
}

.galeri-animasi.aktif .galeri-foto a:nth-child(1) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.2s;
}
.galeri-animasi.aktif .galeri-foto a:nth-child(2) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.4s;
}
.galeri-animasi.aktif .galeri-foto a:nth-child(3) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.6s;
}
.galeri-animasi.aktif .galeri-foto a:nth-child(4) {
  animation: naikFoto 0.5s ease-out forwards;
  animation-delay: 2.8s;
}

/* === Tambahan untuk kontrol animasi (default dimatikan) === */
.galeri-animasi .garis-merah,
.galeri-animasi .foto-container,
.galeri-animasi .foto-container img {
  animation: none;   /* tanpa !important supaya mudah dioverride */
  opacity: 0;
}

/* Aktifkan hanya ketika class 'aktif' muncul */
.galeri-animasi.aktif .garis-merah {
  animation: growLine 2s ease-out forwards !important;
}

.galeri-animasi.aktif .foto-container {
  animation: munculFoto 2s ease-out forwards !important;
  animation-delay: 2s !important;
}

.galeri-animasi.aktif .foto-container img:nth-child(1) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.2s !important;
}
.galeri-animasi.aktif .foto-container img:nth-child(2) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.4s !important;
}
.galeri-animasi.aktif .foto-container img:nth-child(3) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.6s !important;
}
.galeri-animasi.aktif .foto-container img:nth-child(4) { 
  animation: naikFoto 0.5s ease-out forwards !important;
  animation-delay: 2.8s !important;
}

/* Pastikan posisi awal gambar benar (hapus transform: translateY(0px) yang dobel) */
.foto-container img {
  width: 250px;
  height: 250px;
  border-radius: 15px;
  object-fit: cover;
  transform: translateY(20px); /* posisi awal turun 20px */
  opacity: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* === galeri foto brand === */
.galeri-foto-brand {
  display: flex;
  justify-content: center; /* konten di tengah horizontal */
  opacity: 0;
}

.galeri-foto-brand img {
  width: 88%;        
  height: auto;
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
/* Saat section aktif, gambar brand muncul */
.galeri-animasi.aktif .galeri-foto-brand {
  animation: munculFoto 0.5s ease-out forwards;
  animation-delay: 2s; /* setelah garis merah */
}

.galeri-animasi.aktif .galeri-foto-brand img {
  animation: naikFoto 0.6s ease-out forwards;
  animation-delay: 2.3s; /* muncul sedikit setelah container */
}










        /* ===== CONTENT ===== */
        section {
            padding:40px 20px;
            max-width:1100px;
            margin:auto;
        }
        h2 {
            color:#d62828;
            font-size:28px;
            margin-bottom:15px;
        }
        /* ====== LAYANAN ====== */
.layanan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 25px;
  padding: 20px;
}

/* Tampilan card umum */
.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(247, 127, 0, 0.4);
}

/* Gambar di dalam card */
.card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ========== FIX: FORCE BENEFIT CENTER (override) ========== */

/* Pastikan container pusat dan tidak ada offset horizontal */
.benefit-section .container {
  max-width: 980px !important;    /* batasi lebar untuk konsistensi */
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.benefit-section .text-col h3 {
    font-size: 1rem;       /* ukuran teks */
    font-weight: 700;        /* tebal ala heading */
    color: #d62828;          /* merah khas Sinergi */
    margin-bottom: 5px;     /* jarak bawah */
    line-height: 1.3;        /* rapi & mudah dibaca */
}


/* Pastikan main-layout tidak mendorong ke kanan dan centering */
.benefit-section .main-layout {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  box-sizing: border-box !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Teks kolom: selalu di tengah kolom, dan batasi lebarnya */
.benefit-section .text-col {
  margin: 0 auto !important;
  text-align: left; /* desktop tetap kiri agar rapi */
  width: 52% !important;
  max-width: 560px !important;
  box-sizing: border-box !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* Jika card-card berada terlalu ke kiri, center setiap card */
.benefit-section .benefit-card {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* desktop: icon left, text right */
  gap: 14px !important;
  margin: 12px 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Jika ada image (tech-img) berpengaruh, reset negative margins only inside benefit */
.benefit-section .tech-img {
  margin: 0 auto !important;
  display: block !important;
  max-width: 420px !important;
  margin-bottom: 0 !important;   /* pastikan tidak menarik layout ke atas/kanan */
}

/* ========== RESPONSIVE OVERRIDES: TABLET & MOBILE ========== */

/* Tablet: tumpuk dan center semua */
@media (max-width: 992px) {
  .benefit-section .main-layout {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .benefit-section .text-col {
    width: 100% !important;
    max-width: 640px !important;
    text-align: center !important;
    padding: 0 8px !important;
  }

  .benefit-section .benefit-card {
    justify-content: center !important;  /* icon + teks center */
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .benefit-section .img-col {
    width: 50% !important;
    display: flex !important;
    justify-content: center !important;
    
    margin-right: 220px !important;
    
  }

  /* Hapus offset negatif yang mungkin merusak centering */
  .benefit-section .tech-img { margin-bottom: 0 !important; transform: none !important; }
}

/* Mobile: full-width centered */
@media (max-width: 600px) {
  .benefit-section .container { padding-left: 14px !important; padding-right: 14px !important; }
  .benefit-section .text-col { padding: 0 12px !important; width: 100% !important; }
  .benefit-section .benefit-card {
    flex-direction: row !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 12px !important;
  }
  .benefit-section .icon { margin-right: 8px !important; }
}

/* Safety: jika ada float/position yang mempengaruhi, neutralize di scope benefit */
.benefit-section * {
  float: none !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

@media (max-width: 992px) {

  .container {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 25px;
    padding: 30px 20px !important;
  }

  .container .left {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

  .container .left h1 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .container .features {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .container .feature-item {
    justify-content: center !important;
    text-align: center;
  }

  .container .desc {
    font-size: 17px;
    line-height: 1.6;
  }

  .container .contact-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
    align-items: center;
  }

  /* Right Image Section */
  .container .right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .container .right img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {

  .container {
    padding: 25px 12px !important;
  }

  .container .left h1 {
    font-size: 26px;
  }

  .container .desc {
    font-size: 15px;
  }

  .container .feature-item {
    gap: 12px;
  }

  .container .contact-box {
    gap: 10px;
  }

  /* Gambar dibuat 1 kolom agar rapi */
  .container .right {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .container .right img {
    max-width: 100%;
  }
}

/* =======================
   WELCOME SECTION (FINAL)
   ======================= */

.welcome-section {
    width: 100%;
    max-width: 100%;

    /* Hilangkan jarak dengan red-fill di atasnya */
    margin-top: 0 !important;
    padding-top: 0 !important;

    /* Gaya Section */
    background-image: url('gambar/logos-900.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
    padding: 60px 20px 80px; /* padding bawah lebih besar agar lega */
    text-align: center;
    min-height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    overflow: hidden; /* jaga agar tidak overflow */
}

/* Overlay gelap agar teks terbaca */
.welcome-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

/* Kontainer isi */
.welcome-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Judul */
.welcome-title {
    font-size: 36px;
    font-weight: 700;
    color: whitesmoke;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}

/* Paragraf */
.welcome-text {
    font-size: 18px;
    color: whitesmoke;
    line-height: 1.8;
    margin-bottom: 30px;
}



    .cta-button {
        padding: 12px 28px;
        font-size: 16px;
        font-weight: 600;
        background: #f77f00;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .cta-button:hover {
        background: #d62828;
        transform: scale(1.05);
    }

    /* Animasi sambutan */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    
    /* Style untuk tombol deskripsi */
.card .toggle {
  background-color: #cc5f00; /* warna orange aman */
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 8px; /* rounded */
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15); /* soft shadow */
  transition: background-color 0.3s;
}

.card .toggle:hover {
  background-color: #a84800; /* warna hover aman */
}


/* === SECTION ARTIKEL === */
#artikel {
  padding: 20px 20px;
  max-width: 1300px;
  margin: 80px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Judul ARTIKEL */
#artikel .artikel-title {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  color: #222;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
  display: block;
  text-align: center;
  
}

#artikel .artikel-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #d62828, #f77f00);
  border-radius: 2px;
}

/* Grid Layout */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* default */
  gap: 30px;
}


/* Artikel Card */
.artikel-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artikel-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(214, 40, 40, 0.25);
}

/* Gambar Artikel */
.artikel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artikel-item:hover img {
  transform: scale(1.05);
}

/* Konten Artikel */
.artikel-date {
  font-size: 14px;
  color: #555;
  margin: 15px 20px 5px;
  text-align: left;
}


.artikel-heading {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 20px 20px;
  text-align: left;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.artikel-item:hover .artikel-heading {
  color: #d62828;
}


  /* Efek hover tombol Selengkapnya */
  #jangkauan-wilayah a {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #jangkauan-wilayah a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ffb84d, #ff7b00);
    transition: all 0.4s ease;
    z-index: -1;
  }

  #jangkauan-wilayah a:hover::before {
    left: 0;
  }

  #jangkauan-wilayah a:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 123, 0, 0.45);
    transition: all 0.3s ease;
  }

  #jangkauan-wilayah a:active {
    transform: scale(0.97);
    box-shadow: 0 3px 8px rgba(255, 123, 0, 0.4);
  }





/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: #ddd;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 260px;
}

.footer-col h3 {
  color: #ffcc00;
  margin-bottom: 12px;
  font-size: 1.15em;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
}

.footer-col p,
.footer-col ul li {
  text-align: left;
  line-height: 1.6;
  font-size: 0.95em;
  color: #eee;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li svg {
  flex-shrink: 0;
}

.logofooter {
  margin-bottom: 10px;
}

.logofooter img {
  width: 200px;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  display: block;
}


.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95em;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateX(5px);
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85em;
  margin-top: 25px;
  color: #eee;
}
/* ==================== WHATSAPP FLOAT ==================== */
.wa-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float img {
  width: 40px;
  height: 40px;
  display: block;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: orangered;
  color: white;
  border-radius: 50%;
  padding: 12px 15px;
  font-size: 20px;
  z-index: 99999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #ff7043;
  transform: scale(1.1);
}

/* ==================== RESPONSIVE FOOTER ==================== */
@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 35px;
  }

  .footer-col {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-col ul li {
    justify-content: center;
    text-align: center;
  }

  .footer .social-icons a {
    justify-content: center;
  }

  .logofooter img {
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 14px;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }

  .footer-col ul li {
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul li svg {
    margin-bottom: 6px;
  }
  
  .footer-bottom p {
    font-size: 13px;
  }
}

/* ==================== HIGHLIGHT SEARCH ==================== */
mark {
  background-color: yellow;
  font-weight: bold;
}
/* ===== FAQ ===== */
.faq-artikel{
  margin:40px 0;
  font-family:Poppins,sans-serif;
}

.faq-artikel h2{
  font-size:1.8rem;
  margin-bottom:22px;
  font-weight:700;
  color:#1e3a8a;
}

/* Card */
.faq-artikel details{
  background:#f0f7ff;
  border:1px solid #bfdbfe;
  border-radius:10px;
  padding:16px 18px;
  margin-bottom:14px;
  transition:.25s;
}

/* SUMMARY RESET TOTAL */
.faq-artikel summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding-right:32px;
  font-weight:600;
  color:#1e40af;
}

/* HAPUS SEMUA MARKER BAWAAN */
.faq-artikel summary::marker{ content:""; }
.faq-artikel summary::-webkit-details-marker{ display:none; }

/* PANAH CUSTOM */
.faq-artikel summary::after{
  content:"▼";
  position:absolute;
  right:0;
  top:0;
  font-size:1.2rem;
  color:#3b82f6;
  transform:rotate(0deg);
  transition:transform .3s ease,color .3s ease;
}

/* TERBUKA → PANAH KE ATAS */
.faq-artikel details[open] summary::after{
  transform:rotate(180deg);
  color:#1d4ed8;
}

/* ISI */
.faq-artikel details p{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #bfdbfe;
  font-size:.95rem;
  line-height:1.6;
  color:#1e3a8a;
}

/* OPEN EFFECT */
.faq-artikel details[open]{
  background:#e0efff;
  border-color:#3b82f6;
  box-shadow:0 6px 16px rgba(59,130,246,.15);
}





.map-wrapper {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.map-static {
  width: 100%;
  height: 70%;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.map-static:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}