/* -----------------------------------------------------------
   RESET & BASE
----------------------------------------------------------- */
:root {
  --white-color:                  #ffffff;
  --primary-color:                #00CC99;
  --secondary-color:              #0066CC;
  --section-bg-color:             #fff;
  --custom-btn-bg-hover-color:    #00CC99;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}


html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.45;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap2 {
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------------------------------------
   COLOR PALETTE
----------------------------------------------------------- */
:root {
  --primary: #f4a024;
  --dark-nav: rgba(20,20,20,0.95);
  --dark-bg: #111;
  --muted: #a9a9a9;
  --light: #fff;
}

/* -----------------------------------------------------------
   TOP HEADER
----------------------------------------------------------- */
.top-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.top-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 20px;
  color: #08213f;
  letter-spacing: -0.5px;
}

.logo .tag {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #333;
}

.top-contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-contacts i {
  color: #cb971d;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 44px; /* menyesuaikan tinggi h1 + tagline */
  width: auto;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 20px;
  color: #08213f;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-text .tag {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}


/* -----------------------------------------------------------
   NAVBAR
----------------------------------------------------------- */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #08213f ;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 10px;
  list-style: none;
}

.nav-list li a {
  padding: 8px 6px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;
}

.nav-list li a:hover {
  color: #cac7c7;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--light);
}

.quote-btn {
  margin-left: auto;
  padding: 10px 14px;
  background-color: #cb971d;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 0 6px 10px rgba(244,160,36,0.12);
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  background-image: url('img/hero.webp');
  background-position: center;
  background-size: cover;
  color: var(--light);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,12,30,0.5), rgba(6,12,30,0.6));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 80px 0;
  color: #fff;
}

.hero small {
  display: block;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: #e6e6e6;
}

.hero h1 {
  margin: 6px 0;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.02;
}

.hero h1 span {
  color: #cb971d
}

.hero p {
  margin-top: 14px;
  font-weight: 300;
  color: #d2d2d2;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 16px;
}

.btn-primary {
  background-color: #cb971d;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.24);
}

/* -----------------------------------------------------------
   FEATURES SECTION
----------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 65px 40px;
  background-color: #08213f ;
  color: #fff;
}

.feature {
  display: flex;
  flex-direction: column;
}

.feature img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--light);
}

.title-underline {
  width: 100px;
  height: 3px;
  margin-top: auto;
  background: whitesmoke;
  border-radius: 3px;
}

.feature p {
  font-size: 14px;
  color: #bfbfbf;
  margin-bottom: 30px;
}


/* -----------------------------------------------------------
   RESPONSIVE TABLET
----------------------------------------------------------- */
@media (max-width: 1100px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-contacts {
    gap: 14px;
    font-size: 13px;
  }
}

