/* =========================
   HEADER FIX (WAJIB)
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  position: relative; /* INI KUNCI UTAMA */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   HAMBURGER BUTTON
========================= */
.mobile-menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* ACTIVE (X) */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MOBILE NAV
========================= */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding: 120px 28px 40px;
    z-index: 2000;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease;
  }

  .mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav li {
    margin-bottom: 22px;
  }

  .mobile-nav a {
    font-size: 20px;
    color: #0b3d2e;
    text-decoration: none;
  }

  .mobile-submenu {
    margin-top: 12px;
    padding-left: 14px;
  }

  .mobile-submenu a {
    font-size: 17px;
    color: #333;
  }
}
/* =========================
   MOBILE SUBMENU TOGGLE
========================= */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.has-submenu.open .mobile-submenu {
  max-height: 500px;
  opacity: 1;
}

/* caret indicator */
.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.has-submenu > a::after {
  content: "＋";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.has-submenu.open > a::after {
  content: "－";
}
/* MAIN MOBILE LINK */
.mobile-nav ul li a {
  font-size: 20px;
  font-weight: 500;
  color: #0b3d2e;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.has-submenu > a::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #0b3d2e;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.has-submenu.open > a::after {
  content: "–";
  opacity: 1;
}
@media (max-width: 768px) {

  .mobile-nav {
    background:
      linear-gradient(
        180deg,
        #f9fbfa 0%,
        #ffffff 40%,
        #f4f8f6 100%
      );
    backdrop-filter: blur(6px);
  }

}
@media (max-width: 768px) {

  .mobile-nav {
    background: linear-gradient(
      180deg,
      #0b3d2e 0%,
      #0f4d39 60%,
      #0b3d2e 100%
    );
  }

  .mobile-nav ul li a {
    color: #ffffff;
  }

  .mobile-submenu li a {
    color: rgba(255,255,255,.85);
  }

  .has-submenu > a::after {
    color: rgba(255,255,255,.7);
  }

}
.mobile-nav {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
/* =========================
   HERO MOBILE – ULTRA LUXURY
========================= */
@media (max-width: 768px) {

  .hero {
    padding: 110px 20px 120px;
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #f7faf9 100%
      );
  }

  .hero-flex {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  /* ===== HEADLINE ===== */
  .hero-text h1 {
    font-size: 36px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: #0b3d2e;
    margin-bottom: 22px;
  }

  /* ===== DESCRIPTION ===== */
  .hero-text p {
    font-size: 15.8px;
    line-height: 1.75;
    color: #4b5f58;
    max-width: 340px;
    margin: 0 auto 36px;
  }

  /* ===== CTA BUTTON ===== */
  .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 42px;
    border-radius: 999px;

    background: linear-gradient(
      120deg,
      #0b3d2e,
      #1f7a5c,
      #0b3d2e
    );
    background-size: 200% 100%;

    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;

    box-shadow:
      0 14px 40px rgba(11,61,46,.28),
      inset 0 1px 0 rgba(255,255,255,.25);

    animation: heroShine 3.8s linear infinite;
  }

  @keyframes heroShine {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
  }

  /* ===== HERO IMAGE ===== */
  .hero-image-wrap {
    position: relative;
  }

  .hero-image-wrap img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 28px;

    box-shadow:
      0 40px 80px rgba(0,0,0,.12),
      inset 0 1px 0 rgba(255,255,255,.3);
  }

  /* soft glow behind image */
  .hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: -18px;
    background: radial-gradient(
      circle,
      rgba(31,122,92,.18),
      transparent 70%
    );
    z-index: -1;
  }

}


