/* =========================
   BASE & RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F8FAFC;
  margin: 0;
  padding: 0;
  
}

html, body {
  height: 100%;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}

h1 {
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 32px;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1B9C85;
  margin: 15px auto 0;
  border-radius: 2px;
}

p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1200px;
}

.section {
  padding: 90px 0;
}

.section-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0;
}

/* =========================
   UTILITIES
========================= */

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(.16,1,.3,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }


.btn {
  border-radius: 30px;
}

/* NAVBAR SECTION */
.navbar-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}


.navbar {
  background: #ffffff;
  padding: 14px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #1B9C85 !important;
}
.navbar {
  border-bottom: 1px solid #e2e8f0;
} 

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 28px;
  color: #333 !important;
  position: relative;
  transition: 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -6px;
  left: 0;
    background-color: #1B9C85;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #1B9C85 !important;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* BRAND TEXT */
.brand-name {
  font-weight: 700;
  font-size: 15px;
  color: #111;
  line-height: 1;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 2px;
}

/* END NAVBAR */


/* HERO SECTION */

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  min-height: 100vh;
}

.hero h1 {
  line-height: 1.2;
}

.hero-modern {
  position: relative;
  padding: 150px 0 110px;
  background: linear-gradient(135deg, #0f4c75 0%, #1b8a7b 100%);
  color: white;
  overflow: hidden;
}

.hero-modern::before {
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  top:-200px;
  right:-200px;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.hero-product {
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.25));
}

.hero-product:hover {
  transform: translateX(40px) translateY(-8px);
}

.btn-modern {
  position: relative;
  overflow: hidden;
}

.btn-modern::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-modern:hover::after {
  opacity: 1;
}

.btn-accent {
  background-color: white;
  color: #0F4C75;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-accent:hover {
  background-color: #f1f5f9;
}

.btn-primary:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

.hero-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateX(40px) translateY(0px); }
  50% { transform: translateX(40px) translateY(-10px); }
  100% { transform: translateX(40px) translateY(0px); }
}

.hero-product {
  max-width: 720px;
  animation: float 6s ease-in-out infinite;
}

/* END HERO */

/* ================= ABOUT ================= */

#about {
  padding: 120px 0;
  background: #ffffff;
}

#about h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  position: relative;
}

#about h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #1B9C85;
  margin: 18px auto 0;
  border-radius: 10px;
}

#about p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

  #about {
    padding: 90px 20px;
  }

  #about h2 {
    font-size: 28px;
  }

}

@media (max-width: 576px) {

  #about {
    padding: 70px 18px;
  }

  #about h2 {
    font-size: 24px;
  }

  #about p {
    font-size: 15px;
    line-height: 1.7;
  }

}


/* COMPANY STATS */

.company-stats{
padding:90px 0;
background:#ffffff;
border-top:1px solid #edf1f6;
border-bottom:1px solid #edf1f6;
}

.company-stats h3{
font-size:42px;
font-weight:700;
color:#0d6efd;
letter-spacing:1px;
}

.company-stats p{
margin:0;
font-size:15px;
color:#6c757d;
letter-spacing:.5px;
}

.company-stats .col-md-3{
position:relative;
}

.company-stats .col-md-3:not(:last-child)::after{
content:"";
position:absolute;
right:0;
top:50%;
transform:translateY(-50%);
width:1px;
height:50px;
background:#e9edf3;
}

.company-stats .col-md-3{
transition:transform .25s ease;
}

.company-stats .col-md-3:hover{
transform:translateY(-4px);
}

/* responsive */

@media (max-width:768px){

.company-stats{
padding:70px 0;
}

.company-stats .col-md-3{
margin-bottom:30px;
}

.company-stats h3{
font-size:34px;
}

}
/* END COMPANY STATS */


/* PRODUCT SECTION */

.product-section {
  
  background: #f8fafc;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.section-header p {
  color: #6b7280;
  margin-top: 10px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef2f7;
  overflow: hidden;   /* ini penting biar radius kepake */
  transition: all 0.4s ease;
  padding: 0;         /* hapus padding global */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s; 
}


.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;  /* biar full isi */
  display: block;
}



.product-content {
  padding: 28px;      /* pindahin padding ke konten */
}

.product-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.product-card p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #1B9C85;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.product-link .arrow {
  font-size: 13px;
  transition: transform 0.3s ease;
}


.product-link:hover {
  color: #0f766e;
}

.product-link:hover .arrow {
  transform: translateX(4px);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.section-header::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1B9C85;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.product-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #1B9C85;
  transition: width 0.3s ease;
}

.product-link:hover::after {
  width: 100%;
}

/* =========================
   PRODUCT SECTION MOBILE
   ========================= */

