/* =====================================================
   WASTELOOP PROFESSIONAL HOMEPAGE
===================================================== */

.wl-site {
  --wl-navy: #06283a;
  --wl-navy-2: #0b3548;
  --wl-green: #19c875;
  --wl-green-dark: #079b59;
  --wl-text: #0a2c3e;
  --wl-muted: #637b89;
  --wl-light: #f4f8f6;
  --wl-border: #dce7e2;
  --wl-white: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
  color: var(--wl-text);
  overflow: hidden;
}

.wl-site *,
.wl-site *::before,
.wl-site *::after {
  box-sizing: border-box;
}

.wl-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================
   HERO
========================= */

.wl-hero {
  background: var(--wl-navy);
  color: white;
  padding: 100px 0 110px;
}

.wl-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.wl-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #56e59b;
  margin-bottom: 24px;
}

.wl-eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--wl-green);
}

.wl-eyebrow.green {
  color: var(--wl-green-dark);
}

.wl-eyebrow.dark {
  color: var(--wl-navy);
}

.wl-hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -3px;
  margin: 0 0 28px;
  color: white;
  max-width: 720px;
}

.wl-hero h1 strong {
  display: block;
  color: var(--wl-green);
}

.wl-lead {
  max-width: 650px;
  color: #c8d7de;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.wl-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 27px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 800;
  transition: .2s ease;
}

.wl-btn-primary {
  background: var(--wl-green);
  color: #062b1c !important;
}

.wl-btn-primary:hover {
  transform: translateY(-2px);
}

.wl-btn-outline {
  border: 1px solid #6a8998;
  color: white !important;
}

.wl-btn-outline:hover {
  border-color: white;
}

.wl-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #a9bec8;
  font-size: 14px;
}

.wl-dot {
  width: 9px;
  height: 9px;
  background: var(--wl-green);
  border-radius: 50%;
}

.wl-hero-image {
  position: relative;
}

.wl-hero-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
}

.wl-image-card {
  position: absolute;
  left: -25px;
  bottom: 25px;
  background: white;
  color: var(--wl-text);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.wl-image-card strong {
  display: block;
  font-size: 16px;
}

.wl-image-card span {
  display: block;
  color: var(--wl-muted);
  font-size: 13px;
  margin-top: 4px;
}


/* =========================
   TRUST
========================= */

.wl-trust {
  background: white;
  border-bottom: 1px solid var(--wl-border);
}

.wl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wl-trust-grid > div {
  padding: 30px 28px;
  border-right: 1px solid var(--wl-border);
}

.wl-trust-grid > div:first-child {
  border-left: 1px solid var(--wl-border);
}

.wl-trust strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

.wl-trust span {
  display: block;
  color: var(--wl-muted);
  font-size: 13px;
  line-height: 1.6;
}


/* =========================
   GENERAL SECTION
========================= */

.wl-section {
  padding: 110px 0;
  background: white;
}

.wl-section-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.wl-section h2,
.wl-centered-heading h2,
.wl-about-content h2,
.wl-location-box h2,
.wl-cta h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 0;
  color: var(--wl-text);
}

.wl-section h2 span,
.wl-centered-heading h2 span,
.wl-about-content h2 span,
.wl-location-box h2 span,
.wl-cta h2 span {
  color: var(--wl-green-dark);
}

.wl-section-heading > p {
  color: var(--wl-muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}


/* =========================
   SERVICE CARDS
========================= */

.wl-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.wl-service-card {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--wl-border);
  border-radius: 18px;
  padding: 30px;
  transition: .25s ease;
  background: white;
}

.wl-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6,40,58,.09);
}

.wl-service-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--wl-green-dark);
}

.wl-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 60px 0 25px;
  border-radius: 50%;
  background: #e7f8ef;
  color: var(--wl-green-dark);
  font-size: 23px;
}

.wl-service-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 15px;
}

