
*{
  margin:0;padding:0;box-sizing:border-box;
  font-family:Montserrat;
}

:root{
  --blue:#1B3FAE;
  --blue-soft:#4F7DFF;
  --gray-dark:#111827;
  --gray:#6B7280;
  --gray-light:#F3F4F6;
  --white:#fff;
}

body {
  font-family: 'Montserrat';
  color: var(--gray-dark);
  background: #fff;
}

.container{
  width:85%;
  max-width:1200px;
  margin:auto;
}

.text-left {
  text-align: left;
}

@media (max-width: 768px) {
  .text-left {
    text-align: left;
  }
}


/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 38px;   /* 🔥 ini yang bikin logo tidak gede */
  width: auto;
  object-fit: contain;
}

.logo span {
  font-weight: 700;
  font-size: 18px;
}

.nav-menu a {
  margin: 0 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-primary{
  background:var(--blue);
  color:#fff;
  border:none;
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}

.btn-secondary{
  background:none;
  border:1.5px solid var(--blue);
  color:var(--blue);
  padding:11px 22px;
  border-radius:8px;
}

/* HERO */
.hero{
  padding:140px 0 90px;
  background:linear-gradient(180deg,#fff,#EEF4FF);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}
.hero-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* gambar mengikuti ukuran kotak */
  border-radius: 24px; /* ikut rounded */
  display: block;
}
.hero-visual{
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.25);
}

.hero-visual img{
  transition:0.5s ease;
}

.hero-visual:hover img{
  transform:scale(1.03);
}

.badge{
  display:inline-block;
  background:#EEF4FF;
  color:var(--blue);
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.hero h1{
  font-size:52px;
  line-height:1.1;
  margin:20px 0;
}

.hero p{
  font-size:18px;
  color:var(--gray);
  max-width:520px;
}

.hero-action{
  margin-top:30px;
  display:flex;
  gap:15px;
}

.hero-action a {
  text-decoration: none;   /* hilangkan garis bawah */
}

.hero-action a:hover {
  text-decoration: none;   /* tetap tanpa garis bawah saat hover */
}

/* Warna tombol tetap */
.btn-primary {
  color: white;            /* teks putih */
}

.btn-secondary {
  color: #1e40af;          /* teks biru */
}


.hero-visual{
  height:340px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--blue-soft),var(--blue));
  box-shadow:0 40px 80px rgba(0,0,0,0.25);
}

/* TRUST */
.trust{
  padding:50px 0;
  background:#fff;
  text-align:center;
}

.trust p{
  color:var(--gray);
  margin-bottom:25px;
}

.trust-logos{
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

.trust-logos img{
  height:40px;
  opacity:.6;
  filter:grayscale(100%);
}

/* SERVICES */
.services{
  padding:90px 0;
  background:#fff;
}

.services h2{
  font-size:38px;
  text-align:center;
  margin-bottom:60px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.service-box{
  padding:34px;
  border-radius:16px;
  border:1px solid #eee;
  background:#fff;
  transition:.35s;
}

.service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

/* CTA */
.cta{
  padding:80px 0;
  background:#0A1F44;
}

.cta-box{
  background:linear-gradient(135deg,var(--blue-soft),var(--blue));
  padding:60px;
  border-radius:20px;
  text-align:center;
  color:#fff;
}

/* FOOTER */
.footer{
  padding:70px 0;
  background:#0A1F44;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}
.customer{
  padding:80px 0;
  background:#fff;
  text-align:center;
}

.customer h2{
  font-size:36px;
  margin-bottom:40px;
}

.swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
}

.swiper-slide img{
  height:50px;
  filter:grayscale(100%);
  opacity:.7;
  transition:.3s;
}

.swiper-slide img:hover{
  filter:none;
  opacity:1;
}
.footer-brand p {
  margin: 12px 0 20px;
  line-height: 1.6;
  color: #d1d5db;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #4F7DFF;
  transform: translateY(-4px);
}

/* ================= RESPONSIVE SYSTEM ================= */

/* Laptop kecil */
@media (max-width: 1200px) {
  .container {
    width: 85%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .header-wrap {
    gap: 12px;
  }

  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background: white;
    width: 260px;
    height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: -20px 0 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 3px;
    transition: 0.3s;
  }

  .btn-primary {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin: auto;
  }

  .hero-action {
    justify-content: center;
  }

  .hero-visual {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .logo img {
    height: 32px;
  }

  .logo span {
    font-size: 14px;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

.enterprise-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg,#ffffff 0%,#f4f7fb 100%);
  overflow: hidden;
}

.enterprise-showcase .container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.enterprise-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #4f7dff;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.enterprise-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 60px;
}

/* SLIDER WRAPPER */
.enterprise-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* TRACK (AUTO SLIDE) */
.enterprise-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: enterpriseScroll 28s linear infinite;
}

/* ITEM CARD */
.enterprise-item {
  width: 240px;
  height: 170px;
  border-radius: 22px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
  transition: all .5s ease;
  position: relative;
}

/* IMAGE */
.enterprise-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  transition: .4s ease;
}

/* TEXT */
.enterprise-item span {
  font-size: 14px;
  font-weight: 600;
  color: #1b3fae;
  letter-spacing: 0.3px;
}

/* HOVER CINEMATIC */
.enterprise-item:hover {
  transform: translateY(-14px) scale(1.08);
  box-shadow: 0 50px 120px rgba(0,0,0,0.22);
}

.enterprise-item:hover img {
  transform: scale(1.05);
}

/* AUTO SCROLL */
@keyframes enterpriseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .enterprise-title {
    font-size: 34px;
  }

  .enterprise-item {
    width: 210px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .enterprise-title {
    font-size: 28px;
  }

  .enterprise-track {
    animation-duration: 20s;
  }

  .enterprise-item {
    width: 180px;
    height: 135px;
  }
}

/* ================= ENTERPRISE ABOUT US ================= */

.about-enterprise {
  padding: 110px 0;
  background: radial-gradient(circle at top, #122b5c, #08162f 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-enterprise::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #1b6cff, #00c6ff);
  opacity: 0.15;
  border-radius: 50%;
}

.about-head {
  max-width: 720px;
  margin-bottom: 60px;
}

.about-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 15px;
}

.about-head h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-head p {
  font-size: 16px;
  opacity: 0.85;
}

/* GRID */

.about-enterprise-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-left h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-left p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* FEATURES */

.enterprise-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.enterprise-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.enterprise-feature i {
  font-size: 18px;
  color: #4da3ff;
}

.enterprise-feature:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
}