@media (max-width: 991px) {

  .product-section {
    padding: 90px 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
  }

  .product-card img {
    height: 200px;
  }

  .product-content {
    padding: 24px;
  }

}

@media (max-width: 576px) {

  .product-section {
    padding: 70px 18px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-card img {
    height: 180px;
  }

  .product-content {
    padding: 20px;
  }

  .product-card h5 {
    font-size: 17px;
  }

  .product-card p {
    font-size: 13px;
  }

  .product-link {
    font-size: 13px;
  }

}

/* END PRODUCT */


/* COMPLIANCE SECTION */

.compliance-section{
padding:100px 0;
background:#f8fafc;
}

.section-header{
max-width:650px;
margin:auto;
}

.section-label{
font-size:12px;
letter-spacing:2px;
font-weight:600;
color:#0d6efd;
display:inline-block;
margin-bottom:8px;
}

.section-header h2{
font-weight:700;
}


.compliance-card{
background:#fff;
padding:40px 30px;
border-radius:16px;
border:1px solid #edf1f6;
transition:all .3s ease;
}

.compliance-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.compliance-badge{
height:70px;
margin-bottom:18px;
transition:transform .3s ease;
}

.compliance-card:hover .compliance-badge{
transform:scale(1.08);
}

.compliance-card h5{
font-weight:600;
margin:0;
}



/* PARTNER SECTION */
#partner {
  background: #f8fafc;
  padding: 110px 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.partner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-box {
  width: 160px;          /* samakan lebar */
  height: 80px;          /* samakan tinggi */
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  max-width: 120px;      /* batasi lebar */
  max-height: 45px;      /* batasi tinggi */
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transform: scale(1);
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
#partner h2 {
  font-weight: 700;
  margin-top: 12px;
}

.partner-box:hover .partner-logo {
  transform: scale(1.08);
  filter: grayscale(0%);
  opacity: 1;
}

#partner p {
  max-width: 600px;
  margin: 15px auto 0;
  color: #6b7280;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1B9C85;
  font-weight: 600;
}
/* END PARTNER */

/* CLIENT SECTION */
.client-marquee {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.client-track {
  display: flex;
  width: max-content;
  gap: 25px;
  animation: scrollClients 35s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}
.client-box {
  width: 150px;          /* area sama semua */
  height: 100px;         /* tinggi container sama */
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  max-height: 50px;      /* samakan tinggi visual */
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  transform: scale(1);
}

.client-box:hover .client-logo {
  transform: scale(1.12);
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

/* ANIMATION */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* END CLIENT */

/* DIVIDER */
.section-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0;
}
/* END DIVIDER */

/* CONTACT SECTION */
.contact-section {
  padding: 110px 0;
  background: #F8FAFC;
}

.contact-desc {
  color: #64748B;
  max-width: 450px;
}

.contact-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-box p {
  margin-bottom: 20px;
  color: #334155;
}
/* END CONTACT */


/* FOOTER */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0;
  font-size: 14px;
}

.footer-logo {
  max-height: 50px;
}

.footer-title {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-desc {
  max-width: 320px;
  line-height: 1.7;
}

.footer p {
  margin-bottom: 10px;
}

.footer a {
  color: #94A3B8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 13px;
  color: #64748B;
}
/* END FOOTER */

/* WA */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1B9C85;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}
/* END WA */

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* MOBILE */
@media (max-width: 992px) {

  .hero-modern {
    padding: 100px 20px 80px 20px;
    text-align: center;
  }

  .hero-modern h1 {
    font-size: 28px;
  }

  .hero-modern p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-product {
    max-width: 500px;
    transform: translateX(0);   /* reset offset */
    right: 0;
    margin-top: 40px;
  }

}

@media (max-width: 768px) {

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }

  .navbar-nav {
    padding-top: 10px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-sub {
    font-size: 9px;
  }

}

@media (max-width: 768px) {

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }

  .navbar-nav {
    padding-top: 10px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-sub {
    font-size: 9px;
  }

}

@media (max-width: 768px) {

  .product-card img {
    height: 180px;
  }

  .product-content {
    padding: 20px;
  }

  .product-card h5 {
    font-size: 16px;
  }

  .product-card p {
    font-size: 13px;
  }

}

@media (max-width: 768px) {

  .partner-wrapper {
    gap: 30px;
  }

  .partner-box {
    width: 120px;
    height: 60px;
  }

  .partner-logo {
    max-width: 90px;
  }

  .client-box {
    width: 110px;
    height: 70px;
  }

  .client-logo {
    max-height: 35px;
  }

}

@media (max-width: 768px) {

  .footer {
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer .col-lg-4 {
    margin-bottom: 30px;
  }

}


@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-track {
  animation: marquee 40s linear infinite;
}

/* REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.4,0,.2,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}