/* =========================
   WHY SECTION – ULTRA LUXURY
========================= */
@media (max-width: 768px) {

  .why-section {
    position: relative;
    padding: 120px 22px;
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbfa 100%
      );
  }

  /* subtle luxury divider */
  .why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      transparent,
      rgba(184,157,85,.45),
      transparent
    );
  }

  /* ===== TITLE ===== */
  .why-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: center;
    color: #0b3d2e;
    margin-bottom: 70px;
  }

  /* ===== CARDS ===== */
  .why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-card {
    position: relative;
    padding: 42px 30px;
    border-radius: 30px;

    box-shadow:
      0 26px 70px rgba(0,0,0,.08),
      inset 0 1px 0 rgba(255,255,255,.4);

    overflow: hidden;
  }

  /* soft gold edge */
  .why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(184,157,85,.28);
    pointer-events: none;
  }

  /* ===== ICON ===== */
  .why-icon {
    font-size: 22px;
    margin-bottom: 18px;
    opacity: .9;
  }

  /* ===== TITLE ===== */
  .why-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b3d2e;
    margin-bottom: 14px;
  }

  /* ===== TEXT ===== */
  .why-card p {
    font-size: 15.4px;
    line-height: 1.85;
    color: rgba(0,0,0,.72);
  }

  /* ===== COLOR THEMES ===== */
  .why-card.fairness {
    background: linear-gradient(
      180deg,
      #0f6b5a,
      #0b3d2e
    );
    color: #ffffff;
  }

  .why-card.fairness h3,
  .why-card.fairness p {
    color: #ffffff;
  }

  .why-card.honesty {
    background: linear-gradient(
      180deg,
      #d8b977,
      #c9a85f
    );
    color: #ffffff;
  }

  .why-card.honesty h3,
  .why-card.honesty p {
    color: #ffffff;
  }

  .why-card.flexibility {
    background: linear-gradient(
      180deg,
      #f2f2f2,
      #e6e6e6
    );
  }

}

/* =========================
   WHY – LUXURY SCROLL ANIMATION
========================= */
@media (max-width: 768px) {

  .why-card {
    opacity: 0;
    transform: translateY(46px) scale(.985);
    transition:
      opacity .9s cubic-bezier(.22,1,.36,1),
      transform 1s cubic-bezier(.22,1,.36,1),
      box-shadow .8s ease;
    will-change: transform, opacity;
  }

  .why-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* subtle lift on touch */
  .why-card:active {
    transform: translateY(-2px) scale(1.01);
  }

}

/* =========================
   OUR SERVICES – MOBILE LUXURY
========================= */
@media (max-width: 768px) {

  .our-services {
    padding: 110px 0 130px;
    background: #ffffff;
  }

  .our-services .section-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 90px;
    letter-spacing: -0.3px;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }

  /* LINK WRAPPER */
  .service-link {
    text-decoration: none;
    color: inherit;
  }

  /* ROW RESET */
  .service-row,
  .service-row.left,
  .service-row.right {
    flex-direction: column;
    padding: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: visible;
  }

  /* IMAGE */
  .service-image {
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
  }

  .service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
  }

  /* TEXT */
  .service-text {
    padding: 28px 20px 0;
    position: relative;
  }

  /* INDEX NUMBER */
  .service-index {
    display: block;
    font-size: 56px;
    font-weight: 300;
    color: rgba(184,157,85,.22); /* gold soft */
    margin-bottom: 8px;
    letter-spacing: -2px;
  }

  .service-text h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
  }

  .service-text p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 16px;
  }

  /* LEARN MORE */
  .learn-more {
    font-size: 14px;
    font-weight: 500;
    color: #0b3d2e;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
  }

  .learn-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      #b89d55,
      #e7d9a8,
      #b89d55
    );
    opacity: .8;
  }

  /* HOVER (mobile tap feel) */
  .service-link:active .service-image img {
    transform: scale(1);
    transition: transform .4s ease;
  }

}
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .case-studies {
    padding: 120px 0 110px;
    background: linear-gradient(
      180deg,
      #d9e2dd 0%,
      #cfdad5 50%,
      #c2cec8 100%
    );
  }

  .case-studies .section-title {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 64px;
    color: #1f2d28;
  }

  /* GRID */
  .case-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
  }

  /* CARD */
  .case-card {
    position: relative;
    width: 78px;
    height: 150px;
    border-radius: 999px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
  }

  /* IMAGE */
  .case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.85) contrast(.95);
  }

  /* OVERLAY – CLEAN & PREMIUM */
  .case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.55) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    text-align: center;
  }

  /* TITLE DISABLED (PREMIUM STYLE) */
  .case-overlay h3 {
    display: none;
  }

  /* YEAR ONLY */
  .case-overlay p {
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin: 0;
  }

}

