html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* =====================
   RESET & GLOBAL
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
    padding-top: 70px; /* sesuaikan tinggi header */
    max-width: 100%;
    overflow-x: hidden;
}

/* =====================
   HEADER
===================== */
.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 10px 60px;
    background: #0f3d2e;
    color: #fff;
    top: 0;
    left: 0;
    min-height: 70px; /* Agar rapih di layar hp */
    width: 100%;
    z-index: 9999; 
}

.nav {
    display: flex;
    /*gap: 2px;*/
    justify-content: center;
    align-items: center;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /*font-size: 1rem;*/
     white-space: nowrap; /* ⬅️ PENTING */
}

.nav a {
    color: yellow;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 1.2rem;
    gap: 3px;
}

.nav a:hover {
    text-decoration: underline;
}

.logo{
    position: relative;
    margin-left: -60px;
    padding:  15px;
    margin-top: -5px;
}

.logo img {
    position: relative; 
    height: 50px;
    border-radius: 7px;
    /*margin-left: 50x;*/
    width: auto;
    object-fit: contain;
    display: block;
    /* margin-top: 10px; */
    /*padding: 300px;*/
    border-radius: 12px;
}

.logo_nan_text {
    color: rgb(243, 236, 236);
    margin-left: 10px;
    margin-top: -10px;
    font-size: 1.2rem;
    padding: 18px;
}

.nan-1 {
    color: blue;
    /* background-color: #f4f7f6; */
    /* margin-left: -700px; */
}


/* ==== HOME ==== */
#home {
   margin-top: -5px;
}

/* =====================
   HERO
===================== */
.hero {
    background: linear-gradient(135deg,
        red,
        yellow,
        blue,
        rgba(117, 3, 3, 0.767),
        rgba(2, 82, 44, 0.8),
        grey,
        blue,
        yellow,
        red);
    color: #fff;
    padding: 140px 60px;
    text-align: center;
}

.noah-1 {
    color: rgb(203, 204, 204);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px; 
}

.wlchero{
    font-size: 3.2rem;
    font-style: italic;
    font-weight: bolder;
    color: whitesmoke;
}


.hero p {
    max-width: 900px;
    margin: auto;
    font-size: 20px;
    color: rgb(8, 253, 241);
}

/* =====================
   SECTION
===================== */
.section {
    padding: 80px 60px;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0f3d2e;
    margin-left: -6px;
}

.section h3 {
    margin-top: 20px;
    color: #0f3d2e;
}

.misi-2 {
    /* color: blue; */
    margin-left: 25px;
}

.section.gray {
    background: #f4f7f6;
    /* background: #0a5cff; */
}

.section.dark {
    background: #0f3d2e;
    color: #fff;
}

.section.dark h2 {
    color: #fff;
}

/* =====================
   BUSINESS
===================== */
.business-list {
    list-style: none;
    font-size: 18px;
}

.business-list li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.business-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0f3d2e;
}

.legal-list{
  /* background-color: rgba(128, 128, 128, 0.274); */
  margin-left: 22px;
}

.org-list{
    margin-left: 22px;
}

/* =====================
   WHY US
===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.why-grid div {
    background: linear-gradient(100deg, 
    yellow,
    green,
    purple,
    blue,
    rgba(139, 137, 138, 0.733),
    red);
    
    padding: 30px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgb(14, 14, 13);
    border: 1px solid rgba(0, 0, 0, 0.541);
    color: yellow;
    font-size: 1.3rem;
}

/* CONTACT CORPORATE */
.contact-subtitle{
    color: yellow;
    font-size: 1.2rem;
}

/* =====================
   GALLERY
===================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 200px;
}


/* =====================
   FOOTER
===================== */
.footer {
    background: #575656;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 15px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 10px 60px;
    }

    .nav a {
        margin-left: 15px;
        margin-top: 100px 30px;
        padding: 30px 10px;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section {
        padding: 60px 20px;
    }
    
    ::-webkit-scrollbar {
    display: none;
    }
}


/* =====================
   ANIMATION EFFECT
===================== */
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   HEADER SHRINK
===================== */
.header.shrink {
    padding: 10px;
    background: #0f3d2e;
    /*background: #575656;*/
    transition: all 0.3s ease;
}

/* =====================
   HOVER ELEGANT
===================== */
.pic-card:hover,
.purch-card:hover,
.why-grid div:hover,
.gallery img:hover {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}


