* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 1000;
}

.nav-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 70px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* MENU */

.menu {
  display: flex;
  gap: 60px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
}

/* DROPDOWN */
/* ================= DROPDOWN STYLE FINAL ================= */

.dropdown-content {
  position: absolute;
  top: calc(100% + 45px);
  /* 100% = tinggi link LAYANAN
     +20px supaya tepat di bawah garis navbar */

  left: 50%;
  transform: translateX(-50%);

  width: 320px;
  background: #0f2a44;
  display: none;
  flex-direction: column;
  padding: 0;
  z-index: 999;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

/* ACTIVE CLASS (dipanggil JS) */
.dropdown.active .dropdown-content {
  display: flex;
}

/* Item dropdown */
.dropdown-content a {
  color: #ffffff;
  padding: 18px 0;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

/* Hapus garis terakhir */
.dropdown-content a:last-child {
  border-bottom: none;
}

/* Hover effect */
.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}
.dropdown {
  position: relative;
}

/* BUTTON NAV */

.btn-nav {
  background: #0e2a47;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 140vh; /* lebih panjang dari layar */
  width: 100%;
  background: url("../images/image.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay kiri saja */

.overlay-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0)
  );
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  width: 92%;
  max-width: 1400px;
  margin: auto;
  color: white;
  z-index: 2;
}

.small {
  margin-bottom: 20px;
  font-size: 18px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.5;
  max-width: 800px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sub {
  margin-bottom: 35px;
}

.btn-hero {
  background: #0e2a47;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}
/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #111;
  transition: 0.3s ease;
}

/* Animasi X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= WHO WE ARE ================= */

.who {
  background: #f3f3f3;
  padding: 120px 0;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.who-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 25px;
}

.who-desc {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 70px;
}

.who-grid {
  width: 92%;
  max-width: 1400px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.who-card {
  border: 1px solid #d9d9d9;
  padding: 40px 30px;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Wrapper icon supaya konsisten */
.who-card img {
  width: 70px; /* semua sama */
  height: 70px; /* paksa tinggi sama */
  object-fit: contain;
  margin: 0 auto 20px auto;
  opacity: 0.7;
}

.who-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 20px;
}

.who-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.who-card:hover {
  border-color: #0e2a47;
  transform: translateY(-5px);
}

.who-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-outline {
  padding: 12px 28px;
  border: 2px solid #0e2a47;
  color: #0e2a47;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #0e2a47;
  color: white;
}
.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
.fire-section {
  padding: 120px 0;
  background: #f7f7f7;
}

.fire-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.fire-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* RIGHT CONTENT */

.fire-sub {
  color: #3b82f6;
  font-size: 15px;
  font-weight: 600;
}

.fire-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.3;
  margin: 15px 0 20px;
}

.fire-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* SERVICE BOX */

.fire-box {
  background: #e6e6e6;
  padding: 35px 40px;
  border-radius: 26px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 35px;
}

/* BULAT BIRU LEBIH BESAR */
.fire-icon {
  width: 110px;
  height: 110px;
  min-width: 110px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON LEBIH BESAR */
.fire-icon img {
  width: 115px;
  height: auto;
}

/* JUDUL */
.fire-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

/* DESKRIPSI */
.fire-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
/* ================= WHY CHOOSE US ================= */

.why {
  padding: 140px 0;
  background: #ffffff;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  text-align: center;
  margin-bottom: 20px;
}

.why-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 90px;
  font-size: 18px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.why-card {
  text-align: center;
}

.why-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 25px;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 20px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}
.cta {
  position: relative;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto 30px auto;
  background: url("../images/ChatGPT.webp") center/cover no-repeat;
  padding: 140px 60px;
  text-align: center;
  color: white;
  border-radius: 12px;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.cta p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* ================= FOOTER ================= */

.footer {
  background: #0e2a47;
  color: #ffffff;
  padding: 100px 0 0;
}

.footer-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 80px;
}

.footer-col h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 25px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 30px;
  color: #cfd8e3;
}

/* QR */
.qr-code {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 25px;
  object-fit: contain;
}

/* Wrapper contact button */
.contact-img {
  display: block;
  margin-top: 10px;
}

/* Image contact */
.contact-img img {
  width: 220px;
  display: block;
}
.footer-col:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* List */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

/* LINK PUTIH FIX */
.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:visited {
  color: #ffffff;
}

.footer-col ul li a:hover {
  color: #cfd8e3;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 80px;
  text-align: center;
  padding: 25px 0;
  background: #0b223a;
  font-size: 14px;
  color: #cfd8e3;
}