@media (max-width: 768px) {

  .footer-luxury {
    background: linear-gradient(
      180deg,
      #0e3b2e 0%,
      #07261d 100%
    );
    padding: 64px 0 40px;
    color: rgba(255,255,255,.82);
  }

  .footer-luxury .container {
    padding: 0 22px;
  }

  /* GRID STACK */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* BRAND */
  .footer-brand {
    text-align: center;
  }

  .footer-logo img {
    width: 140px;
    margin-bottom: 18px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
    max-width: 300px;
    margin: 0 auto;
  }

  /* SECTION TITLE */
  .footer-grid h4 {
    font-size: 13px;
    letter-spacing: .14em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: rgba(255,255,255,.9);
  }

  /* LIST */
  .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-grid ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
  }

  .footer-grid ul li a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: opacity .3s ease;
  }

  .footer-grid ul li a:hover {
    opacity: .9;
  }

  /* CONTACT */
  .footer-grid p {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 10px;
  }

  .footer-grid a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
  }

  /* DIVIDER */
  .footer-bottom {
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
  }

  /* VALUES */
  .footer-bottom-left {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
  }

  .footer-bottom-left .diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,.6);
    transform: rotate(45deg);
    margin: 0 10px;
  }

  /* COPYRIGHT */
  .footer-bottom-center {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
  }

}
@media (max-width: 768px) {

  .footer-bottom-left .diamond {
    width: 7px;
    height: 7px;
    background: linear-gradient(
      135deg,
      #f5e6b3 0%,
      #d6b56a 45%,
      #b48a3c 100%
    );
    box-shadow:
      0 0 6px rgba(214,181,106,.55),
      0 0 14px rgba(214,181,106,.25);
    position: relative;
  }

  /* SHINE EFFECT */
  .footer-bottom-left .diamond::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,.6),
      rgba(255,255,255,0)
    );
    opacity: .55;
  }

}
@media (max-width: 768px) {

  .footer-bottom-left .diamond {
    animation: goldPulse 4.5s ease-in-out infinite;
  }

  @keyframes goldPulse {
    0%, 100% {
      box-shadow:
        0 0 6px rgba(214,181,106,.4),
        0 0 14px rgba(214,181,106,.2);
    }
    50% {
      box-shadow:
        0 0 10px rgba(214,181,106,.75),
        0 0 22px rgba(214,181,106,.45);
    }
  }

}
/* =========================
   CINEMATIC WHY PARTNER – MOBILE
========================= */
@media (max-width: 768px) {

  .why-partner {
    position: relative;
    background: linear-gradient(
      180deg,
      #0c4f40 0%,
      #0a3a30 100%
    );
    padding: 90px 20px 120px;
    overflow: hidden;
  }

  /* Background cinematic parallax effect */
  .why-partner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top,
        rgba(255,255,255,.05),
        transparent 70%);
    opacity: .15;
    pointer-events: none;
    transform: translateY(20px);
  }

  /* Title with cinematic motion (slide in) */
  .why-partner .section-title-center {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .05em;
    text-align: center;
    color: #f2f6f4;
    margin-bottom: 56px;
    position: relative;
    opacity: 0;
    animation: slide-up 1s ease forwards;
  }

  @keyframes slide-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Gold shimmer divider under title */
  .why-partner .section-title-center::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(
      90deg,
      #cfa14a,
      #f3e0a6,
      #cfa14a
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
  }

  /* GRID */
  .values-grid {
    display: grid;
    gap: 26px;
    max-width: 380px;
    margin: 0 auto;
    opacity: 0;
    animation: fade-in 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
  }

  @keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  /* CARD BASE */
  .value-card {
    position: relative;
    padding: 30px 26px 34px;
    border-radius: 26px;
    box-shadow:
      0 24px 50px rgba(0,0,0,.35);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .value-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,.45);
  }

  /* FAIRNESS – DEEP GREEN */
  .value-card.green {
    background: linear-gradient(
      160deg,
      #0f6f5b,
      #0b4d3f
    );
    color: #e7f4ef;
  }

  /* HONESTY – GOLD CENTERPIECE */
  .value-card.gold {
    background: linear-gradient(
      145deg,
      #f6e7b8,
      #d8b15a,
      #b68932
    );
    color: #2a210f;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    transform: translateY(-12px);
    animation: fade-in-card 1.5s ease forwards;
    animation-delay: 1s;
  }

  @keyframes fade-in-card {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* FLEXIBILITY – WHITE EXECUTIVE CARD */
  .value-card.light {
    background: #ffffff;
    color: #1f2f2b;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    transform: translateY(-6px);
  }

  .value-card.light:hover {
    transform: translateY(0);
  }

  /* ultra thin bottom accent line for each card */
  .value-card::before {
    content: '';
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 16px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.4),
      transparent
    );
    opacity: .3;
  }
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    width: 100%;
    min-height: 180px;
  }
}
@media (max-width: 768px) {
  .value-card h3 {
    font-size: 20px;
  }

  .value-card p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-card {
    height: 260px;
    border-radius: 28px;
    overflow: hidden;
  }

  .case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
@media (max-width: 768px) {

  .case-overlay {
    padding: 20px;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.75),
      rgba(0,0,0,.2)
    );
  }

  .case-overlay h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .case-overlay p {
    font-size: 14px;
    opacity: .9;
  }

}
@media (max-width: 768px) {

  /* MATIKAN SEMUA HORIZONTAL BEHAVIOR */
  .case-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow-x: hidden !important;
  }

  .case-card {
    width: 100% !important;
    height: 260px;
    margin: 0 auto;
    border-radius: 28px;
  }

}
@media (max-width: 768px) {

  .case-grid {
    display: block !important;
    overflow-x: hidden !important;
  }

  .case-card {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

}
/* CASE CARD BACKGROUND */
.case-card {
  background: linear-gradient(
    180deg,
    #f6fbf8 0%,
    #eef5f1 100%
  );
  color: #0f3d2e;
}
.case-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 61, 46, 0.92),
    rgba(15, 61, 46, 0.65),
    rgba(15, 61, 46, 0.2)
  );
  color: #ffffff;
}
.case-overlay h3 {
  color: #ffffff;
}

