body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #0a2540;
}
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'packy';
  src: url('font/PackyGreat.ttf') format('truetype');
}

@font-face {
  font-family: 'edges';
  src: url('font/Edges.ttf') format('truetype');
}

@font-face {
  font-family: 'nexal';
  src: url('font/Nexa-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'nexah';
  src: url('font/Nexa-Heavy.ttf') format('truetype');
}

h1,
h2,
h3 {
  letter-spacing: 2px;
  font-family: 'packy', serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0a2540;
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.54);
  color: white;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  width: 50px;
  height: auto;
  border-radius: 50%;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #a2c6f7;
}

/* Hamburger (hidden by default) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* .nav-container {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  } */

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0a2540;
    /* flex-direction: column; */
    width: 200px;
    display: none;
    padding: 15px;
  }

  .nav-links.show {
    flex-direction: column;
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(57, 93, 130, 0.753)), url('img/bg6.png') center/cover no-repeat;
  color: white;
  text-align: center;
  /* padding: 275px 20px; */
}

.hero-title {
  font-size: 5rem;
  padding: 0;
  margin: 0;
}

.hero-subtitle {
  font-size: 2rem;
  margin-top: 15px;
  margin-bottom: 45px;
}

.btn-utama {
  /* padding-top: 20px; */
  font-size: 20px;
  background: #0a2540;
  color: white;
  padding: 10px 25px;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-utama:hover {
  background: #143d6a;
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 35px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .btn-utama {
    font-size: 15px;
    padding: 9px 17px;
    border-radius: 8px;
    transition: 0.3s;
  }
}

/* About Section */
.about-section {
  padding: 120px 50px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 32px;
  color: #0a2540;
  margin-bottom: 10px;
}

.about-text .tagline {
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
  font-size: 16px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* Visi Misi */
.visimisi-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.visi,
.misi {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 25px;
  /* border-radius: 10px; */
  box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.visi:hover,
.misi:hover {
  transform: translateY(-5px);
  box-shadow: 8px 18px 20px rgba(0, 0, 0, 0.1);
}

.visi h3,
.misi h3 {
  text-align: center;
  font-size: 32px;
  margin-top: 0;
  color: #003366;
}

.visi p {
  font-size: 16px;
  text-align: center;
}
.misi ul {
  font-size: 16px;
  padding-left: 20px;
  list-style-type: disc;
}

@media (max-width: 780px) {
  .about-text {
    /* margin-right: 20px; */
    /* font-size: 13px; */
    padding: 10px;
    min-width: 0;
  }
  .about-section {
    padding: 20px;
  }
  .about-container {
    flex-direction: column;
    gap: 0;
    padding: 10px;
  }

  .about-text p {
    /* margin: 13px 0px; */
    font-size: 14px;
  }
  .visimisi-wrapper {
    align-items: center;
    flex-direction: column;
  }

  .visi,
  .misi {
    width: 80%;
    background-color: white;
    padding-bottom: 60px;
  }

  .visi h3,
  .misi h3 {
    font-size: 25px;
  }

  .visi p,
  .misi ul {
    font-size: 14px;
  }
}

/* Services */
.section {
  padding: 75px 0;
  background: #f4f4f4;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #003366;
}

.layanan-grid {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.layanan-card {
  width: 90%;
  display: flex;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
}

.layanan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.layanan-card img {
  padding: 50px;
  width: 200px;
  height: auto;
  object-fit: cover;
}

.layanan-content {
  justify-content: center;
  margin: auto;
  padding-left: 40px;
  /* padding: 25px; */
  flex: 1;
}

.layanan-content h3 {
  /* margin-top: 20px; */
  font-size: 22px;
  color: #003366;
  margin-bottom: 10px;
}

.layanan-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 35px;
  }
  .layanan-card {
    align-items: center;
    padding: 10px;
    flex-direction: column;
  }

  .layanan-card img {
    align-items: center;
    padding: 20px;
    width: 200px;
    height: auto;
  }

  .layanan-content {
    padding: 0;
  }

  .layanan-content h3 {
    text-align: center;
  }

  .layanan-content p {
    text-align: center;
    /* padding-left: 7%; */
  }

  .layanan-content ul {
    padding-left: 20px;
    padding-right: 10px;
  }
}

/* Why Choose Us Section */
.why-section {
  background-color: #f9f9f9;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.why-header h2 {
  color: #003366;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.why-header p {
  max-width: 700px;
  margin: auto;
  color: #ccc;
  font-size: 1.1em;
}

.why-cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.why-card {
  background-color: #222;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  width: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-info {
  padding: 20px;
  padding-bottom: 30px;
  position: absolute;
  justify-content: center;
  bottom: 0;
  height: 100px;
  width: auto;
  text-align: left;
  display: flex;
  /* flex-direction: column; /* tetap vertikal *
  justify-content: center; /* tengah atas-bawah *
  align-items: center; tengah kiri-kanan */

  /* Efek bg blur */
  background: rgba(0, 0, 0, 0.4); /* bg transparan gelap */
  backdrop-filter: blur(2px); /* blur bg */
  -webkit-backdrop-filter: blur(2px); /* buat Safari */

  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card-info h3 {
  font-family: sans-serif;
  font-size: 1.2em;
  padding-bottom: 25px;
  margin: 0;
}

.card-info p {
  margin: 5px 0 10px;
  font-size: 0.9em;
  color: #ccc;
}

.icon {
  background: white;
  color: red;
  border-radius: 50%;
  padding: 5px 8px;
  font-size: 1em;
}

/* Responsif WCU */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 35px;
  }
  .why-cards {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    align-items: center;
    width: 90%;
    max-width: 350px;
  }

  .card-info {
    justify-content: center;
    padding: 0;
    padding-bottom: 20px;
  }

  .card-info h3 {
    text-align: center;
    font-size: 17px;
    padding: 15px;
  }
}

/* CTA */
.cta-section {
  background-color: #0a2540; /* warna biru navy */
  padding: 20px 40px;
  color: white;
}
.contact-header {
  padding-top: 65px;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: #003366; /* biru tua */
  margin-bottom: 20px;
}
.underline {
  width: 60px;
  height: 4px;
  background-color: #0a2540; /* bisa ganti warna sesuai tema */
  margin: 10px auto 10px; /* tengah dan beri jarak atas bawah */
  border: none;
  border-radius: 2px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
}

.cta-text p {
  margin: 0;
  font-size: 16px;
  padding: 0px 0;
}
.cta-text {
  margin-bottom: 20px;
}
.btn-cta {
  border: 2px solid white;
  color: white;
  padding: 10px 10px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  font-weight: bold;
}

.btn-cta:hover {
  background-color: white;
  color: #0a2540;
}
@media (max-width: 768px) {
  .cta-section {
    margin: 0;
    padding: 15px 10px;
  }
  .cta-text h2 {
    text-align: left;
    margin: 5px;
    font-size: 25px;
  }

  .cta-text P {
    text-align: left;
    margin: 5px;
    font-size: 15px;
  }

  .btn-cta {
    align-items: center;
    font-size: 13px;
  }
}

/* Klien Section */
.clients-section {
  /* padding-top: 120px; */
  justify-content: center;
  padding: 50px 20px;
  text-align: center;
  background: #0a2540;
}

.clients-section h2 {
  color: white;
  font-size: 2.5em;
  padding-top: 35px;
  /* padding-bottom: 30px; */
  margin-bottom: 30px;
}

/* Slider */
.clients-slider {
  align-items: center;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 45px;
}

.clients-slider.dragging {
  cursor: grabbing;
}

/* Track: flex horizontal */
.clients-track {
  display: flex;
  align-items: center;
  gap: 36px; /* jarak antar logo */
  user-select: none;
  pointer-events: none; /* mencegah klik gambar mengganggu pointer capture */
}

/* setiap item (bungkus image) pointer-events restore supaya img bisa fokus kalau perlu */
.client-item {
  pointer-events: auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* style gambar klien */
.client-item img {
  height: 450px; /* ubah sesuai kebutuhan */
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  /* user-drag: none; */
  -webkit-user-drag: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* sembunyikan scrollbar */
.clients-slider::-webkit-scrollbar {
  display: none;
}
.clients-slider {
  -ms-overflow-style: none; /* IE & Edge */
  scrollbar-width: none; /* Firefox */
}

/* responsif */
@media (max-width: 768px) {
  .clients-section h2 {
    font-size: 30px;
  }
  .clients-slider {
    width: 100%;
  }
  .clients-track {
    gap: 15px;
  }
  .client-item img {
    height: 300px;
    width: auto;
  }
}

.contact-section {
  padding: 20px 0;
  background: #fff;
  text-align: center;
}

.contact-icons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-icons a {
  font-size: 20px;
  color: #003366;
  font-family: 'edges', sans-serif;
  text-align: center;
  text-decoration: none;
}

.icon-box {
  padding: 0 20px;
  position: relative;
}

.icon-box img {
  width: 100px;
  transition: transform 0.3s;
}

.icon-box img:hover {
  transform: scale(1.1);
}

/* Garis pemisah */
.icon-box:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  height: 100px;
  width: 3px;
  background: #ddd;
}

/* Responsif */
@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 30px;
  }
  .contact-icons {
    align-items: center;
    margin: 0 auto;
    /* flex-direction: column; */
    gap: 20px;
  }
  .contact-icons a {
    font-size: 10px;
  }
  .icon-box {
    padding: 0;
  }
  .icon-box img {
    width: 35px;
  }
  .icon-box p {
    margin: 0;
  }
  .icon-box::after {
    display: none;
  }
}

