* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo img {
  height: 60px;
}

.menu-icon {
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.menu-icon i {
  color: #000;
  font-size: 24px;
}

.hero {
  height: 60vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url("assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 40px 25px;
}

/* Optimasi posisi gambar latar belakang khusus untuk layar HP */
@media (max-width: 767px) {
  .hero {
    background-position: 65% center; /* Menggeser fokus gambar sedikit ke kanan agar percikan las tetap terlihat */
  }
}

.hero-slogan {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #e2e8f0;
  margin-top: 15px;
  letter-spacing: 1px;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-block;
  background-color: rgba(30, 80, 220, 0.4);
  color: #3b82f6;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.intro {
  padding: 40px 25px;
  text-align: left;
}

.description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 35px;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: white;
  color: black;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
  .btn {
    width: 250px;
  }
}

.about {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 60px 25px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.badge-light {
  display: inline-block;
  background-color: #ebf2ff;
  color: #2563eb;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-description {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-card {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
  font-size: 36px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    max-width: 700px;
  }
  .about-description {
    max-width: 800px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Features Section Styles */
.features {
  background-color: #0f1115;
  padding: 70px 25px;
  color: #ffffff;
}

.badge-blue {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.15);
  color: #3b82f6;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-title-white {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 45px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  min-width: 55px;
  height: 55px;
  background-color: #2563eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.feature-text h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-text p {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .section-title-white {
    font-size: 40px;
    max-width: 600px;
  }

  .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.services {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.badge-blue-light {
  display: inline-block;
  background-color: #ebf2ff;
  color: #2563eb;
  padding: 8px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 90%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.icon-placeholder {
  width: 100%;
  height: 80px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: #222222;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .section-heading {
    font-size: 40px;
  }
}

.benefits {
  background-color: #ffffff;
  padding: 60px 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-box {
  min-width: 60px;
  height: 60px;
  background-color: #ebf2ff;
  border-radius: 10px;
  margin-right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2563eb;
}

.benefit-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.portfolio {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f1f1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
  line-height: 1.3;
}

.category {
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
}

.btn-full-blue {
  display: block;
  width: 100%;
  background-color: #2563eb;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-full-blue:hover {
  background-color: #1d4ed8;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .btn-full-blue {
    max-width: 400px;
    margin: 0 auto;
  }
}

.process {
  background-color: #ffffff;
  padding: 60px 20px;
}

.timeline {
  position: relative;
  padding-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 40px;
  left: 21px;
  width: 2px;
  background-color: #dddddd;
  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.timeline-number {
  min-width: 42px;
  height: 42px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline {
    max-width: 600px;
  }
}

.faq {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}

.faq-question i {
  font-size: 14px;
  transition: transform 0.3s;
  color: #2563eb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  background-color: #fcfcfc;
  padding: 0 25px;
}

.faq-answer p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  padding-bottom: 20px;
}

.faq-item.active {
  border-color: #2563eb;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
}

.contact {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card {
  background: #f8f8f8;
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.contact-card p {
  font-size: 15px;
  color: #444444;
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.btn-whatsapp {
  display: block;
  width: 100%;
  background-color: #2563eb;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .contact-card,
  .map-container,
  .btn-whatsapp {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 60px 20px 30px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.brand-logo img {
  height: 50px;
}

.brand-logo h2 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer-description {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
}

.footer-nav h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
  margin-bottom: 40px;
}

.nav-grid a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-grid a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.social-box {
  width: 50px;
  height: 50px;
  background-color: #222222;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.social-box:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #222222;
  margin-bottom: 30px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #666666;
}

@media (min-width: 768px) {
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand {
    flex: 1;
    min-width: 300px;
  }

  .footer-nav {
    margin-left: 50px;
  }

  .copyright {
    width: 100%;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.sticky {
  background-color: rgba(13, 13, 13, 0.95);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #2563eb;
}

.menu-icon {
  display: none;
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #0d0d0d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a {
    font-size: 18px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

.modal-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}

#caption-lightbox {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  font-size: 1.1rem;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover {
  color: #bbb;
}

.portfolio-card .card-image img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-card .card-image img:hover {
  transform: scale(1.05);
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
    margin-top: 100px;
  }
}

.closing-statement {
  padding: 100px 0 80px 0;
  background-color: #f8fafc;
  text-align: center;
}

.closing-statement .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.closing-statement h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 20px;
}

.closing-statement p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .closing-statement {
    padding: 60px 0;
  }

  .closing-statement h2 {
    font-size: 1.75rem;
  }

  .closing-statement p {
    font-size: 1rem;
  }
}