/* -----------------------------------------------------------
   RESPONSIVE MOBILE
----------------------------------------------------------- */
@media (max-width: 900px) {

  .wrap {
    padding: 0 16px;
  }

  /* Top Header */
  .top-header .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-contacts {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  /* NAV MOBILE */
  .menu-toggle {
    display: block;
    margin-right: 60px;     
  }

  .nav-inner {
    padding: 14px 16px;     
  }

  .quote-btn {
    position: absolute;     
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0 !important;
    padding: 9px 14px;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 14px 22px;      
    background: var(--dark-nav);
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }

  .nav-list li a {
    display: block;
    padding: 12px 6px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 22px;
  }
}

/* -----------------------------------------------------------
   EXTRA SMALL MOBILE
----------------------------------------------------------- */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 30px;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .logo h1 {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------
   FEATURES SECTION TITLE
----------------------------------------------------------- */
.features-title {
  text-align: center;
  color: #cc971d;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}


.features-section {
  background-color: #08213f;
  padding-top: 40px;
}

@media (max-width: 900px) {
  .features-title {
    font-size: 26px;
  }
}


/* ===============================
   COLLABORATIVE SECTION
================================ */

.collab-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.collab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID LAYOUT */
.collab-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.collab-image-wrap {
  display: flex;
  justify-content: center;
}

.collab-image-wrap img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* CONTENT */
.collab-content {
  max-width: 540px;
}

.collab-title {
  font-size: 38px;
  font-weight: 700;
  color: #08213f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.collab-desc {
  font-size: 15.5px;
  color: #5e6b7a;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* INFO CARDS */
.collab-cards {
  display: flex;
  gap: 20px;
}

.collab-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f5d76e, #f1c40f, #f5d76e);
  padding: 18px 22px;
  border-radius: 16px;
  flex: 1;
}


.collab-card.light {
  background: #e8f2fb;
}

.collab-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071f3d;
  font-size: 18px;
  flex-shrink: 0;
}

.collab-card-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #071f3d;
}

/* COLLAPSE CARD -> BUTTON */
.collab-btn {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.collab-btn:hover {
  transform: translateY(-2px);
}

/* Active / click */
.collab-btn:active {
  transform: translateY(0);
}

/* Fokus (aksesibilitas) */
.collab-btn:focus-visible {
  outline: 2px solid #4b5fa6;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .collab-cards {
    flex-direction: column;
  }

  .collab-btn {
    width: 100%;
  }
}


/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .collab-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .collab-content {
    margin: 0 auto;
  }

  .collab-cards {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .collab-section {
    padding: 70px 0;
  }

  .collab-title {
    font-size: 30px;
  }

  .collab-cards {
    flex-direction: column;
  }

  .collab-card {
    width: 100%;
    justify-content: flex-start;
  }
}


/* ================================
   FEATURED SERVICES
================================ */
.section-featuredservices {
  background: #082140;
  padding: 70px 0;
  font-family: 'Poppins', sans-serif;
}

.fs-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.fs-subtitle {
  color: #cb971d;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fs-title {
  font-size: 36px;
  font-weight: 700;
  color: #cb971d;
  margin-bottom: 15px;
}

.fs-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.fs-card {
  background: #fafafa;
  width: 330px;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.fs-card:hover {
  transform: translateY(-4px);
}

.fs-iconbox {
  background: #cb971d;
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 18px;
}

/* ICON PNG */
.fs-iconbox img {
  width: 52px;          /* ukuran icon PNG */
  height: 52px;
  object-fit: contain;
  display: block;
}

.fs-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1c2f38;
  margin-bottom: 12px;
}

.fs-card-desc {
  color: #6a6f78;
  font-size: 15px;
  max-width: 260px;
  margin: auto;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .fs-title {
    font-size: 30px;
  }

  .fs-card {
    width: 100%;
    max-width: 420px;
  }
}

/* ================================
   4 CARDS DESKTOP LAYOUT
================================ */
@media (min-width: 1100px) {
  .fs-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .fs-card {
    width: 100%;
  }
}



.bcs-main-btn {
  background: #cb971d;
  padding: 13px 32px;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

/* Helper text above CTA */
.fs-helper-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .fs-helper-text {
    font-size: 13.5px;
    padding: 0 10px;
  }
}


/* ===== SLIDER WIDTH FIX (CENTER 3 CARD) ===== */
.projects-slider {
  max-width: calc(360px * 3 + 60px);
  margin: auto;
  overflow: hidden;
  padding: 0 10px;
}



/* ===== ROUNDED IMAGE KHUSUS TENGAH ===== */
.projects-img {
  height: 260px;
  overflow: hidden;
}

.projects-img.rounded {
  border-radius: 18px;
}

/* ===== SEMBUNYIKAN CARD 4 DI DESKTOP ===== */
.is-hidden-desktop {
  display: none;
}

/* ===== DOT JARAK LEBIH JAUH ===== */
.projects-dots {
  margin-top: 60px; /* sebelumnya 30px */
}

/* ===== MOBILE ===== */
.mobile-dot {
  display: none;
}

@media(max-width: 768px){
  .projects-slider {
    max-width: 100%;
    padding: 0 16px;
  }

  .projects-track {
    gap: 16px;
  }

  .projects-card,
  .projects-card.active {
    flex: 0 0 100%;
    transform: scale(1);
  }

  .is-hidden-desktop {
    display: block;
  }

  /* dot switch */
  .projects-dot[data-desktop] {
    display: none;
  }

  .mobile-dot {
    display: inline-block;
  }
}


/* ===============================
   PROJECTS SECTION
================================ */
.projects {
  padding: 90px 20px;
  max-width: 1250px;
  margin: auto;
  text-align: center;
}

.projects-head {
  margin-bottom: 50px;
}

.projects-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f47b20;
}

