/* ===============================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #0f4d45;
  --green-main: #0e6b63;
  --green-soft: #e6f3f1;
  --gold: #d8b56a;
  --gray-soft: #f4f6f7;
  --text-dark: #1f2d2b;
  --text-muted: #6b7c7a;
  --white: #ffffff;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--green-main);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ===============================
   HERO
================================ */
/* =========================
   HERO DESKTOP
========================= */

.hero {
  padding: 80px 0 100px;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT KITA PERKECIL SEDIKIT DOMINASINYA */
.hero-text {
  flex: 0 0 42%;
}

/* IMAGE KITA GEDEIN */
.hero-image-wrap {
  flex: 0 0 58%;
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;              /* 👈 bikin terasa premium */
  object-fit: cover;
  border-radius: 28px;        /* luxury */
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.hero-image-wrap img {
  transition: transform .8s ease, box-shadow .8s ease;
}

.hero-image-wrap img:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
}
/* =========================
   HERO BUTTON – LUXURY SHINY
========================= */

.hero-btn {
  position: relative;
  display: inline-block;
  margin-top: 28px;
  padding: 14px 38px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0f6d5f, #0b4f46);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  text-decoration: none;

  overflow: hidden; /* 🔑 WAJIB biar kilau hidup */
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

  transition: transform .35s ease, box-shadow .35s ease;
}

/* GARIS KILAU */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  );

  transform: skewX(-20deg);
  animation: shine 3.5s ease-in-out infinite;
}

/* HOVER HALUS */
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

/* ANIMASI KILAU */
@keyframes shine {
  0% {
    left: -60%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* ===============================
   WHY SECTION
================================ */
.why-section {
  background: #ffffff;
  padding: 120px 0;
}

.why-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 70px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 18px;
  overflow: hidden;
}

.why-card {
  padding: 48px 40px;
  line-height: 1.7;
  transition: transform .4s ease, box-shadow .4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.why-card.fairness {
  background: #0f6f66;
  color: #fff;
}

.why-card.honesty {
  background: #d9b86f;
  color: #fff;
}

.why-card.flexibility {
  background: #e0e0e0;
  color: #2c2c2c;
}
/* =========================
   WHY SECTION – PREMIUM
========================= */

.why-section {
  background: #ffffff;
  padding: 120px 0 140px;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TITLE */
.why-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 80px;
  color: #0b3d35;
}

/* CARD WRAPPER */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 28px;
  overflow: hidden;

  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.05);
}

/* BASE CARD */
.why-card {
  padding: 64px 52px;
  position: relative;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

/* ICON */
.why-icon {
  font-size: 34px;
  margin-bottom: 22px;
  opacity: .9;
}

/* TEXT */
.why-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.why-card p {
  font-size: 15.5px;
  line-height: 1.75;
  opacity: .95;
}

/* HOVER – SUPER HALUS */
.why-card:hover {
  transform: translateY(-6px);
}

/* =========================
   COLOR THEMES (LUXURY)
========================= */

/* FAIRNESS – PREMIUM GREEN */
.why-card.fairness {
  background: linear-gradient(135deg, #0f7a69, #0b5f53);
  color: #ffffff;
}

/* HONESTY – SOFT GOLD */
.why-card.honesty {
  background: linear-gradient(135deg, #e8d39a, #d4b66a);
  color: #3b2f12;
}

/* FLEXIBILITY – SOFT LIGHT GREY */
.why-card.flexibility {
  background: linear-gradient(135deg, #f1f1f1, #e5e5e5);
  color: #1f1f1f;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .why-card {
    padding: 56px 40px;
  }
}


/* ===============================
   SERVICES
================================ */
/* ===============================
   SERVICES – ULTRA LUXURY POLISH
================================ */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

/* CARD FEEL */
.service-row {
  position: relative;
  padding: 60px 70px;
  border-radius: 38px;
  background: #ffffff;
  transition: 
    transform .8s cubic-bezier(.4,0,.2,1),
    box-shadow .8s cubic-bezier(.4,0,.2,1);
}

/* SUBTLE GOLD DIVIDER */
.service-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 70px;
  right: 70px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184,157,85,.7),
    transparent
  );
}

