:root{
  --bg: #eaf4ff;
  --text: #0b1220;
  --muted: #4b5563;
  --primary: #4a78d8;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  /* dark nav/footer */
  --dark-0: #050712;
  --dark-1: #070a16;
  --dark-2: #0b1024;
  --dark-line: rgba(255,255,255,.08);
  --dark-text: rgba(255,255,255,.92);
  --dark-muted: rgba(255,255,255,.72);
}

/* =========================
   RESET + LAYOUT
   ========================= */
*{ box-sizing:border-box; }
html,body{
  margin:0;
  padding:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

/* Sticky footer layout */
body{
  min-height: 100vh;
  display:flex;
  flex-direction:column;
}
main{ flex: 1 0 auto; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* =========================
   NAVBAR (DARK)
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background:
    radial-gradient(circle at 10% 10%, rgba(109,77,255,.18), transparent 42%),
    radial-gradient(circle at 90% 30%, rgba(74,120,216,.14), transparent 55%),
    linear-gradient(180deg, var(--dark-1), var(--dark-0));
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(10px);
}

.nav3{
  height: 82px;                 /* lebih lega (gak mepet bawah) */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 6px 0;               /* jarak atas bawah */
}

/* brand */
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo{
  width: 150px;                 /* logo dibesarin di sini */
  height: auto;
  display:block;
  /* kalau logo kamu gelap & gak keliatan di navbar gelap, nyalain ini:
  filter: brightness(1.35) contrast(1.05);
  */
}

/* menu center */
.nav-center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 30px;
}

.nav-link{
  text-decoration:none;
  color: var(--dark-text);
  font-size: 13.5px;
  font-weight: 700;
  background: none;
  border: 0;
  padding: 10px 10px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .2px;
  opacity: .92;
}
.nav-link:hover{ opacity: 1; }