/* ================= MOBILE DRAWER ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, #0c1b2f, #0a1424);
  padding: 40px 30px;
  transition: 0.4s ease;
  z-index: 2000;
  overflow-y: auto;
   box-sizing: border-box;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HEADER */
.mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.mobile-close {
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

/* NAV */
.mobile-nav {
  list-style: none;
  margin-bottom: 40px;
}

.mobile-nav li {
  margin-bottom: 28px;
}

.mobile-nav a,
.mobile-toggle {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-nav a.active {
  color: #3c7dff;
}

/* SUBMENU */
.mobile-submenu {
  list-style: none;
  margin-top: 15px;
  padding-left: 10px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.mobile-submenu li {
  margin-bottom: 14px;
}

.mobile-submenu a {
  font-size: 16px;
  font-weight: 400;
  color: #cfd8ff;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 300px;
}

.mobile-arrow {
  transition: 0.3s;
}

.mobile-dropdown.active .mobile-arrow {
  transform: rotate(180deg);
}

/* BUTTON */
.mobile-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #3c63a8;
  padding: 14px 0;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  color: #ffffff !important;
  transition: 0.3s ease;
}

.mobile-btn:hover {
  background: #0e2a47;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-code {
    margin: 0 auto 25px;
  }

  .contact-img img {
    margin: auto;
  }
  .footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* ===============================
   TABLET (max 1024px)
================================= */
@media (max-width: 1024px) {
  .nav-container {
    width: 95%;
  }

  .menu {
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .fire-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .fire-content h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ===============================
   MOBILE (max 768px)
================================= */
@media (max-width: 768px) {
  /* ===== NAVBAR ===== */
  .menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .logo {
    height: 50px;
  }

  .logo img {
    max-height: 50px;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
  }

  .overlay-left {
    width: 100%;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 15px;
    line-height: 1.6;
  }
  .sub {
    font-size: 10px;
    margin-top: 8px;
    line-height: 1.6;
  }

  .small {
    font-size: 13px;
  }
  .pt-name {
    white-space: nowrap;
  }

  /* ===== WHY ===== */
  .why-title {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-card p {
    text-align: justify;
  }

  /* ===== CTA ===== */
  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 16px;
    text-align: justify;
  }

  /* ===== FOOTER ===== */
  /* ===== FOOTER MOBILE FIX ===== */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left; /* ubah dari center ke left */
  }

  .footer-col {
    text-align: left;
  }

  .footer-col:first-child {
    align-items: flex-start; /* supaya QR dan button tidak center */
  }

  .qr-code {
    margin: 0 0 25px 0; /* hilangkan auto center */
  }

  .contact-img img {
    margin: 0; /* jangan center */
  }
}
/* ================= WHO MOBILE FIX ================= */
@media (max-width: 768px) {
  .who {
    padding: 80px 0;
  }

  .who-title {
    font-size: 28px;
  }

  .who-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 kolom */
    gap: 25px;
  }

  .who-card {
    width: 100%;
    min-height: auto; /* hilangkan tinggi paksa */
    padding: 30px 20px;
  }
}
/* ===============================
   TABLET ONLY (769px - 1024px)
================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  /* NAVBAR */
  .navbar {
    height: 75px;
  }

  .menu {
    gap: 25px;
  }

  .menu a {
    font-size: 14px;
  }

  .btn-nav {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 30px;
    max-width: 650px;
  }

  .overlay-left {
    width: 70%;
  }

  /* WHO SECTION */
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .who-card {
    min-height: auto;
  }

  /* FIRE SECTION */
  .fire-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .fire-content h2 {
    font-size: 30px;
  }

  .fire-box {
    padding: 25px 30px;
  }

  .fire-icon {
    width: 85px;
    height: 85px;
  }

  .fire-icon img {
    width: 75px;
  }

  /* WHY SECTION */
  .why {
    padding: 100px 0;
  }

  .why-title {
    font-size: 34px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .why-card img {
    width: 90px;
    height: 90px;
  }

  /* CTA */
  .cta {
    padding: 100px 40px;
  }

  .cta h2 {
    font-size: 36px;
  }

  .cta p {
    font-size: 16px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

/* FLOATING ICON */
.floating-lang {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  background: #0e2a47;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.floating-lang:hover {
  transform: scale(1.1);
}

/* POPUP */
.lang-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lang-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 280px;
}

.lang-box button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  background: #0e2a47;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