.projects-title {
  font-size: 34px;
  margin-top: 10px;
}

/* ===============================
   SLIDER
================================ */
.projects-slider {
  overflow: hidden;
  padding: 0 10px;
  position: relative;
}

.projects-track {
  display: flex;
  gap: 30px;
  transition: transform .6s ease;
  will-change: transform;
}

/* ===============================
   CARD
================================ */
.projects-card {
  flex: 0 0 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 15px rgba(0,0,0,.08);
  overflow: hidden;
  transform: scale(.9);
  transition: transform .45s ease;
}

.projects-card.active {
  transform: scale(1.1);
  border-radius: 14px;
}

/* ===============================
   IMAGE
================================ */
.projects-img {
  height: 260px;
  overflow: hidden;
}

.projects-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.projects-card:hover img {
  transform: scale(1.08);
}

/* ===============================
   CONTENT
================================ */
.projects-body {
  padding: 22px;
  text-align: left;
}

.projects-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.projects-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.projects-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   DOTS
================================ */
.projects-dots {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.projects-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all .35s ease;
}

.projects-dot.active {
  width: 32px;
  border-radius: 20px;
  background: #f47b20;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 768px){
  .projects-slider {
    padding: 0 16px;
  }

  .projects-track {
    gap: 16px;
  }

  .projects-card,
  .projects-card.active {
    flex: 0 0 100%;
    transform: scale(1);
  }
}

@media(max-width: 600px){
  .projects-img {
    height: 220px;
  }
}




/* DUNNO */
/* ===============================
   SECTION BASE
================================ */


/* ===============================
   SLIDER
================================ */
.explore-slider {
  margin-top: 50px;
  overflow: hidden;
  padding: 0 10px; 
  position: relative;
}

.explore-track {
  display: flex;
  gap: 30px;
  transition: transform .6s ease;
  will-change: transform;
}

.explore-card {
  flex: 0 0 360px;   /* FIX WIDTH → biar ga kepotong */
}

/* ===============================
   CARD
================================ */
.explore-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  overflow: hidden;
  transform: scale(.9);
  transition: all .5s ease;
}

/* CARD TENGAH */
.explore-card.active {
  transform: scale(1.08);
}

/* ===============================
   IMAGE
================================ */
.explore-img {
  height: 260px;
  overflow: hidden;
}

.explore-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.explore-card:hover img {
  transform: scale(1.08);
}

/* ===============================
   CONTENT
================================ */
.explore-content {
  padding: 22px;
  text-align: left;
}

.explore-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.explore-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.explore-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   DOT NAVIGATION
================================ */
.explore-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all .35s ease;
}

.dot.active {
  width: 32px;
  border-radius: 20px;
  background: #f47b20;
}

/* ===== MOBILE ===== */
@media(max-width: 768px){
  .explore-slider {
    padding: 0 16px; /* jarak kanan kiri mobile */
  }

  .explore-track {
    gap: 16px;
  }

  .explore-card,
  .explore-card.active {
    flex: 0 0 100%;
    transform: scale(1);
  }
}

.mobile-dot {
  display: none;
}

