/* Reset default */
.html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: white
}

.img {
  width: 100%;
  height: auto;
  display: block;
}
 

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

header .logo img {
  height: 50px;
  width: 180px; 
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 30px;
  z-index: 1000;
}

.navbar li a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

/* Hover effect */
.navbar li a:hover {
  background: rgba(0, 30, 255, 0.1); /* ungu muda transparan */
}

/* Aktif (menu yang dipilih) */
.navbar li a.active {
  background: #073e88;
  color: white;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: #5f9ae8; /* warna biru ungu seperti di desain */
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #073e88;
}

/* RESPONSIVE (tampilan HP / tablet) */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Navbar default disembunyikan */
  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    transition: all 0.3s ease;
  }

  /* Navbar muncul saat aktif */
  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .navbar ul li {
    margin: 8px 0;
  }

  .navbar ul li a {
    color: #073e88;
  }
}

/* Hero Section */
.hero-bg {
  background: url("hero.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* --- Container utama hero --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* --- Teks Hero --- */
.hero-text {
  flex: 1 1 45%;
  text-align: left;
  color: #fff;
  z-index: 3;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: #39c1e0; /* biru muda */
  margin-bottom: 20px;
  font-family: 'Cambria', serif;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 10px;
  color: #fff;
}

.hero-text .tagline {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  font-style: italic;
  margin-top: 20px;
  color: #fff;
}

/* --- Video Hero --- */
.hero-video-container {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-video {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}



  /* RESPONSIVE HERO */
 @media (max-width: 900px) {
  .hero {
    flex-direction: column;  /* jadi vertikal di layar kecil */
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    order: 1;
  }

  .hero-video-container {
    order: 2;
    margin-top: 25px;
  }

  .hero-video {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h3 {
    font-size: 1.1rem;
  }

  .hero-content p {
    font-size: 1.4rem;
  }
}


/* Section Tentang Kami */
.about {
  padding: 80px 5%;
  background-color: #fff;
  justify-content: center;
  min-height: 100vh; /* agar presisi tengah vertikal di layar besar */
  display: flex;
  align-items: center;
}


/* Container */
.about-container {
  align-items: center;
  justify-content: space-between;
  align-content: center;
  text-align: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

/* Bagian kiri (gambar bertumpuk) */
.about-images {
  min-width: 300px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.about-images .img {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  height: auto;
  object-fit: cover;
  position:relative;
  flex-wrap: wrap;
}

.img-img1 {
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.img-img2 {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.img-img3 {
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.about-images img:hover {
  transform: scale(1.05);
}

/* Bagian kanan (teks) */
.about-text {
  max-width: 100%;
  text-align: center;
  margin-top: 50px;
  justify-content: center;
  align-content: center;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: black;
  margin-bottom: 20px;
  font-family: 'Times New Roman', Times, serif;
}

.about-text p {
  font-size: 18px;
  color: black;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  font-family: 'Times New Roman', Times, serif;
  max-width: 100%;
  justify-content: center;
  padding: 0 10px;
}

.btn-selengkapnya {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #073e88;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 0;
}

.btn-selengkapnya:hover {
  background: #98c5f5;
}

/* ===== Responsif ===== */
@media (max-width: 992px) {
  .about-container {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-images img {
    max-width: 280px;
    width: 45%;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text p {
    font-size: 15px;
  }
}

@media (max-width: 486px) {
  .about-container {
    padding: 60px 15px;
    min-height: auto;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .about-images img {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 45%;
    max-width: 220px;
  }

  .about-text {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* === SOLUSI TERBAIK (FINAL PRESISI) === */
.solusi-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: #fff;
}

/* Kontainer utama */
.solusi-card {
  background: transparent;
  border-radius: 0;
  max-width: 1100px; /* batas lebar tengah halaman */
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
}

/* Gambar */
.solusi-img {
  display: block;
  width: 100%;
  border-radius: 15px;
  margin: 0 auto 40px auto;
  object-fit: cover;
}

/* Judul dan titik */
.solusi-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  color: black;
}

.solusi-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 10px;
}

/* Paragraf */
.solusi-card p {
  font-size: 18px;
  color: black;
  line-height: 1.8;
  text-align: justify;
  max-width: 1100px; /* biar persis sama dengan gambar */
  margin: 0 auto;
  padding: 0; /* Hapus padding biar sejajar pixel-perfect */
  font-family: 'Times New Roman', Times, serif;
}

/* Titik dekorasi */
.dot {
  width: 10px;
  height: 10px;
  background: #073e88;
  border-radius: 50%;
  display: inline-block;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .solusi-section {
    padding: 60px 20px;
  }

  .solusi-card {
    width: 95%;
  }

  .solusi-card p {
    font-size: 16px;
    padding: 0 10px; /* baru aktif di layar kecil */
  }

  .solusi-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .solusi-card {
    width: 95%;
    padding: 0 10px;
  }

  .solusi-title h2 {
    font-size: 22px;
  }

  .solusi-card p {
    font-size: 15px;
    padding: 0 8%;
  }
}


/* Lanjutan Solusi Terbaik */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 50px;
  background-color: transparent;
}

.feature-box {
  background-color: #073e88;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box .icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.feature-box .icon img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.feature-box h3 {
  color: white;
  margin: 0 0 10px;
  font-size: 30px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bolder;
}

.feature-box p {
  font-size: 18px;
  color: white;
  line-height: 1.5;
  text-align: justify;
  font-family: 'Times New Roman', Times, serif;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .features {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 40px 30px;
  }

  .feature-box h3 {
    font-size: 24px;
  }

  .feature-box p {
    font-size: 16px;
  }

  .feature-box .icon {
    width: 80px;
    height: 80px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .feature-box {
    align-items: center;
    text-align: center;
  }

  .feature-box h3 {
    font-size: 22px;
  }

  .feature-box p {
    font-size: 15px;
    text-align: left;
  }

  .feature-box .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
}

/* Extra Small Devices (≤ 480px) */
@media (max-width: 480px) {
  .features {
    padding: 20px 15px;
    gap: 15px;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-box h3 {
    font-size: 20px;
  }

  .feature-box p {
    font-size: 14px;
  }

  .feature-box .icon {
    width: 60px;
    height: 60px;
  }
}

/* Layanan Kami */
/* Section */
.layanan {
  padding: 80px 100px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layanan-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* Dots Decoration */
.dots {
  margin-bottom: 20px;
  justify-content: center;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #073e88;
  border-radius: 50%;
  margin-right: 8px;
  justify-content: center;
}

/* Text Section */
.layanan-text {
  flex: 1;
}

.layanan-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: black;
  font-family: 'Times New Roman', Times, serif;
}

.layanan-text p {
  color: black;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  font-family: 'Times New Roman', Times, serif;
}

.layanan-text h3 {
  color: #073e88;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Times New Roman', Times, serif;
  text-align: left;
}

.layanan-text ul {
  margin-bottom: 30px;
  padding-left: 20px;
  text-align: left;
}

.layanan-text ul li {
  color: #000;
  margin-bottom: 5px;
  font-size: 18px;
  font-family: 'Times New Roman', Times, serif;
}

/* Image */
.layanan-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layanan-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  object-fit: cover;
}

.btn-selengkap {
  display: inline-block;
  margin-top: -30px;
  padding: 10px 20px;
  background: #073e88;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 0;
}

.btn-selengkap:hover {
  background: #98c5f5;
}

/* RESPONSIVE */
/* Laptop & Tablet */
@media (max-width: 992px) {
  .layanan {
    padding: 60px 8%;
  }

  .layanan-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .layanan-text {
    order: 2; /* teks di bawah gambar */
  }

  .layanan-image {
    order: 1;
  }

  .layanan-text h1 {
    font-size: 2.3rem;
  }

  .layanan-text p {
    font-size: 1rem;
  }

  .layanan-text h3 {
    font-size: 1.2rem;
  }

  .layanan-image img {
    max-width: 50%;
    justify-content: center;
  }
}

/* HP kecil (lebar < 600px) */
@media (max-width: 600px) {
  .layanan {
    padding: 50px 6%;
  }

  .layanan-container {
    gap: 30px;
    justify-content: center;
    text-align: center;
  }

  .layanan-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .layanan-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
  }

  .layanan-text ul {
    margin-left: 16px;
  }

  .layanan-image img {
    max-width: 50%;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}

/* HP sangat kecil (lebar < 400px) */
@media (max-width: 400px) {
  .layanan-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .layanan-text h3 {
    font-size: 1.5rem;
  }

  .layanan-text p, .layanan-text li {
    font-size: 1.3rem;
    text-align: center;
  }

  .btn-selengkap {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .layanan-image img {
    max-width: 200px;
    justify-content: center;
    margin: auto;
  }
}


/* Klien Kami */
.clients {
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
  margin-bottom: 80px;
  display:flex;
  flex-direction: column;
}

.clients h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color:#000;
  font-family: 'Times New Roman', Times, serif;
}

.clients p {
  font-size: 18px;
  color: black;
  line-height: 1.8;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 80px;
  font-family: 'Times New Roman', Times, serif;
  text-align: justify;
  padding: 0;
}

.icon-card {
  display: flex;
  gap: 20px;                  /* jarak antar logo */
  overflow-x: auto;           /* bikin bisa digeser horizontal */
  scroll-behavior: smooth;    /* scroll lebih halus */
  padding: 10px;
}

.icon {
  flex: 0 0 auto;             /* supaya logo tidak mengecil */
  background: #f8f9fa;        /* warna abu muda */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 200px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.icon:hover {
  transform: scale(1.2);
}

/* === GALERI SECTION === */
.galeri-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.galeri-container h2 {
  font-size: 32px;
  color: black;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}

.galeri-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 80px;
}

/* === GRID GALERI === */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: stretch;
  max-width: 1000px; /* biar tidak terlalu lebar di monitor besar */
  margin: 0 auto; /* biar grid tetap di tengah */
}

.galeri-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.galeri-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === RESPONSIVE === */
/* Laptop / layar sedang */
@media (max-width: 1200px) {
  .galeri-section {
    padding: 50px 40px;
  }
  .galeri-container h2 {
    font-size: 32px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .galeri-section h2 {
    font-size: 24px;
  }
  .galeri-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .galeri-section {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .galeri-grid {
    grid-template-columns: 1fr; /* 1 kolom di layar kecil */
    gap: 15px;
  }
  .galeri-section {
    padding: 30px 15px;
  }
  .galeri-section h2 {
    font-size: 22px;
  }
}

/* FOOTER SECTION */
.footer {
  position: relative;
  background: url('building.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  padding-top: 15px;
}

.footer-overlay {
  background: transparent;
  padding: 50px 20px;
}

.footer-logo {
  position: absolute;
  top: 30px;
  left: 40px;
}

.footer-logo img {
  width: 200px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-top: 150px;
  margin-bottom: -100px;
}

/* MAP SECTION */
.footer-map {
  flex: 1 1 500px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}

/* CONTACT CARD */
.footer-contact {
  flex: 1 1 400px;
  background-color: #ffffff;
  color: #002766;
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-title {
  background-color: #002b6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 15px;
  margin: 5px 0;
}

.office {
  margin-top: 15px;
}

.office h4 {
  font-size: 16px;
  font-weight: 600;
  color: #002b6b;
}

.office p {
  font-size: 14px;
  color: black;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    margin-left: 30px;
  }

  .footer-map, .footer-contact {
    width: 100%;
  }
  }

/* Responsive */
@media (max-width: 800px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-images {
    margin-bottom: 30px;
  }
}