.case-overlay p {
  color: #d7efe5;
}
.case-card {
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
@media (max-width: 768px) {

  .footer-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    white-space: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .footer-values span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .footer-values .diamond {
    font-size: 10px;
    flex-shrink: 0;
  }

}
@media (max-width: 360px) {
  .footer-values span {
    font-size: 11px;
  }
}
@media (max-width: 768px) {

  .footer-values {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;

    padding: 16px 0;
  }

  .footer-values span {
    font-size: 13px;
    letter-spacing: 2.5px;
    line-height: 1;
  }

  .footer-values .diamond {
    font-size: 10px;
    margin-top: -1px; /* optically center */
    flex-shrink: 0;
  }

}
@media (max-width: 768px) {

  .hero-contact {
    padding: 96px 20px 72px;
    background: linear-gradient(
      180deg,
      #0f4a3c 0%,
      #0c3b31 100%
    );
    text-align: center;
  }

  .hero-contact .hero-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 14px;
  }

  .hero-contact .hero-subtitle {
    font-size: 14.5px;
    line-height: 1.7;
    color: #d7efe5;
    max-width: 320px;
    margin: 0 auto;
  }

}
@media (max-width: 768px) {

  .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -48px; /* naik dikit ke hero */
  }

  .contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
  }

  .contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b8f83;
    margin-bottom: 6px;
  }

  .contact-card h3,
  .contact-card p {
    font-size: 16px;
    font-weight: 500;
    color: #0f3d2e;
  }

  .contact-card img.icon {
    width: 18px;
    opacity: .85;
  }

}
@media (max-width: 768px) {

  .contact-map iframe {
    height: 260px;
    border-radius: 24px;
    margin: 40px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }

}
@media (max-width: 768px) {

  .contact-form-section {
    padding: 60px 20px 80px;
    background: #f6fbf8;
  }

  .form-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.08);
  }

  .form-box h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .form-box p {
    font-size: 14px;
    color: #6b8f83;
    margin-bottom: 24px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-box input,
  .form-box textarea {
    border-radius: 14px;
    border: 1px solid #ddebe4;
    padding: 14px 16px;
    font-size: 14px;
  }

  .form-box textarea {
    min-height: 120px;
  }

  .form-box button {
    margin-top: 20px;
    width: 100%;
    border-radius: 999px;
    padding: 14px;
    font-weight: 600;
    background: linear-gradient(
      135deg,
      #d6b25e,
      #e9cf8f
    );
    color: #0f3d2e;
    border: none;
  }

}
/* ===============================
   MOBILE MARQUEE – PREMIUM MODE
================================ */