/* =====================
   LIGHTBOX GALLERY
===================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation: zoomIn 0.4s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* CTA - CENTER */

.cta-box {
    background-color: rgb(3, 22, 3);
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: rgb(247, 247, 5);
    text-align: center;
    font-style: italic;
}

.cta_line_1 /*cta-box h2*/ {
    margin-bottom: 16px;
    color: #077afd;
    
}

.cta_line_2 /*cta-box p*/ {
    line-height: 1.6;
    text-align: center;
    color: rgb(246, 246, 248);
    font-style: italic;
}


/* TULISAN DALAM INGLISH */
/* ===================== */
.cta_line_3 {
 color: rgb(245, 138, 231)
}

.miring{
 font-size: 1.2rem;
}


@media (max-width: 768px) {
    .contact-cta-wrapper {
        flex-direction: column;
    }
}


/* UNTUK CONTACT NEW */
/* ================= */
.contact-corporate {
  padding: 80px;
  background: linear-gradient(130deg, 
  rgb(7, 29, 7),
  rgb(3, 22, 3));
  /* background: #f5f7fa; */
  color: whitesmoke;
  text-align: center;
}

.company-info {
  margin-bottom: -10px;
  font-size: 16px;
  color: yellow;
}

.pic-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pic-card {
  background: black;
  width: 400px;
  padding: 40px 10px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(248, 248, 248, 0.664);
  text-align: center;


  /* background: #fff; */
  /* border-radius: 12px; */
  overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    height: 320px;          /* 🔒 KUNCI TINGGI */
    display: flex;
    flex-direction: column;
}

.pic-card img {
    width: 100%;
    height: 200px;          /* 🔒 KUNCI TINGGI */
    object-fit: cover;      /* 🔥 PENTING */
}

.pic-card .info {
    padding: 12px;
    flex: 1;
    text-align: center;
}

.pic-card h3 {
  margin-bottom: 5px;
}

.pic-role {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.pic-card p {
  margin: 6px 0;
}

.pic-card a {
  color: #0a5cff;
  text-decoration: none;
}

.btn-wa {
  /* position: fixed; */
  display: inline-block;
  margin-top: 25px;
  padding: 10px 10px;
  background: linear-gradient(350deg, rgb(230, 69, 6), rgb(223, 220, 219));
  /* background: #25d366; */
  color: rgb(26, 25, 25) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.4rem;
}


/* ================================
   FIXED LANGUAGE SWITCHER (AMAN)
================================ */
.lang-wrapper {
    position: fixed;
    top: 2px;
    right: 7px;
    z-index: 9999;
}

.lang-wrapper select {
    background: rgba(65, 64, 64, 0.342);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0);
    padding: 2px 10px;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
}

.lang-wrapper select option {
    color: #000;
}

/* FIX GLOBAL RESPONSIVE */

/*{*/
/*  box-sizing: border-box;*/
/*}*/

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

/* UNTUK PENGATURAN DI HP LEBAR LAYAR DLL */
@media (max-width: 768px) {

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .container,
  .section,
  .content {
    width: 100%;
    padding: 16px;
  }

  h1 { font-size: 15px; }
  h2 { font-size: 10px; }
  p  { font-size: 14px; }

  .hero {
    height: auto;
    padding: 40px 16px;
  }
}


@media (max-width: 768px) {
  nav {
    display: flex;
    flex-wrap: wrap;
  }
}

nav {
  display: none;
}

nav.open {
  display: block;
}


/* =========================
   MOBILE FIX FINAL (AMAN)
========================= */
@media (max-width: 768px) {
    
  /* ===== HEADER ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 70px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0f3d2e;
    z-index: 9999;
  }

  /* ===== LOGO (KIRI ATAS, DIAM) ===== */
  .logo {
    position: absolute;
    top: 10px;
    left: 70px;
    padding: 0;
  }

  .logo img {
    height: 38px;
    width: auto;
    display: block;
  }

  /* ===== NAV (1–2 BARIS) ===== */
  .nav {
    margin-top: 40px; /* kasih ruang dari logo */
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px; /* baris & kolom */
    white-space: normal;
  }

  .nav a {
    font-size: 13px;
    margin: 0;
    padding: 6px 8px;
    line-height: 1.2;
    text-align: center;
  }
  
  .noah-1{
      font-size: 2rem;
  }
  
  .wlchero{
      margin-top: 30px;
      font-size: 2rem;
  }

}