/* HOVER DEPTH */
.service-link:hover .service-row {
  transform: translateY(-6px);
  box-shadow: 0 45px 90px rgba(0,0,0,.12);
}

/* IMAGE MORE CINEMATIC */
.service-image img {
  height: 460px;
  border-radius: 30px;
}

/* TEXT ZONE */
.service-text {
  position: relative;
}

/* BIG INDEX NUMBER */
.service-index {
  position: absolute;
  top: -70px;
  left: -10px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(184,157,85,.12);
  letter-spacing: -6px;
  z-index: 0;
}

.service-text h3,
.service-text p,
.learn-more {
  position: relative;
  z-index: 1;
}

/* TITLE */
.service-text h3 {
  font-size: 32px;
  letter-spacing: -0.4px;
}

/* DESCRIPTION */
.service-text p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #2e2e2e;
}

/* LEARN MORE – ULTRA PREMIUM */
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.learn-more::after {
  content: "→";
  transform: translateX(-6px);
  opacity: 0;
  transition: all .4s ease;
}

.service-link:hover .learn-more::after {
  transform: translateX(0);
  opacity: 1;
}

/* GOLD ACCENT ON HOVER */
.service-link:hover h3 {
  color: #0b3d35;
}

/* ===============================
   DESKTOP FOCUS – RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .service-row {
    padding: 50px;
  }

  .service-index {
    font-size: 90px;
    top: -55px;
  }
}
/* ===============================
   OUR SERVICES – ULTRA LUXURY
================================ */

.our-services {
  padding: 160px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 120px;
  letter-spacing: -1px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.service-link {
  text-decoration: none;
  color: inherit;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 60px 70px;
  border-radius: 38px;
  background: #fff;
  position: relative;
  transition: transform .8s cubic-bezier(.4,0,.2,1),
              box-shadow .8s cubic-bezier(.4,0,.2,1);
}

/* LEFT / RIGHT */
.service-row.right {
  flex-direction: row-reverse;
}

/* GOLD HAIRLINE */
.service-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 70px;
  right: 70px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184,157,85,.7),
    transparent
  );
}

/* HOVER */
.service-link:hover .service-row {
  transform: translateY(-6px);
  box-shadow: 0 45px 90px rgba(0,0,0,.12);
}

/* IMAGE */
.service-image img {
  width: 520px;
  height: 460px;
  object-fit: cover;
  border-radius: 30px;
}

/* TEXT */
.service-text {
  max-width: 520px;
  position: relative;
}

/* BIG NUMBER */
.service-index {
  position: absolute;
  top: -70px;
  left: -10px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(184,157,85,.12);
  letter-spacing: -6px;
}

.service-text h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.service-text p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #2e2e2e;
  margin-bottom: 24px;
}

/* LEARN MORE */
.learn-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.learn-more::after {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: all .4s ease;
}

.service-link:hover .learn-more::after {
  opacity: 1;
  transform: translateX(0);
}




/* ===== DESKTOP HERO LUXURY ===== */
.hero {
  padding: 140px 0 160px;
}

.hero-flex {
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-weight: 800;
  letter-spacing: -0.6px;
}

.hero-text p {
  margin-top: 24px;
  font-size: 17.5px;
  line-height: 1.75;
}

.hero-btn {
  margin-top: 10px;
}


/* ===== WHY SECTION LUXURY ===== */
.why-section {
  padding: 140px 0;
}

.why-title {
  font-size: 36px;
  letter-spacing: -0.4px;
}

.why-cards {
  max-width: 1100px;
  margin: auto;
}

.why-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ===== SERVICES DESKTOP LUXURY ===== */
.section-white {
  padding: 160px 0;
}

.service-row {
  gap: 80px;
}

.service-row h3 {
  font-size: 24px;
  letter-spacing: -0.3px;
}

.service-row p {
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 420px;
}

.service-image img {
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}


/* ===== CASE STUDIES DESKTOP ===== */
.case-studies {
  padding: 160px 0;
}

.case-grid {
  max-width: 1200px;
  margin: auto;
}

.case-card img {
  filter: grayscale(30%);
}

.case-card:hover img {
  filter: grayscale(0%);
}