/* CTA */
.btn-contact{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration:none;
  color:#fff;
  font-weight:800;
  font-size: 13.5px;
  background: linear-gradient(180deg, #6d4dff, #4a2bdc);
  box-shadow: 0 14px 30px rgba(79, 47, 220, .28);
}
.btn-contact:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn-contact:active{ transform: translateY(0); }

/* Dropdown */
.nav-dd{ position: relative; display: inline-flex; align-items: center; }
.nav-dd-btn{ display:inline-flex; align-items:center; gap: 8px; }
.chev{ font-size: 12px; transform: translateY(1px); opacity: .9; }

.nav-dd-menu{
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 270px;
  background: linear-gradient(180deg, rgba(10,14,30,.95), rgba(6,8,18,.96));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(0,0,0,.35);
  padding: 10px;
  display: none;
}

.dd-item{
  display:flex;
  align-items:center;
  width: 100%;
  text-decoration:none;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}
.dd-item:hover{ background: rgba(255,255,255,.08); }

.dd-divider{
  height: 1px;
  margin: 8px 4px;
  background: rgba(255,255,255,.12);
}

/* open on hover / focus */
.nav-dd:hover .nav-dd-menu{ display:block; }
.nav-dd:focus-within .nav-dd-menu{ display:block; }

/* =========================
   HERO (HOME)
   ========================= */
.hero{
  background: var(--bg);
  padding: 70px 0 80px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding-top: 10px;
}

.hero-left{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-top: 10px;
}

.hero-title{
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.hero-desc{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 520px;
  font-size: 13.5px;
  line-height: 1.65;
}
.hero-desc-2{ margin-top: -2px; }

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 34px;
  background: var(--primary);
  color:#fff;
  border-radius: 999px;
  text-decoration:none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(74,120,216,.25);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn-primary:hover{
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(74,120,216,.32);
}
.btn-primary:active{ transform: translateY(0) scale(.98); }

.hero-cta{
  align-self: center;
  margin-top: 14px;
}

.hero-right{ display:flex; justify-content:flex-end; }
.hero-image{
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.hero-image img{
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-left: auto;
  display: block;
  border-radius: 0;
}

/* =========================
   SECTIONS + SERVICES GRID (HOME)
   ========================= */
.section{ padding: 48px 0 56px; }

.section-title{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing:.4px;
  font-weight: 900;
  text-align:center;
}

.section-subtitle{
  margin: 0 auto 26px;
  max-width: 860px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  text-align:center;
}

/* Services list cards */
.services-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px 38px;
  align-items:start;
}

.service-card{
  text-decoration:none;
  color:inherit;
}

.service-media{
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  background:#e5e7eb;
}

.service-media img{
  width:100%;
  height: 260px;
  object-fit: cover;    /* kalau mau no-crop, ganti contain */
  display:block;
  transform: translateZ(0);
}

.service-name{
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  text-align:center;
}

/* =========================
   ABOUT STRIP (HOME)
   ========================= */
.about-strip{
  background: #fff;
  padding: 54px 0;
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items:start;
}

.about-title{
  margin:0;
  font-size: 22px;
  font-weight: 900;
}

.about-right p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.about-link{
  color:#1f2a55;
  font-weight:900;
  text-decoration:none;
  margin-left: 6px;
}
.about-link:hover{ text-decoration: underline; }

/* =========================
   SERVICE DETAIL PAGES (Software/Cloud/DataCenter/Inspection/About)
   ========================= */
.service-detail{
  background: var(--bg);
  padding: 74px 0 86px;
}

.service-detail-grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;     /* sejajar tinggi antara text dan gambar */
}

/* swap helper (kalau kamu mau gambar kiri, text kanan) */
.service-detail-swap{
  grid-template-columns: 1fr 1.15fr;
}

.service-detail-content{
  text-align:center;        /* kamu minta text align center */
}

.service-detail-title{
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.25px;
}

.service-detail-text{
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.service-detail-media{
  display:flex;
  justify-content:flex-end;
}

.service-detail-media img{
  width: 100%;
  max-width: 560px;
  height: auto;
  display:block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Button center + lebih lebar (Talk to Us) */
.service-detail-cta{
  margin-top: 18px;         /* jarak dari content */
  display:flex;
  justify-content:center;   /* biar ga pinggir */
}
.service-detail-cta .btn-primary{
  min-width: 240px;
  padding: 14px 46px;
}

/* =========================
   OUR CLIENT (TEXT LEFT - IMAGE RIGHT)
   ========================= */
.our-client{
  padding: 74px 0 86px;
  background: var(--bg);
}

.our-client-grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.our-client-left{
  text-align: left;
}

.our-client-title{
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.our-client-lead,
.our-client-desc{
  margin: 0 0 12px;
  max-width: 560px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

/* image card */
.our-client-right{
  display: flex;
  justify-content: flex-end;
}

.our-client-logo{
  width: 100%;
  max-width: 560px;
}

.our-client-logo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

/* CTA */
.our-client-cta{
  margin-top: 18px;
}

.our-client-cta-btn{
  min-width: 240px;
  padding: 14px 46px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 860px){
  .our-client-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .our-client-left{
    text-align: center;
  }

  .our-client-lead,
  .our-client-desc{
    margin-left: auto;
    margin-right: auto;
  }

  .our-client-right{
    justify-content: center;
  }

  .our-client-logo{
    max-width: 100%;
  }

  .our-client-cta{
    display: flex;
    justify-content: center;
  }
}

/* =========================
   FOOTER (DARK, FULL BOTTOM)
   ========================= */
.footer{
  background:
    radial-gradient(circle at 12% 30%, rgba(109,77,255,.18), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(74,120,216,.14), transparent 55%),
    linear-gradient(180deg, var(--dark-2), #050713);
  border-top: 1px solid var(--dark-line);
}

.footer-grid{
  padding: 22px 0; /* lebih pendek biar gak “naik tinggi” */
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-title{
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--dark-text);
}

.footer-sub{
  margin-top: 6px;
  color: var(--dark-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.footer-links{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
}

.footer-links a{
  color: var(--dark-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  opacity: .9;
}
.footer-links a:hover{ opacity: 1; text-decoration: underline; }

.footer-contact{
  color: var(--dark-muted);
  font-size: 13px;
  line-height: 1.7;
}
.footer-contact a{
  color: var(--dark-text);
  text-decoration:none;
  font-weight: 800;
}
.footer-contact a:hover{ text-decoration: underline; }

.footer-label{
  font-size: 12px;
  font-weight: 950;
  color: var(--dark-text);
  margin-bottom: 6px;
  letter-spacing: .2px;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-bottom-inner{
  padding: 10px 0;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  display:flex;
  justify-content: center;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .nav3{
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    height: auto;
    padding: 14px 0;
  }
  .nav-center{
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-dd-menu{
    left: 0;
    transform: none;
  }
}

@media (max-width: 860px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
  }
  .hero-left{ padding-top: 0; }
  .hero-right{ justify-content:center; }
  .hero-image img{ max-width: 100%; }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-grid{
    grid-template-columns: 1fr;
  }

  .service-detail-grid{
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .service-detail-media{
    justify-content:center;
  }
  .service-detail-media img{
    max-width: 100%;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================
   HOME - ABOUT SECTION FIX
   ========================= */
.about-home{
  background: #fff;
  padding: 60px 0;
}

.about-home-grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.about-home-content{
  text-align: left;
}

.about-home-title{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.about-home-text{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 560px;
}

.about-home-cta{
  margin-top: 16px;
}

.about-home-media img{
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* responsive */
@media (max-width: 860px){
  .about-home-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-home-content{
    text-align: center;
  }
  .about-home-text{
    margin-left: auto;
    margin-right: auto;
  }
  .about-home-cta{
    display:flex;
    justify-content:center;
  }
  .about-home-media img{
    margin: 0 auto;
    max-width: 100%;
  }
}

/* =========================
   HOME - OUR CLIENTS SECTION
   ========================= */
.home-clients{
  background: var(--bg);
  padding: 66px 0;
}

.home-clients-inner{
  text-align: center;
}

.home-clients-title{
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.home-clients-text{
  margin: 0 auto 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.home-clients-media{
  margin: 18px auto 18px;
  max-width: 980px; /* biar lebih lebar, gak keliatan belang */
}

.home-clients-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.home-clients-text-bottom{
  margin-top: 10px;
}

.home-clients-cta{
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* =========================
   HOME: ABOUT (text kiri, image kanan)
   ========================= */
.home-about{
  padding: 64px 0;
  background: #fff;
}

.home-about-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.home-about-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-about-title{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
}

.home-about-text{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 560px;
}

.home-about-cta{
  margin-top: 10px;
  min-width: 220px;         /* biar tombol nggak kecil */
  justify-content: center;  /* teks tombol di tengah */
}

.home-about-media{
  display: flex;
  justify-content: flex-end;
}

.home-about-media img{
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* responsive */
@media (max-width: 900px){
  .home-about-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-about-media{
    justify-content: center;
  }
  .home-about-content{
    align-items: center;
    text-align: center;
  }
  .home-about-text{
    max-width: 680px;
  }
}

/* =========================
   OUR CLIENT - FINAL (single source of truth)
   ========================= */
.our-client{
  padding: 64px 0;
  background: var(--bg);
}

.our-client-wrap{
  text-align: center;
}

.our-client-title{
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.our-client-lead,
.our-client-desc{
  margin: 0 auto 10px;
  max-width: 860px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

/* CARD di wrapper (match HOME) */
.our-client-logo{
  margin: 26px auto 22px;
  max-width: 980px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.our-client-logo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ===========================
   CONTACT US
   =========================== */
.contact-hero {
  background: #eaf3ff;
  padding: 88px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.contact-copy {
  padding-top: 8px;
}

.contact-title {
  margin: 0 0 18px;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.contact-lead {
  margin: 0 0 18px;
  font-size: 16px;
  color: #0b1220;
  opacity: .9;
}

.contact-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11, 18, 32, .82);
}

/* Form card */
.contact-card {
  background: #f3f5f7;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
  border: 1px solid rgba(15, 23, 42, .08);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
  color: rgba(11, 18, 32, .85);
}

.req {
  font-weight: 500;
  opacity: .6;
  margin-left: 6px;
}

.field-input,
.field-textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .25);
  background: #fff;
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.field-textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 140px;
}

.field-input:focus,
.field-textarea:focus {
  border-color: rgba(88, 101, 242, .75);
  box-shadow: 0 0 0 4px rgba(88, 101, 242, .18);
}

/* Button */
.contact-actions {
  margin-top: 16px;
}

.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #0b0f17;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease;
}

.btn-pill-dark:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.btn-pill-dark:active {
  transform: translateY(0px);
  opacity: .9;
}

/* Responsive */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-title {
    font-size: 34px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Talk to Us button (Service Detail)
   =========================== */
.service-detail-cta{
  margin-top: 18px;
  text-align: center;
}

.service-detail-cta a.btn-talk,
a.btn-talk,
a.btn-talk:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 54px;
  min-width: 240px;
  padding: 0 34px;

  border-radius: 999px;
  background: #4b79d8;
  color: #fff !important;

  font-weight: 700;
  letter-spacing: .2px;

  text-decoration: none !important;
  border: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12);

  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}

.service-detail-cta a.btn-talk:hover{
  transform: translateY(-1px);
  opacity: .96;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16);
}

.service-detail-cta a.btn-talk:active{
  transform: translateY(0);
  opacity: .92;
}


/* Static HTML compatibility */
.nav-dd-menu.is-open{display:block;}
.contact-status{margin:12px 0 0;color:var(--muted);font-size:12.5px;line-height:1.5;}