/* Klientesti Section */
/* Section Klien */
.clients {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

/* .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #c40000; merah
  margin-bottom: 10px;
  position: relative;
} */

/* .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c40000;
  margin: 8px auto 20px auto;
} */

/* .section-subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
} */

/* Logo Grid */
.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.client-logos img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logos img:hover {
  transform: scale(1.1);
}

/* FORM SECTION */
.form-section {
  color: #003366;
  max-width: 100%;
  width: 100vw;
  margin: auto;
  background-color: transparent;
  margin-top: 0;
  padding-top: -30px;
  padding-bottom: 2.5rem;
  align-items: center;
  font-size: 2rem;
  text-align: center;
  /* border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
}

.form-section h1 {
  font-family: 'bigcaslon', sans-serif;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.form-container {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  gap: 20px;
}
.form-container label {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}
.form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #101010;
}

form input,
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #040101c0;
  border-radius: 5px;
  resize: vertical;
  transition: 0.3s;
}

.form input:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.buttonform {
  margin-top: 20px;
  width: 100%;
  background-color: #003366;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buttonform:hover {
  background-color: #007bff;
}
/* Responsif di layar kecil */
@media (max-width: 600px) {
  .form-container {
    align-items: center;
    padding: 14px;
  }

  form input,
  form textarea {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-right: 0;
  }
}

/* FOOTER SECTION */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

.lux-footer {
  border-top: 1px solid #202020;
  background: #0a2540;
  color: #f4f4f4;
  font-family: sans-serif;
  padding: 40px 20px 30px;
}

.lux-container {
  max-width: 1200px;
  padding-left: 20px; /* tambahkan ini */
  margin-top: -10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 7rem;
}

.lux-brand {
  flex: 1 1 60%;
}

.lux-brand h2 {
  font-size: 2em;
  letter-spacing: 13px;
  font-family: 'nexah', sans-serif;
  margin: 0;
  /* color: white; */
}

.lux-brand p {
  font-size: 14px;
  /* color: white; */
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 1200px;
}

.lux-address {
  display: flex;
  align-items: center;
  font-size: 14px;
  /* color: white; */
  opacity: 0.85;
  margin-top: 10px;
}

.lux-address i {
  margin-right: 8px;
  /* color: white; */
}

.lux-links {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.lux-links a {
  text-decoration: none;
  color: #f4f4f4;
  padding: 3px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.lux-links a i {
  margin-right: 10px;
  font-size: 18px;
}

.lux-links a:hover {
  color: #007bff;
}

.lux-bottom {
  text-align: center;
  margin-top: 5px;
  border-top: 1px solid #d9d9d9;
  padding-top: 5px;
  margin-bottom: -20px;
  font-size: 13px;
  color: #d9d9d9;
}

/* Responsive */
@media (max-width: 1160px) {
  .lux-footer {
    padding: 10px;
  }
  .lux-container {
    margin: auto; /* tetap tengah di mobile */
    padding: 0%;
    /* padding-left: 20px; default padding kiri */
    /* padding-bottom: 250px; */
    /* text-align: center; */
    flex-direction: column;
    align-items: center;
  }

  .lux-bottom {
    display: none;
  }

  .lux-brand,
  .lux-links {
    align-items: center;
  }

  .lux-links {
    margin-top: 5px;
    gap: 0;
    padding: 0;
    align-items: baseline;
  }

  .lux-links a i {
    font-size: 12px;
  }
  .lux-links a {
    font-size: 10px;
  }

  .lux-brand h2 {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 0;
  }

  .lux-brand p {
    font-size: 8px;
    margin: 0;
  }

  .lux-address {
    justify-content: center;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  /* .nav-container { */
  /* flex-direction: column; */
  /* align-items: flex-start; */
  /* } */

  .nav-links {
    margin-top: 10px;
  }

  .visimisi-wrapper {
    flex-direction: column;
  }

  .visi,
  .misi {
    width: 100%;
  }

  .layanan-grid {
    gap: 20px;
  }
}