.footer-luxury {
  padding-top: 120px;
}



/* =========================
   OUR SERVICES – WHITE BACKGROUND
========================= */

.services-section {
  background: #ffffff;
  padding: 120px 0;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.05);

  margin-bottom: 72px;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* TEXT WRAP */
.service-content {
  padding: 36px 40px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b6b57;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* LINK */
.service-content a {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #0b6b57;
}

.service-content a:hover {
  text-decoration: underline;
}
/* =========================
   OUR SERVICES (DESKTOP)
========================= */
.our-services {
  background: #ffffff;
  padding: 120p.services-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* BARIS SERVICE */
.service-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* KIRI */
.service-row.left {
  flex-direction: row;
}

/* KANAN */
.service-row.right {
  flex-direction: row-reverse;
}

/* IMAGE */
.service-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TEXT */
.service-text {
  max-width: 520px;
}

.service-text h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-text p {
  color: #6b7c78;
  line-height: 1.7;
}
x 0;
}

.our-services .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #1c1f1e;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* BARIS SERVICE */
.service-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* KIRI */
.service-row.left {
  flex-direction: row;
}

/* KANAN */
.service-row.right {
  flex-direction: row-reverse;
}

/* IMAGE */
.service-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TEXT */
.service-text {
  max-width: 520px;
}

.service-text h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-text p {
  color: #6b7c78;
  line-height: 1.7;
}
.case-grid {
  grid-template-columns: repeat(2, 1fr);
}


/* ===============================
   CASE STUDIES – 4 COLUMN EDITORIAL
================================ */

.case-studies {
  background: #f6faf8;
  padding: 120px 0;
}

.case-studies .container {
  max-width: 1600px;   /* KUNCI UTAMA */
  padding: 0 48px;
}

/* GRID 4 KOLOM */
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.case-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  color: #0f2f28;
}

/* IMAGE */
.case-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

/* TEXT */
.case-overlay {
  position: static;        /* ⬅️ PENTING */
  background: none;
  padding: 0;
}

.case-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.case-overlay p {
  font-size: 13px;
  color: #6f8f86;
}
/* ===============================
   FORCE CASE STUDIES 4 COLUMN
================================ */

.case-studies .container {
  max-width: 1700px !important;
}

.case-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px;
}
.case-card {
  display: flex;
  flex-direction: column;
}

.case-overlay {
  position: static;
}
.case-studies {
  padding: 120px 0;
  background: #f6faf8;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* card */
.case-card {
  text-decoration: none;
}

/* image */
.case-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* text */
.case-overlay {
  margin-top: 14px;
  text-align: center;
}

.case-overlay h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0e2f2a;
  line-height: 1.4;
  margin-bottom: 6px;
}

.case-overlay p {
  font-size: 13px;
  color: #6b8f84;
}
.case-studies .section-title {
  text-align: center;
  margin-bottom: 56px;
}
.case-studies .section-title {
  justify-content: center;
}
/* ===============================
   HERO IMAGE – HARD FIX
   (NO GLOBAL DAMAGE)
================================ */

.hero-image-wrap {
  background: none !important;
  padding: 0 !important;
  border-radius: 28px;
  overflow: hidden;
}

.hero-image-wrap::before,
.hero-image-wrap::after {
  content: none !important;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  background: none !important;
}
/* ===============================
   CASE MARQUEE – LUXURY
================================ */

.case-marquee {
  padding: 120px 0;
  background:
    radial-gradient(900px at 0% -20%, rgba(14,124,102,0.18), transparent),
    linear-gradient(180deg, #f6fbfa, #eef6f4);
  overflow: hidden;
}

.marquee-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #0f2f2a;
}

/* wrapper */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

/* track */
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marqueeMove 60s linear infinite;
}

/* pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* card */
.marquee-card {
  position: relative;
  width: 320px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  transition: transform .6s ease, box-shadow .6s ease;
}

.marquee-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 50px 100px rgba(14,124,102,0.35);
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.marquee-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0)
  );
  color: #fff;
}

.marquee-overlay span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 6px;
}

.marquee-overlay h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* animation */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 768px) {
  .marquee-card {
    width: 260px;
    height: 180px;
  }
}
