/* FONT DASAR */
body {
  font-family: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
}

/* SECTION GENERIC */
.section {
  padding: 72px 0;
  background: #f9fafb;
}

.section-dark {
  background: #020617;
}

.section-eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #22c55e;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
}

.section-text {
  font-size: 14px;
  color: #4b5563;
}

/* ================== HERO ================== */

.hero-section {
  position: relative;
  background-image: url("../image/swc3.jpeg");
  background-size: cover;
  background-position: center;
  color: #f9fafb;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.65));
  padding: 90px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 32px;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #a5b4fc;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}

.hero-highlight {
  color: #22c55e;
}

.hero-text {
  font-size: 15px;
  color: #e5e7eb;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: #22c55e;
  color: #0f172a;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
}

.btn-hero-primary:hover {
  background: #16a34a;
  color: #0f172a;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: #cbd5f5;
}

.hero-badges span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* HERO CARD KANAN */

.hero-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
  align-self: center;
}

.hero-card-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-card-number {
  font-size: 32px;
  font-weight: 700;
  color: #22c55e;
}

.hero-card-label {
  font-size: 13px;
  color: #e5e7eb;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
  color: #cbd5e1;
}

.hero-card-list li + li {
  margin-top: 4px;
}

/* ================== ABOUT ================== */

.about-section {
  background: #ffffff;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-main-img,
.about-secondary-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
}

.about-main-img img,
.about-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.about-content {
  padding-left: 4px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 13px;
}

.about-pill-icon {
  color: #16a34a;
  font-size: 18px;
}

.about-pill-label {
  font-weight: 500;
}

.about-list {
  padding-left: 18px;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 12px;
}

.link-primary {
  font-size: 14px;
  text-decoration: none;
  color: #16a34a;
  font-weight: 600;
}

.link-primary:hover {
  color: #15803d;
}

/* ================== SERVICES ================== */

.services-grid .service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.22);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-body {
  padding: 18px 18px 20px;
}

.service-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
}

.service-title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.service-text {
  font-size: 13px;
  color: #4b5563;
}

/* ================== PORTFOLIO ================== */

.portfolio-section {
  background: #020617;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline-light:hover {
  background: #e5e7eb;
  color: #020617;
}

.portfolio-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

/* ================== TESTIMONIAL ================== */

.testi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  height: 100%;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.testi-name {
  font-size: 18px;
  font-weight: 600;
}

.testi-role {
  font-size: 12px;
  color: #6b7280;
}

.testi-stars {
  font-size: 14px;
  color: #facc15;
}

.testi-quote {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.testi-text {
  font-size: 13px;
  color: #4b5563;
  margin-top: 16px;
}

/* ================== WA FLOAT ================== */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.7);
  z-index: 50;
}

/* ================== RESPONSIVE ================== */

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-overlay {
    padding: 72px 0 80px;
  }

  .hero-title {
    font-size: 34px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-images {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-main-img,
  .about-secondary-img {
    height: 230px;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 52px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 13px;
  }

  .services-grid .service-card .service-img-wrap img {
    height: 190px;
  }

  /* DI SINI DIUBAH: tetap 2 kolom di HP, bukan 1 */
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testi-card {
    padding: 20px 18px;
  }
}