.wl-service-card p {
  color: var(--wl-muted);
  line-height: 1.7;
  font-size: 14px;
}

.wl-service-card a,
.wl-text-link {
  color: var(--wl-green-dark) !important;
  text-decoration: none !important;
  font-weight: 800;
}

.wl-center-link {
  text-align: center;
  margin-top: 40px;
}


/* =========================
   DARK SECTION
========================= */

.wl-dark-section {
  background: var(--wl-navy);
  color: white;
  padding: 110px 0;
}

.wl-two-column {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.wl-dark-section h2 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -2.5px;
  color: white;
  margin: 0;
}

.wl-dark-section h2 span {
  color: var(--wl-green);
}

.wl-dark-text {
  color: #afc2cb;
  font-size: 17px;
  line-height: 1.75;
  margin-top: 30px;
}

.wl-benefit {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #315263;
}

.wl-benefit > div {
  color: var(--wl-green);
  font-weight: 800;
}

.wl-benefit h3 {
  color: white;
  font-size: 20px;
  margin: 0 0 8px;
}

.wl-benefit p {
  color: #a9bec8;
  line-height: 1.65;
  margin: 0;
}


/* =========================
   INDUSTRIES
========================= */

.wl-centered-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.wl-centered-heading .wl-eyebrow {
  justify-content: center;
}

.wl-centered-heading p {
  color: var(--wl-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 25px;
}

.wl-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--wl-border);
  border-left: 1px solid var(--wl-border);
}

.wl-industry {
  padding: 32px;
  border-right: 1px solid var(--wl-border);
  border-bottom: 1px solid var(--wl-border);
}