/* PENGATURAN HEADER DI MOBILE HP */
@media (max-width: 768px) {
  header {
    min-height: 60px;
    
  }
}

/* PENGATURAN NAV DI MOBILE HP */
@media (max-width: 768px) {

  .nav {
    position: static;  
    transform: none;
    flex-wrap: wrap;      
    justify-content: center;
    gap: 8px;
  }

  .nav a {
    margin-left: 0;
    font-size: 14px;
    padding: 6px 8px;
  }
}


/* =========================
   MOBILE – COMPANY INFO FIX
========================= */
@media (max-width: 768px) {

  .company-info {
    padding: 20px 16px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-corporate {
    padding: 30px 16px;
  }

  .contact-corporate h2 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .contact-corporate p {
    font-size: 14px;
    line-height: 1.5;
    margin: 6px 0;
    word-break: break-word;
  }

  .contact-corporate p strong {
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
  }

}

/* =========================
   MOBILE – PIC CARD FIX
========================= */
@media (max-width: 768px) {

  .pic-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 14px;
  }

  .pic-card {
    width: 100%;
    max-width: 100%;
    height: auto;              /* ⬅️ penting */
    padding: 20px 14px;
    box-sizing: border-box;
    border-radius: 12px;
  }

  .pic-card h3 {
    font-size: 16px;
    margin: 8px 0;
    line-height: 1.4;
  }

  .pic-card p {
    font-size: 13px;
    line-height: 1.4;
    margin: 4px 0;
    word-break: break-word;    /* email panjang aman */
  }

  .pic-card a {
    font-size: 13px;
  }

  .btn-wa {
    display: block;
    width: 100%;
    margin-top: 14px;
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }

}


/* =========================
   FOOTER FIXED FINAL – PT NAN
========================= */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38px;

  background: linear-gradient(125deg,
  red,
  black,
  green,
  pink,
  purple);

  /*background: #575656;*/
  overflow: hidden;
  z-index: 9999;
}

/* TRACK */
.footer-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* TEKS */
.footer-text {
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  animation: jalanPP 14s linear infinite alternate;
}

/* GERAK FULL KIRI ⇄ KANAN */
@keyframes jalanPP {
  0% {
    transform: translate(-110%, -50%);
  }
  100% {
    transform: translate(calc(100vw + 10%), -50%);
  }
}






/*.footer {*/
/*  position: fixed;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 100%;*/

/*  background: #575656;*/
/*  color: #fff;*/
/*  text-align: center;*/

/*  font-size: 11px;*/
/*  padding: 10px 8px;*/
/*  line-height: 1.4;*/

/*  white-space: nowrap;*/
/*  z-index: 9998;*/
/*}*/


/* =========================
   FOOTER ANIMATION PULANG-PERGI
========================= */

/*.footer {*/
/*  position: fixed;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 100%;*/

/*  background: #575656;*/
/*  color: #fff;*/
/*  overflow: hidden;*/

/*  z-index: 9998;*/
/*}*/

/* TEKS JALAN */
/*.footer-marquee {*/
/*  display: inline-block;*/
/*  white-space: nowrap;*/
/*  padding-left: 100%;*/

/*  animation: jalanPP 14s ease-in-out infinite alternate;*/
/*}*/

/* GERAK KIRI ⇄ KANAN */
/*@keyframes jalanPP {*/
/*  from {*/
/*    transform: translateX(-100%);*/
/*  }*/
/*  to {*/
/*    transform: translateX(0%);*/
/*  }*/
/*}*/


@media (max-width: 768px) {
  .footer-marquee {
    animation-duration: 12s;
    font-size: 10px;
  }
}


/* =========================
   CTA BOX - MOBILE RAPiH (TANPA GANTI WARNA)
========================= */
@media (max-width: 768px) {

  .cta-box h2 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;

    /* WARNA TETAP */
    color: yellow;
  }

  .cta-box p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 6px;

    /* WARNA TETAP */
    color: yellow;
  }

}




/* =========================
   CLS FIX – PT NAN
========================= */

 Prevent layout shift 
img {
  display: block;
}

 Header stability 
header {
  min-height: 70px;
}

 Logo stability 
.logo img {
  max-width: 40px;
  height: auto;
}

 Language switcher isolation 
.lang-wrapper {
  contain: layout;
}

* {
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: 100%;
}


@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding: 0 10px;
    }
}