/* IMAGE */

.about-image-box {
  position: relative;
}

.about-image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.glass-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
}

.glass-card h4 {
  font-size: 16px;
  font-weight: 700;
}

.glass-card p {
  font-size: 13px;
  opacity: 0.85;
}

/* STATS */

.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.stat-item {
  text-align: center;
  padding: 22px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
}

.stat-item h3 {
  font-size: 28px;
  color: #4da3ff;
  font-weight: 800;
}

.stat-item p {
  font-size: 13px;
  opacity: 0.8;
}

/* VISION MISSION */

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}

.vm-box {
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
}

.vm-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.vm-box p,
.vm-box li {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

/* CTA */

.about-cta {
  text-align: center;
  padding: 50px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1b6cff, #00c6ff);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.about-cta h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-enterprise-grid,
  .vision-mission {
    grid-template-columns: 1fr;
  }

  .enterprise-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-head h2 {
    font-size: 32px;
  }
}

/* MOBILE NAV FIX */
.nav-menu {
  display: flex;
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    background: white;
    width: 260px;
    height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: -20px 0 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-visual {
    height: auto;
  }

  .hero-visual img {
    border-radius: 16px;
  }
}

/* ABOUT US RESPONSIVE UPGRADE */

@media (max-width: 1024px) {
  .about-head h2 {
    font-size: 34px;
  }

  .about-left h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .about-enterprise {
    padding: 80px 0;
  }

  .about-head {
    text-align: center;
    margin-bottom: 40px;
  }

  .about-enterprise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enterprise-features {
    grid-template-columns: 1fr;
  }

  .about-image-box img {
    border-radius: 14px;
  }

  .glass-card {
    left: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .enterprise-stats {
    grid-template-columns: 1fr 1fr;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 36px 20px;
  }

  .about-cta h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .about-head h2 {
    font-size: 26px;
  }

  .about-left p {
    font-size: 14px;
  }

  .stat-item h3 {
    font-size: 22px;
  }

  .stat-item p {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .enterprise-item {
    width: 160px;
    height: 120px;
  }

  .enterprise-item span {
    font-size: 12px;
  }
}

/* SMOOTH ENTERPRISE UI */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

/* Responsive Container Upgrade */
@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .container {
    width: 92%;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  animation: zoomIn .3s ease;
}

.modal-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.modal-close:hover {
  background: rgba(0,0,0,0.85);
  transform: scale(1.05);
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .modal-overlay {
    align-items: flex-end; /* modal dari bawah */
  }

  .modal-box {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    padding: 20px 16px 24px;
    animation: slideUp .3s ease;
    overflow-y: auto;
  }

  .modal-box img {
    max-height: 40vh;
    object-fit: cover;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  #modalTitle {
    font-size: 18px;
    line-height: 1.4;
  }

  #modalDesc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Animasi khusus mobile */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