@media(max-width: 768px){
  .mobile-dot {
    display: inline-block;
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 900px){
  .explore-track {
    gap: 20px;
  }

  .explore-card,
  .explore-card.active {
    flex: 0 0 80%;
    transform: scale(1);
  }
}

@media(max-width: 600px){
  .explore-card,
  .explore-card.active {
    flex: 0 0 100%;
  }

  .explore-img {
    height: 220px;
  }
}


/* FIXED NO TOUCH */
.explorerecentgallery {
  padding: 40px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.erg-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.erg-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #08213f ;
}

.erg-subtitle {
  color: #cb971d;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

/* GRID */
.erg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ITEM */
.erg-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;

  /* KUNCI UKURAN SEMUA IMAGE */
  aspect-ratio: 3 / 4;
}


.erg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease-in-out;
}


/* Hover Zoom */
.erg-item:hover img {
  transform: scale(1.08);
}

/* LABEL */
.erg-label {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.15);
  transition: .3s ease;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .erg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .erg-grid {
    grid-template-columns: 1fr;
  }
  .erg-label {
    font-size: 15px;
    padding: 10px 16px;
  }
}

/* FOOTER WRAPPER */
/* ===============================
   FOOTER BASE
================================ */
.wb-footer {
  background: #f9f9f9;
  color: #444;
  font-family: "Poppins", sans-serif;
  padding-top: 20px;
}

/* TOP GRID */
.wb-footer-top {
  max-width: 1250px;
  margin: auto;
  padding: 0 25px 60px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 50px;
}

/* BRAND */
.wb-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.wb-brand p {
  color: #666;
  line-height: 1.7;
  max-width: 420px;
}

/* TITLES */
.wb-foot-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* CONTACT */
.wb-contact p {
  margin-bottom: 12px;
  color: #555;
}

/* MAP */
.wb-map-desktop iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 8px;
}

/* MOBILE MAP BUTTON */
.wb-map-mobile {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: none;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.map-icon {
  font-size: 22px;
}

.wb-text-link {
  color: inherit;
  text-decoration: none;
}

.wb-text-link:hover {
  text-decoration: underline;
}


/* BOTTOM */
.wb-footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 20px 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  margin: auto;
}

.wb-socials {
  display: flex;
  gap: 12px;
}

.wb-socials a {
  width: 36px;
  height: 36px;
  background: #e8e8e8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #333;
  transition: .25s;
}

.wb-socials a:hover {
  background: #cb971d;
  color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .wb-footer-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wb-brand,
  .wb-contact,
  .wb-location {
    grid-column: span 1;
  }
}

.wb-logo{
  margin-bottom: -20px;
}


@media(max-width: 768px){
  .wb-footer,
  .wb-footer-top {
    overflow-x: hidden;
  }
}

@media(max-width: 768px){
  .wb-map-mobile {
    justify-content: center;
    text-align: center;
  }
}

@media(max-width: 768px){
  .wb-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wb-map-desktop {
    display: none;
  }

  .wb-map-mobile {
    display: flex;
  }

  .wb-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ===============================
   FOOTER CTA WHATSAPP BUTTON
================================ */
.btn-footerresp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 42px;
  background: #cc971d;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(211, 164, 37, 0.35);
  transition: all 0.25s ease;
}

.btn-footerresp::before {
  font-size: 18px;
}

.btn-footerresp:hover {
  background: #b88715;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(211, 164, 37, 0.35);
}

@media(max-width: 768px){
  .btn-footerresp {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}

/* ===============================
   PRODUKSERVICES
================================ */
.section-produkservis {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

.produkservis-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.produkservis-slider {
  overflow: hidden;
}

.produkservis-track {
  display: flex;
  transition: transform 0.6s ease;
}

.produkservis-card {
  min-width: 33.3333%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s ease;
  position: relative;
}

.produkservis-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.produkservis-card img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

/* ZOOM GAMBAR AKTIF */
.produkservis-card.active img {
  transform: scale(1.08);
}

/* OVERLAY */
.produkservis-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  transition: opacity 0.5s;
}

.produkservis-card.active::before {
  opacity: 0;
}

.produkservis-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f5b400;
  color: #000;
  padding: 6px 10px;
  font-weight: bold;
  border-radius: 8px;
  z-index: 3;
}