@media (max-width: 768px) {

  .marquee-section {
    padding: 40px 0 50px;
    background: linear-gradient(
      180deg,
      #f6fbf9 0%,
      #eef6f2 100%
    );
    overflow: hidden;
  }

  .marquee-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #0f3d32;
    margin-bottom: 24px;
    padding-left: 20px;
  }

  /* wrapper */
  .marquee-wrapper {
    position: relative;
    overflow: hidden;
  }

  /* track berjalan */
  .marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
  }

  .marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
  }

  /* card */
  .marquee-card {
    width: 240px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease;
  }

  .marquee-card:active {
    transform: scale(0.97);
  }

  /* image */
  .marquee-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }

  /* overlay text */
  .marquee-overlay {
    padding: 14px 16px 16px;
  }

  .marquee-overlay span {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #2f7a65;
    margin-bottom: 6px;
  }

  .marquee-overlay p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #0e2f28;
  }

  /* fade edge (luxury touch) */
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f6fbf9 0%, transparent 100%);
  }

  .marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f6fbf9 0%, transparent 100%);
  }

}

/* ===============================
   MARQUEE KEYFRAMES
================================ */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===============================
   ADMIN MOBILE FIX (REAL WORLD)
================================ */

@media (max-width: 768px) {

  /* RESET */
  body.admin-body {
    overflow-x: hidden;
  }

  .admin-wrapper {
    display: block;
  }

  /* ===============================
     SIDEBAR → TOPBAR
  ================================ */

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;
    background: linear-gradient(135deg, #0f3d32, #0b2d26);
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
  }

  /* LOGO */
  .admin-sidebar .logo {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
  }

  /* TOGGLE */
  .admin-sidebar .menu-toggle {
    display: block;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
  }

  /* ===============================
     MENU DRAWER
  ================================ */

  .admin-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #0f3d32;
    padding: 14px 16px 20px;

    display: none;
    flex-direction: column;

    animation: slideDown .25s ease;
  }

  .admin-menu.active {
    display: flex;
  }

  .admin-menu a {
    padding: 12px 14px;
    font-size: 14px;
    color: #d9f3eb;
    border-radius: 12px;
    margin-bottom: 6px;
  }

  .admin-menu a:hover,
  .admin-menu a.active {
    background: rgba(255,255,255,.12);
    color: #fff;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ===============================
     CONTENT
  ================================ */

  .admin-content {
    margin-left: 0 !important;
    padding: 80px 16px 100px;
    min-height: 100vh;
  }

  /* CARD */
  .admin-card,
  .stat-card {
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
  }

  /* ===============================
     TABLE → CARD STYLE
  ================================ */

  table {
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody tr {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #0f3d32;
  }

  /* ===============================
     FOOTER
  ================================ */

  footer {
    margin-left: 0 !important;
    padding: 16px;
    font-size: 12px;
    text-align: center;
  }

}
/* ===============================
   MOBILE FIX – CASE TITLE OVER IMAGE
================================ */
@media (max-width: 768px) {

  .case-card {
    position: relative;
  }

  /* image lebih pendek di mobile */
  .case-image {
    height: 200px;
  }

  .case-image img {
    height: 100%;
    object-fit: cover;
  }

  /* overlay text */
  .case-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    padding: 16px 18px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0)
    );

    color: #fff;
    z-index: 2;
  }

  .case-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
  }

  .case-meta {
    font-size: 12px;
    opacity: 0.85;
    color: #e6f4f0;
  }

}