.wl-industry span {
  color: var(--wl-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.wl-industry h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.wl-industry p {
  color: var(--wl-muted);
  line-height: 1.6;
  margin: 0;
}


/* =========================
   CLIENT
========================= */

.wl-client-section {
  background: var(--wl-light);
  padding: 100px 0;
}

.wl-client-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.wl-client-logo {
  height: 120px;
  background: white;
  border: 1px solid var(--wl-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aabb3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.wl-client-note {
  text-align: center;
  color: #899ba4;
  font-size: 12px;
  margin-top: 20px;
}


/* =========================
   ABOUT
========================= */

.wl-about-section {
  padding: 110px 0;
  background: var(--wl-navy);
}

.wl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wl-about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 22px;
}

.wl-about-content {
  color: white;
}

.wl-about-content h2 {
  color: white;
}

.wl-about-content h2 span {
  color: var(--wl-green);
}

.wl-about-content p {
  color: #b8cbd4;
  font-size: 16px;
  line-height: 1.8;
}

.wl-about-content .wl-text-link {
  display: inline-block;
  margin-top: 15px;
}


/* =========================
   LOCATION
========================= */

.wl-location-section {
  padding: 90px 0;
}

.wl-location-box {
  background: var(--wl-light);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
}

.wl-location-box p {
  color: var(--wl-muted);
  line-height: 1.8;
  max-width: 680px;
}

.wl-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.wl-location-list span {
  padding: 11px 15px;
  background: white;
  border: 1px solid var(--wl-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}


/* =========================
   CTA
========================= */

.wl-cta {
  background: var(--wl-green);
  padding: 90px 0;
}

.wl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.wl-cta h2 {
  max-width: 800px;
}

.wl-cta h2 span {
  color: white;
}

.wl-cta p {
  color: #073d27;
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
}

.wl-btn-dark {
  background: var(--wl-navy);
  color: white !important;
  white-space: nowrap;
}


/* =========================
   FOOTER
========================= */

.wl-footer {
  background: #041e2d;
  color: white;
  padding: 75px 0 0;
}

.wl-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .9fr .7fr;
  gap: 60px;
  padding-bottom: 60px;
}

.wl-footer h3 {
  font-size: 28px;
  margin: 0 0 20px;
}

.wl-footer h4 {
  font-size: 14px;
  margin: 0 0 20px;
  color: var(--wl-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wl-footer p,
.wl-footer a {
  color: #91aab6;
  line-height: 1.7;
  font-size: 14px;
}

.wl-footer a {
  display: block;
  text-decoration: none !important;
  margin-bottom: 8px;
}

.wl-footer-bottom {
  border-top: 1px solid #1d3a49;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #708d9a;
  font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .wl-hero-grid,
  .wl-two-column,
  .wl-about-grid,
  .wl-location-box,
  .wl-section-heading {
    grid-template-columns: 1fr;
  }

  .wl-hero {
    padding: 70px 0;
  }

  .wl-hero-image img {
    height: 400px;
  }

  .wl-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .wl-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


@media (max-width: 600px) {

  .wl-container {
    width: min(100% - 32px, 1180px);
  }

  .wl-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .wl-hero-image img {
    height: 320px;
  }

  .wl-image-card {
    left: 15px;
    bottom: 15px;
  }

  .wl-service-grid,
  .wl-industry-grid,
  .wl-client-logos,
  .wl-trust-grid,
  .wl-footer-grid {
    grid-template-columns: 1fr;
  }

  .wl-section,
  .wl-dark-section,
  .wl-about-section {
    padding: 75px 0;
  }

  .wl-location-box {
    padding: 35px 25px;
  }

  .wl-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 0;
  }

}

/* =====================================================
   WASTELOOP HEADER OVERRIDE
   Fix WordPress / PopularFX default header
===================================================== */

/* Header utama */
.site-header,
header.site-header,
#masthead {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Area dalam header */
.site-header .container,
.site-header .site-header-inner,
#masthead .container,
#masthead .site-header-inner {
  max-width: 1180px !important;
  width: calc(100% - 48px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* Logo */
.site-header img,
#masthead img,
.custom-logo {
  max-width: 210px !important;
  width: 210px !important;
  height: auto !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

/* Link menu */
.site-header a,
#masthead a {
  text-decoration: none !important;
}

/* Navigasi */
.site-header nav ul,
#masthead nav ul,
.site-header .menu,
#masthead .menu {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Item menu */
.site-header nav li,
#masthead nav li,
.site-header .menu-item,
#masthead .menu-item {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Teks menu */
.site-header nav a,
#masthead nav a,
.site-header .menu-item a,
#masthead .menu-item a {
  color: #06283a !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  padding: 8px 0 !important;
}

/* Hover */
.site-header nav a:hover,
#masthead nav a:hover,
.site-header .menu-item a:hover,
#masthead .menu-item a:hover {
  color: #079b59 !important;
}

/* Header layout umum */
.site-header .site-branding,
#masthead .site-branding {
  margin: 0 !important;
  padding: 0 !important;
}

/* Pastikan header punya tinggi profesional */
.site-header > div,
#masthead > div {
  min-height: 90px !important;
}

/* =========================
   MOBILE HEADER
========================= */

@media (max-width: 900px) {

  .site-header img,
  #masthead img,
  .custom-logo {
    width: 175px !important;
    max-width: 175px !important;
  }

  .site-header nav ul,
  #masthead nav ul,
  .site-header .menu,
  #masthead .menu {
    gap: 18px !important;
  }

  .site-header nav a,
  #masthead nav a,
  .site-header .menu-item a,
  #masthead .menu-item a {
    font-size: 14px !important;
  }
}

@media (max-width: 600px) {

  .site-header img,
  #masthead img,
  .custom-logo {
    width: 155px !important;
    max-width: 155px !important;
  }

  .site-header nav ul,
  #masthead nav ul,
  .site-header .menu,
  #masthead .menu {
    gap: 12px !important;
  }

  .site-header nav a,
  #masthead nav a,
  .site-header .menu-item a,
  #masthead .menu-item a {
    font-size: 13px !important;
  }
}