.produkservis-card h3 {
  color: #fff;
  margin: 15px 0 5px;
}

.produkservis-card p {
  color: #ccc;
  font-size: 14px;
}

/* DOTS */
.produkservis-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.produkservis-dot {
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
}

.produkservis-dot.active {
  background: #f5b400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .produkservis-card {
    min-width: 100%;
  }
}

.produkservis-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f5b400;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
}

.produkservis-prev { left: 0; }
.produkservis-next { right: 0; }

.hero-section11 {
  background-image: url(''), linear-gradient(#08213f, #FFFFFF);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 100px;
}

.articledupe {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 50px;
}

.owl-carousel {
  text-align: center;
}

.owl-carousel-image {
  display: block;
}


.verified-image {
  display: inline-block;
  width: 20px;
  height: auto;
}

.owl-carousel .owl-item {
  transform: scale(0.85);
  transition: all 0.3s ease;
  opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
  transform: scale(1);
  opacity: 1;
}

.owl-carousel-info-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.owl-carousel-info {
  background-color: white;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
   text-align: center;
}

.badge {
  background-color: var(--custom-btn-bg-color);
  font-family: var(--title-font-family);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  padding-bottom: 5px;
}

.owl-carousel-info .owl-carousel-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
  position: absolute;
  right: 0;
  bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(0);
  padding-right: 20px;
  padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
  transform: translateY(-100%);
  opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
  margin-top: 5px;
  margin-bottom: 5px;
}

.owl-carousel .owl-dots {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  margin: auto;
  margin-top: 40px;
  padding: 15px 25px;
  padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #08213f;
}

@media (max-width: 768px) {
  .owl-carousel-info {
    position: relative;
    background-color: var(--section-bg-color);
  }

  .owl-carousel-info-wrap {
    padding-bottom: 0;
  }

  .owl-carousel-image {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ===============================
   ENTRY TO ARTICLE SECTION
================================ */
.entrytoarticle-section {
  padding: 50px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.entrytoarticle-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #082140;
}

/* Card wrapper */
.entrytoarticle-cardwrap {
  display: flex;
  justify-content: center;
}

/* Card */
.entrytoarticle-card {
  width: 100%;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entrytoarticle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Image */
.entrytoarticle-imagebox img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* Content */
.entrytoarticle-content {
  padding: 26px 24px 30px;
}

.entrytoarticle-cardtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.entrytoarticle-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

/* Button */
.entrytoarticle-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #cc971d;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}


.entrytoarticle-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .entrytoarticle-title {
    font-size: 32px;
  }

  .entrytoarticle-card {
    max-width: 100%;
  }

  .entrytoarticle-imagebox img {
    height: 320px;
  }
}

/* ================================
   ENTRY ARTICLE – LEFT ALIGNED
================================ */
.entryarticlewrap {
  padding-bottom: 30px;
  padding-top: 10px;
  background-color: #ffffff;
}

.entryarticle-container {
  max-width: 920px;
  margin: 0 auto;
  text-align: left; 
}

/* Header */
.entryarticle-header {
  margin-bottom: 40px;
  text-align: left;
}

.entryarticle-date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin-bottom: 12px;
}

.entryarticle-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin: 0;
  text-align: left;
}

/* Body */
.entryarticle-body {
  text-align: left;
}

.entryarticle-body p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 22px;
  text-align: left;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .entryarticlewrap {
    padding: 10px 18px;
  }

  .entryarticle-title {
    font-size: 28px;
  }

  .entryarticle-body p {
    font-size: 15px;
  }
}

/* ================================
   ENTRY ARTICLE CTA
================================ */

.entryarticle-cta {
  margin-top: 36px;
  text-align: center;
}

