* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #ffffff;
  color: #1f2937;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
header {
  background: #ffffff; /* putih */
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* biar tetap elegan */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

nav a {
  color: #000; /* hitam */
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a:hover {
  color: #f4b400; /* kuning brand */
}

.btn-primary {
  background: #facc15;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid white;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  background: #0f2a44;
  color: white;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-btn {
  display: flex;
  gap: 10px;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
}

/* SECTION */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* GRAY SECTION */
.gray {
  background: #f3f4f6;
}

/* CTA */
.cta {
  background: #0f2a44;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE */
/* ===== MOBILE PREMIUM MENU ===== */

/* STICKY NAVBAR */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 998;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #0f2a44;
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s ease;
    z-index: 999;
  }

  nav a {
    margin: 15px 0;
    font-size: 18px;
  }

  nav.active {
    right: 0;
  }

  #overlay.active {
    display: block;
  }

}

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* FIX IMAGE MOBILE */
@media (max-width: 768px) {
  .card img {
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 15px;
  }

  .card h3 {
    font-size: 14px;
  }
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card h3 {
  padding: 10px;
  font-size: 14px;
}

.portfolio .card img {
  height: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: 1fr;
  }

}

.portfolio {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* GALLERY HOVER */
.portfolio .card img {
  cursor: pointer;
  transition: 0.3s;
}

.portfolio .card:hover img {
  transform: scale(1.05);
}

/* MODAL */
#modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

#modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* ANIMASI SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 5px;
}

.section-subtitle {
  text-align: center;
  color: #e63946;
  margin-bottom: 30px;
}

/* GRID LAYANAN */
.layanan {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.layanan-card {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s;
}

.layanan-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* JUDUL (KUNING BRAND LASARUMI) */
.layanan-card h3 {
  color: #f4b400;
  font-size: 16px;
  margin-bottom: 5px;
}

/* DESKRIPSI */
.layanan-card p {
  font-size: 13px;
  color: #555;
}

/* HOVER EFFECT */
.layanan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .layanan {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* GRID PORTFOLIO */
.portfolio-pro {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.portfolio-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 15px;
  transition: 0.3s;
}

/* GAMBAR */
.portfolio-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f4b400;
  color: #000;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

/* JUDUL */
.portfolio-card h3 {
  font-size: 15px;
  padding: 10px;
  color: #222;
}

/* DESKRIPSI */
.portfolio-card p {
  font-size: 13px;
  color: #555;
  padding: 0 10px;
}

/* HOVER EFFECT */
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.portfolio-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

@media (max-width: 768px) {
  .portfolio-pro {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* NAVBAR FLEX */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
  display: block;
}  

/* FIX AGAR TIDAK KETIMPA */
.logo img {
  max-width: none !important;
}

@media (max-width: 768px) {
  .logo img {
    height: 38px;
  }
}

header {
  background: linear-gradient(90deg, #0D2B45, #0b5ed7);
  padding: 15px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a:hover {
  color: #f4b400; /* kuning brand */
}

.logo img {
  filter: brightness(1.1);
}

header {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND DI HERO */
.brand-hero {
  margin-bottom: 10px;
}

/* LASARUMI (BESAR & KUNING) */
.brand-main {
  font-size: 28px;
  font-weight: 800;
  color: #f4b400; /* kuning logo */
  display: block;
  letter-spacing: 1px;
}

/* SUBTITLE */
.brand-sub {
  font-size: 14px;
  color: #0d6efd; /* biru brand */
  font-weight: 500;
  letter-spacing: 1px;
}

.brand-main {
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.brand-sub {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .brand-main {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 12px;
  }
}

/* HIGHLIGHT PORTOFOLIO */
.portfolio-highlight {
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  flex-wrap: nowrap; /* tetap horizontal */
}

/* TEXT UMUM */
.portfolio-highlight span {
  font-size: 16px;
  color: #333;
}

/* TITIK PEMISAH */
.portfolio-highlight .dot {
  color: #999;
}

/* HIGHLIGHT KUNING */
.portfolio-highlight .highlight {
  color: #f4b400; /* warna logo */
}

@media (max-width: 768px) {
  .portfolio-highlight {
    font-size: 12px;
    gap: 6px;
  }

  .portfolio-highlight span {
    font-size: 12px;
  }
}

/* HIGHLIGHT LAYANAN */
.layanan-highlight {
  margin-top: 40px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;

  font-weight: 700;
  letter-spacing: 1px;

  background: #f4b400; /* kuning logo */
  color: #000; /* hitam */

  padding: 12px 20px;
  border-radius: 8px;

  width: fit-content;
  margin-left: auto;
  margin-right: auto;

  white-space: nowrap; /* tetap horizontal */
}

@media (max-width: 768px) {
  .layanan-highlight {
    font-size: 12px;
    padding: 10px 15px;
  }
}

/* CTA WHATSAPP */
.wa-cta {
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #25D366; /* hijau WhatsApp */
  color: #fff;

  padding: 14px 22px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  width: fit-content;

  transition: 0.3s;
}

/* ICON */
.wa-icon {
  display: flex;
  align-items: center;
}

/* HOVER */
.wa-cta:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .wa-cta {
    font-size: 13px;
    padding: 12px 18px;
  }
}

/* CONTACT BAR (BIRU) */
.contact-bar {
  background: #0b2c4d;
  color: #fff;
  padding: 30px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-item h3 {
  color: #f4b400;
  margin-bottom: 10px;
}

.contact-item p {
  margin: 3px 0;
}

.contact-item .bold {
  font-weight: bold;
  font-size: 16px;
}

/* FEATURES BAR (KUNING) */
.features-bar {
  background: #f4b400;
  padding: 15px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 10px;
}

.feature {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

}

/* CONTACT BAR */
.contact-bar {
  background: #0b2c4d;
  color: #fff;
  padding: 35px 0;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

/* ITEM */
.contact-item {
  padding: 0 15px;
}

/* GARIS PEMISAH */
.border-left {
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* ICON + TITLE */
.icon-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.icon {
  font-size: 20px;
}

.contact-item h3 {
  color: #f4b400;
  font-size: 14px;
}

.contact-item p {
  margin: 2px 0;
}

.bold {
  font-weight: bold;
  font-size: 15px;
}

/* MAP */
.contact-map img {
  width: 100%;
  max-width: 140px;
}

/* FEATURES */
.features-bar {
  background: #f4b400;
  padding: 15px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 10px;
}

.feature {
  font-weight: 600;
  color: #000;
  font-size: 13px;
}

@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .border-left {
    border-left: none;
  }

  .contact-map img {
    margin: 10px auto;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* FAQ SECTION */
.faq-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

.faq-title {
  text-align: center;
  margin-bottom: 30px;
  color: #1e2a38;
}

/* ITEM */
.faq-item {
  max-width: 800px;
  margin: 10px auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

/* QUESTION */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}

/* HOVER */
.faq-question:hover {
  background: #f4f4f4;
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 15px;
  font-size: 14px;
  color: #444;
  border-top: 1px solid #eee;
  line-height: 1.6;
}

/* MOBILE: LAYANAN & PORTOFOLIO JADI 1 KOLOM */
@media (max-width: 768px) {

  .grid.layanan {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .grid.portfolio-pro,
  .grid.portfolio {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

}

@media (max-width: 768px) {

  .layanan-card {
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: #fff;
  }

  .layanan-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .layanan-card h3 {
    color: #e53935; /* merah seperti contoh */
    text-align: center;
  }

  .layanan-card p {
    text-align: center;
    font-size: 14px;
  }

}

/* GAMBAR FULL PROPORSIONAL + ELEGAN */
@media (max-width: 768px) {

  .layanan-card img,
  .portfolio-card img {
    width: 100%;
    aspect-ratio: 4 / 3; /* tinggi lebih besar (mirip contoh) */
    object-fit: cover;
    border-radius: 12px;
  }

}

/* FORCE HEADER PUTIH */
header {
  background: #ffffff !important;
}

/* FORCE MENU HITAM */
header nav a {
  color: #000 !important;
}

.menu-toggle {
  color: #000;
}

/* WRAPPER */
.proses-premium {
  text-align: center;
}

/* LINE */
.proses-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 40px;
}

/* GARIS */
.proses-line::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: #ddd;
  z-index: 0;
}

/* STEP */
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

/* NUMBER */
.step-number {
  background: #f4b400;
  color: #000;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  font-weight: bold;
  margin: 0 auto 5px;
}

/* ICON */
.step-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid #f4b400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TEXT */
.step p {
  font-size: 13px;
  font-weight: 500;
}

@media (max-width:768px){

  .proses-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 20px;
  }

  /* garis dihapus di HP */
  .proses-line::before {
    display: none;
  }

  .step {
    margin-bottom: 10px;
  }

}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.step-icon {
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.btn-outline {
  background: transparent;
  color: #0b2c4d;
  border: 2px solid #0b2c4d;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #0b2c4d;
  color: #fff;
}

/* CARD KEUNGGULAN */
.card {
  background: #fff;
  padding: 25px;              /* ⬅️ bikin lega */
  border-radius: 12px;
  text-align: center;
  font-size: 18px;            /* ⬅️ perbesar teks */
  font-weight: 600;
  line-height: 1.5;
  min-height: 100px;          /* ⬅️ biar tidak gepeng */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER (biar premium) */
.card:hover {
  transform: translateY(-5px);
}

/* CARD NORMAL (VERTIKAL) */
.layanan-card,
.portfolio-pro-card,
.card {
  display: block;   /* ⬅️ penting! jangan flex */
}