.entryarticle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background-color: #25D366;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.entryarticle-btn i {
  font-size: 18px;
}

.entryarticle-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .entryarticle-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}

.entryarticle-cta-note {
  margin-top: 10px;
  font-size: 13px;
  color: #777777;
  line-height: 1.4;
}


/* ================================
   IMAGE ARTICLE CAROUSEL
================================ */

.imagearticlewrap {
  padding: 20px 20px;
  background-color: #ffffff;
}

.imagearticle-container {
  max-width: 540px;      
  width: 100%;
  height: 420px;         
  margin: 0 auto;
  position: relative;
}

.imagearticle-slider {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.imagearticle-track {
  display: flex !important;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
/* Slide (FIXED PORTRAIT RATIO) */
.imagearticle-slide {
  flex: 0 0 100% !important;; 
  aspect-ratio: 4 / 5;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

.imagearticle-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation */
.imagearticle-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(0,0,0,0.55);
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.imagearticle-nav:hover {
  background-color: rgba(0,0,0,0.8);
}

.imagearticle-prev {
  left: 14px;
}

.imagearticle-next {
  right: 14px;
}

/* ================================
   RESPONSIVE MOBILE
================================ */

@media (max-width: 768px) {

  .imagearticlewrap {
    padding: 16px 14px;
  }

  .imagearticle-container {
  max-width: 540px;      
  width: 100%;
  height: 320px;         
  margin: 0 auto;
  position: relative;
  }

  .imagearticle-slider {
    border-radius: 4px;
  }

  /* RATIO TETAP 4:5 — NO HEIGHT HACK */
  .imagearticle-slide {
    aspect-ratio: 4 / 5;
  }

  .imagearticle-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .imagearticle-nav {
    width: 36px;
    height: 36px;
  }

  .imagearticle-prev {
    left: 10px;
  }

  .imagearticle-next {
    right: 10px;
  }
}

/* Utility */
.bold {
  font-weight: bold;
}


/* ==============================
   HERO INTRO ANIMATION
================================ */
.hero-anim {
  opacity: 0;
  transform: translateY(32px);
  animation: heroFadeUp 0.9s ease-out forwards;
}

/* Delay bertahap */
.hero-delay-1 { animation-delay: 0.15s; }
.hero-delay-2 { animation-delay: 0.3s; }
.hero-delay-3 { animation-delay: 0.45s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==============================
   FEATURES SCROLL ANIMATION
================================ */
.feature-anim {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.feature-anim.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Delay bertahap */
.feature-delay-1 { transition-delay: 0.1s; }
.feature-delay-2 { transition-delay: 0.2s; }
.feature-delay-3 { transition-delay: 0.3s; }
.feature-delay-4 { transition-delay: 0.4s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .feature-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==============================
   COLLAB SCROLL ANIMATION
================================ */

/* IMAGE */
.collab-anim-img {
  transform: scale(0.92) rotate(-2deg);
  opacity: 1; /* tidak fade */
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
}

.collab-anim-root.is-visible .collab-anim-img {
  transform: scale(1) rotate(0deg);
}


/* TEXT REVEAL */
.collab-anim-text {
  overflow: hidden;
  position: relative;
}

.collab-anim-text > * {
  display: inline-block;
}

.collab-anim-text {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s ease-out;
}

.collab-anim-root.is-visible .collab-anim-text {
  clip-path: inset(0 0 0 0);
}

/* BUTTON */
.collab-anim-btn {
  transform: translateX(-18px);
  transition: transform 0.6s ease-out;
}

.collab-anim-root.is-visible .collab-anim-btn {
  transform: translateX(0);
}

/* Delay */
.collab-delay-1 { transition-delay: 0.15s; }
.collab-delay-2 { transition-delay: 0.3s; }

/* ==============================
   FEATURED SERVICES ANIMATION
================================ */

/* TITLE */
.fs-anim-title {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.fs-anim-root.is-visible .fs-anim-title {
  opacity: 1;
  transform: translateY(0);
}

/* CARD */
.fs-anim-card {
  opacity: 0;
  transform: translateY(36px);
  transition:
    transform 0.7s cubic-bezier(.2,.8,.2,1),
    opacity 0.6s ease;
}

.fs-anim-root.is-visible .fs-anim-card {
  opacity: 1;
  transform: translateY(0);
}

/* ICON micro pop */
.fs-anim-icon {
  transform: scale(0.85);
  transition: transform 0.6s ease;
}

.fs-anim-root.is-visible .fs-anim-icon {
  transform: scale(1);
}

/* Helper text */
.fs-anim-helper {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

.fs-anim-root.is-visible .fs-anim-helper {
  opacity: 1;
  transform: translateY(0);
}

/* Button */
.fs-anim-btn {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
}

.fs-anim-root.is-visible .fs-anim-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Delay */
.fs-delay-1 { transition-delay: 0.1s; }
.fs-delay-2 { transition-delay: 0.2s; }
.fs-delay-3 { transition-delay: 0.3s; }
.fs-delay-4 { transition-delay: 0.4s; }
.fs-delay-5 { transition-delay: 0.5s; }
.fs-delay-6 { transition-delay: 0.6s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .fs-anim-title,
  .fs-anim-card,
  .fs-anim-icon,
  .fs-anim-helper,
  .fs-anim-btn {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==============================
   ENTRY TO ARTICLE ANIMATION
================================ */

/* TITLE – dari atas ke bawah */
.entry-anim-title {
  opacity: 0;
  transform: translateY(-32px);
  transition: transform 0.7s ease, opacity 0.6s ease;
}

.entry-anim-root.is-visible .entry-anim-title {
  opacity: 1;
  transform: translateY(0);
}

/* CARD – naik dari bawah */
.entry-anim-card {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1),
              opacity 0.6s ease;
}

.entry-anim-root.is-visible .entry-anim-card {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE – subtle scale (tanpa fade lebay) */
.entry-anim-image {
  transform: scale(0.94);
  transition: transform 0.8s ease;
}

.entry-anim-root.is-visible .entry-anim-image {
  transform: scale(1);
}

/* CONTENT & BUTTON – muncul berurutan */
.entry-anim-content {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.entry-anim-root.is-visible .entry-anim-content {
  opacity: 1;
  transform: translateY(0);
}

/* Delay */
.entry-delay-1 { transition-delay: 0.15s; }
.entry-delay-2 { transition-delay: 0.3s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .entry-anim-title,
  .entry-anim-card,
  .entry-anim-image,
  .entry-anim-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==============================
   EXPLORE RECENT GALLERY ANIMATION
================================ */

/* TITLE */
.erg-anim-title {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.erg-anim-root.is-visible .erg-anim-title {
  opacity: 1;
  transform: translateY(0);
}

/* GRID ITEM – diagonal reveal */
.erg-anim-item {
  opacity: 0;
  transform: translate(24px, 24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.2,.8,.2,1);
}

/* Image clarity effect */
.erg-anim-item img {
  filter: blur(6px);
  transform: scale(1.04);
  transition:
    filter 0.8s ease,
    transform 0.8s ease;
}

.erg-anim-root.is-visible .erg-anim-item {
  opacity: 1;
  transform: translate(0, 0);
}

.erg-anim-root.is-visible .erg-anim-item img {
  filter: blur(0);
  transform: scale(1);
}

/* Delay – progressive diagonal feel */
.erg-delay-1 { transition-delay: 0.1s; }
.erg-delay-2 { transition-delay: 0.18s; }
.erg-delay-3 { transition-delay: 0.26s; }
.erg-delay-4 { transition-delay: 0.34s; }
.erg-delay-5 { transition-delay: 0.42s; }
.erg-delay-6 { transition-delay: 0.5s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .erg-anim-title,
  .erg-anim-item,
  .erg-anim-item img {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

