@import url('https://googleapis.com');

/* ===== COCO DIGITAL AGENCY - Custom Styles ===== */

:root {
  --coco-teal: #000;
  --coco-teal-mid: #0d3a4a;
  --coco-sky: #87ceeb;
  --coco-pink: #e8a0b0;
  --coco-white: #ffffff;
  --coco-cream: #f5f0eb;
  --coco-lime: #00E695;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Playfair Display', Georgia, serif;}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* =========================================================
   HERO (HOMEPAGE) — versi baru, semua rules disatukan di sini
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #05070a;
  display: flex;
  align-items: center; /* vertical center */
}

.hero-bg {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* biar video full cover kayak background image */
  z-index: 0; /* taruh di belakang konten */
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.05) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px;
  box-sizing: border-box;
  text-align: center;
}

.hero-content h1 {
  line-height: 1.15;
  margin: 0 auto;
  max-width: 960px;
}

.hero-serif {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 80px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero-bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 70px;
  color: #ffffff;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6); /* tetap kebaca walau ketiban bagian terang background */
}

.hero-serif,
.hero-bold{
  background:linear-gradient(
    100deg,
    #ffffff 0%,
    #f5f0eb 20%,
    #87ceeb 40%,
    #0d3a4a 55%,
    #ffffff 75%,
    #f5f0eb 90%,
    #ffffff 100%
  );
  background-size:300% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:shimmer 7s linear infinite;
}

.hero-title-underline {
  position: relative;
  display: inline-block;
}
.hero-title-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 5px;
  background: var(--coco-lime);
  border-radius: 2px;
}

/* delay beda-beda tiap span biar gerakannya gak barengan, lebih hidup */
.hero-content h1 span:nth-child(1){ animation-delay:0s; }
.hero-content h1 span.hero-title-underline{ animation-delay:-1.75s; }
.hero-content h1 span:nth-child(4){ animation-delay:-3.5s; }
.hero-content h1 span.hero-bold:not(.hero-title-underline){ animation-delay:-5.25s; }

@keyframes shimmer{
  0%{ background-position:0% 50%; }
  100%{ background-position:300% 50%; }
}
/* ---------- Global safety net ---------- */
/* img, video { max-width: 100%; } */
 
/* ---------- Fix bug #4: card perlu positioning context ---------- */
.card { position: relative; }
 


@media (max-width: 768px) {
 
  .weare-title {
    font-size: 34px !important;
    line-height: 0.95;
  }

  .weare-title-1 {font-size: 45px !important;}
 
  .stage { height: 90px; }
  .arm { width: 90px; margin-left: -70px; }
  .arm img { max-height: 200px; max-width: 200px; }
 
  .form-card { padding: 24px 18px 28px; }
  .form-title { font-size: 20px; }
}
 
/* Layar sangat kecil (HP lawas / lipat) */
@media (max-width: 380px) {
  .hero-serif { font-size: 30px; }
  .hero-bold  { font-size: 26px; }
  .weare-title { font-size: 28px; }
  .belief-card { width: 100%; }
}

/* Bintang dekoratif */
.flower {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: star-float 4s ease-in-out infinite, star-spin 8s linear infinite;
}

.star-bottom-left {
  width: 22rem;
  left: 0%;
  bottom: 5%;
  animation-delay: 0s, 0s;
}

.star-right-mid {
  width: 14rem;
  right: 18%;
  top: 23%;
  animation: star-float 4s ease-in-out infinite, star-spin-offset 8s linear infinite;
  animation-delay: 0.8s, 0s;
}

/* Gerakan naik-turun pelan */
@keyframes star-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Muter 360 derajat dari posisi 0 (buat star-bottom-left) */
@keyframes star-spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

/* Muter 360 derajat tapi mulai dari 121deg (buat star-right-mid) */
@keyframes star-spin-offset {
  from {
    rotate: 121deg;
  }
  to {
    rotate: 481deg;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 100px 24px 60px;
  }
  .hero-content h1 { max-width: 100%; }

  .hero-serif  { font-size: clamp(28px, 9vw, 40px); }
  .hero-bold   { font-size: clamp(30px, 9vw, 44px); }

  .star-bottom-left { width: 100px; bottom: 6%; left: 2%; }
  .star-right-mid   { width: 70px; top: 32%; right: 6%; }

  .hero-section { overflow-x: hidden; }
}

/* Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble linear infinite;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.55),
    rgba(200,230,255,0.2) 45%,
    rgba(180,210,240,0.1) 70%,
    transparent 85%
  );
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow:
    inset -8px -8px 20px rgba(150,180,220,0.25),
    0 0 15px rgba(200,230,255,0.15);
}
.bubble::before {
  content: '';
  position: absolute; top: 12%; left: 15%;
  width: 35%; height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.75), transparent);
  border-radius: 50%;
  transform: rotate(-30deg);
}

@keyframes floatBubble {
  0%   { transform: translateY(110vh) scale(0.7); opacity: 0; }
  8%   { opacity: 0.85; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-150px) scale(1); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--coco-teal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.4s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.2);
}
.nav-logo {
  height: 75px; object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Desktop links */
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--coco-white); text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 6px;
  transition: opacity 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 120%;
  height: 8px;
  background: var(--coco-lime);
  border-radius: 10px 10px 0 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s;
  opacity: 0;
}
.nav-links a:hover { opacity: 0.85; }
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* CTA button */
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--coco-teal); background: var(--coco-white);
  padding: 10px 26px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.04em;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,92,0.35); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--coco-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE DROPDOWN MENU ===== */
.mobile-menu {
  position: fixed;
  top: 80px; /* sesuaikan dengan tinggi navbar */
  left: 0; right: 0;
  z-index: 99;
  background: var(--coco-teal);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.mobile-menu.open {
  max-height: 320px;
  padding: 16px 24px 28px;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--coco-white); text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { opacity: 0.75; }
.mobile-cta {
  display: inline-block;
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--coco-teal); background: var(--coco-white);
  padding: 12px 28px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.04em;
}

/* ===== RESPONSIVE (Navbar) ===== */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }   /* sembunyikan desktop links */
  .nav-cta { display: none; }     /* sembunyikan desktop CTA */
  .hamburger { display: flex; }   /* tampilkan hamburger */
}

/* =========================================================
   LEGACY HERO (HOMEPAGE) — desain versi lama.
   Sepertinya sudah TIDAK dipakai lagi setelah hero baru
   (.hero-serif / .hero-bold) dipasang, karena:
   - HTML pesawat kertas (.plane-right / .plane-left) sudah
     dikomentari di file blade/html kamu.
   - .hero-title / .hero-title-dua tidak lagi dipanggil di
     markup hero yang baru.
   Dibiarkan di sini (bukan dihapus) supaya aman kalau ada
   halaman lain yang masih pakai class ini. Cek dulu sebelum
   benar-benar dihapus.
   ========================================================= */
.hero-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coco-teal);
  background: rgba(255,255,255,0.72); backdrop-filter: blur(6px);
  padding: 7px 22px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7.5vw, 90px);
  font-weight: 700; color: var(--coco-teal);
  line-height: 1.46; margin-bottom: 24px;
  letter-spacing: -0.025em;
  animation: fadeSlideDown 0.8s 0.15s ease both;
  margin-top: .8rem;
}
.hero-title-dua {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7.5vw, 90px);
  font-weight: 500; color: var(--coco-teal);
  line-height: 1.06; margin-bottom: 24px;
  letter-spacing: -0.025em;
  animation: fadeSlideDown 0.8s 0.15s ease both;
  margin-top : 0.8rem;
}
.hero-title em { font-style: italic; color: #1a6e92; }
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(26,74,92,0.78);
  max-width: 520px; line-height: 1.65;
  margin-bottom: 48px;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 600;
  color: var(--coco-white); background: var(--coco-teal);
  padding: 16px 38px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(26,74,92,0.3);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  animation: fadeSlideDown 0.8s 0.45s ease both;
}
.hero-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px rgba(26,74,92,0.4); }
.hero-btn .arrow { transition: transform 0.25s; }
.hero-btn:hover .arrow { transform: translateX(5px); }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Decorative elements (pesawat kertas — lama) */
.plane {
  position: absolute; z-index: 5;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.12));
}
.plane-right {
  bottom: 18%; right: 4%; width: 210px;
  animation: flyRight 9s ease-in-out infinite;
}
.plane-left {
  top: 38%; left: 3%; width: 170px;
  animation: flyLeft 11s ease-in-out infinite;
  transform: scaleX(-1);
}
@keyframes flyRight {
  0%,100% { transform: translate(0,0) rotate(-6deg); }
  50% { transform: translate(18px,-28px) rotate(-10deg); }
}
@keyframes flyLeft {
  0%,100% { transform: scaleX(-1) translate(0,0) rotate(4deg); }
  50% { transform: scaleX(-1) translate(12px,18px) rotate(7deg); }
}

/* Decorative elements (bunga — lama, dipakai bareng .flower base di atas) */
.panah       { bottom: 25px; right: 18%;  width: 180px;  animation-delay: -2.2s; }
.flower-sun  { bottom: 20px; left: 6%;   width: 230px; }
.flower-red  { bottom: -5px; right: -1%; width: 200px;  animation-delay: -1.2s; }
.flower-white{ top: 11%;    right: 9%;   width: 280px;  animation-delay: -2.2s; }
.flower-pink { top: 11%;    left: 9%;    width: 200px;  animation-delay: -2.2s; }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10; animation: bounceScroll 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coco-teal); opacity: 0.65;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--coco-teal), transparent);
  opacity: 0.5;
}
@keyframes bounceScroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== TORN PAPER DIVIDER ===== */
.torn-divider {
  width: 100%; overflow: hidden;
  line-height: 0; position: relative; z-index: 2;
}
.torn-divider img { width: 100%; display: block; }

/* ==== WE ARE COCO ==== */
.weare-bg {
  position: absolute; top: 0; left: 0;
  width: 100%;
}

.weare-section {
  position: relative;
}

.img-weare-star{
  height: 65%;
}

/* ── Torn top ── */
.torn-top {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: visible;
}
.torn-top-img {
  position: absolute;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: top;

  /* flip vertically so torn edge faces down */
  transform: scaleY(-1);
}

/* ── White body ── */
.weare-body {
  padding: 125px 600px 0px 380px;
  position: relative; z-index: 3;
}

.weare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Title */
.weare-title {
  /* Menggunakan font dengan sudut tajam & potongan tegas */
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-weight: 800;
  
  /* Ukuran dan warna teks (abu-abu gelap sesuai gambar) */
  font-size: 64px;
  color: #4A5156;
  text-transform: uppercase;
  
  /* Kunci layout rapat seperti di gambar */
  line-height: 0.85;       /* Merapatkan jarak vertikal antara kata WE dan ARE */
  letter-spacing: -2px;    /* Merapatkan jarak horizontal antar-huruf */
  
  /* Outline / stroke effect like the design */
  -webkit-text-stroke: 1px var(--coco-teal);
}

.weare-title-1 {font-size: 84px;}

/* Yellow rule below title */
.weare-rule {
  width: 100%;
  height: 4px;
  background: var(--coco-lime);
  border-radius: 4px;
  margin-bottom: 28px;
}

.weare-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(24px, 1.8vw, 24px);
  color: var(--coco-teal);
  line-height: 1.8;
  max-width: 480px;
}

/* Logo right side */
.weare-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.weare-logo {
  width: min(340px, 90%);
  margin-bottom: 1rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}

/* ── Torn bottom with sky ── */
.torn-bottom {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

/* Torn paper overlay on bottom */
.torn-bottom-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 2;
}

/* Paper planes in sky strip */
.weare-plane {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}


@keyframes pulseBubble {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ===== OUR BELIEF SYSTEM SECTION (dark glow theme) ===== */
:root {
  --belief-glow: #2fe6da;
  --belief-glow-soft: rgba(47,230,218,0.35);
  --belief-card-top: rgba(18,64,78,0.65);
  --belief-card-bottom: rgba(4,16,22,0.85);
}

.belief-section {
  position: relative;
  min-height: 700px;
  background: #050c10;
  padding: 24px 100px;
  overflow: hidden;
}

/* Starry/backdrop image */
.belief-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Darken further for contrast + readability, no lightening */
.belief-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Inner container */
.belief-inner {
  position: relative; z-index: 3;
  max-width: 1080px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 44px;
}

/* Title — plain glowing white text, no pill */
.belief-title-wrap {
  margin-top: 0;
}

.belief-title-our {
  font-family: "Syne", "Space Grotesk", sans-serif;
  text-transform: uppercase;
  color: black;
  font-size: 4rem;
  font-weight: 1000;
  text-align: center;
  -webkit-text-stroke: 1px var(--coco-lime);
  text-shadow: 0 0 18px rgba(47,230,218,0.45),
    0 2px 10px rgba(0,0,0,0.6);
}

.belief-title {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow:
    0 0 18px rgba(47,230,218,0.45),
    0 2px 10px rgba(0,0,0,0.6);
}

/* Rows */
.belief-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.belief-row-2 { max-width: 720px; }

/* Card */
.belief-card {
  background: linear-gradient(160deg, #124656 0%, #030e14 65%);
  border: 2px solid #2fe6da;
  border-radius: 32px;
  padding: 40px 32px;
  text-align: center;
  height: 25rem;
  width: 20rem;

  box-shadow:
    0 0 0 1px rgba(47,230,218,0.25),
    0 0 30px rgba(47,230,218,0.45),
    0 0 70px rgba(47,230,218,0.25);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.belief-card:hover {
  transform: translateY(-6px);
   box-shadow:
    0 0 0 1px rgba(47,230,218,0.4),
    0 0 40px rgba(47,230,218,0.6),
    0 0 90px rgba(47,230,218,0.35);
}

.belief-icon {
  color: var(--coco-white);
  margin: auto;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.belief-icon2 {
  margin-bottom: 0.25rem;
}

.belief-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.belief-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .belief-section {
    padding: 70px 0px 80px;
  }

  .belief-bg {
    height: 100%;
  }

  .belief-inner {
    gap: 28px;
  }

  .belief-title {
    font-size: clamp(22px, 6vw, 30px);
  }

  /* Row jadi 1 kolom */
  .belief-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .belief-row-2 {
    max-width: 100%;
  }

  /* Card full width */
  .belief-card {
    max-width: 85%;
    width: 100%;
    padding: 26px 20px 28px;
  }

  /* Icon dikecilkan */
  .belief-icon {
    width: 100px;
    height: 100px;
  }
  .belief-icon2 {
    margin-bottom: 0.5rem;
    height: 100px;
  }

  /* Balon disembunyikan di mobile — ganggu layout */
  .balloon {
    display: none;
  }
}
.ourbelief-bg {
  top: 0; left: 0;
  margin-top: -12rem;
  width: 100%;
}
/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden; background: var(--coco-teal);
  padding: 22px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2.2vw, 26px);
  font-style: italic; color: rgba(255,255,255,0.9);
  padding: 0 56px;
  display: inline-flex; align-items: center; gap: 36px;
}
.ticker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: var(--coco-cream);
  padding: 100px 48px;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--coco-teal); opacity: 0.6;
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 700;
  color: var(--coco-teal); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 64px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 48px; max-width: 1100px; margin: 0 auto;
}
.value-card {
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.value-card:hover { transform: translateY(-6px); }
.value-icon { width: 68px; height: 68px; object-fit: contain; }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--coco-teal); line-height: 1.25;
}
.value-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; color: rgba(26,74,92,0.6); line-height: 1.75;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--coco-teal);
  padding: 110px 48px; position: relative; overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; max-width: 1100px; margin: 0 auto;
  align-items: center;
}
.about-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 50px); font-weight: 700;
  color: var(--coco-white); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.about-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 40px;
}
.about-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; font-weight: 600;
  color: var(--coco-teal); background: var(--coco-white);
  padding: 13px 30px; border-radius: 100px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.about-btn:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.about-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 380px;
}
.bubble-large-vis {
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,200,220,0.5),
    rgba(180,230,255,0.25) 50%,
    rgba(255,255,255,0.08) 80%
  );
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: inset -15px -15px 35px rgba(100,150,200,0.2);
  animation: pulseBubble 5s ease-in-out infinite;
  position: relative;
}
.bubble-large-vis::before {
  content: '';
  position: absolute; top: 14%; left: 18%;
  width: 32%; height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.7), transparent);
  border-radius: 50%; transform: rotate(-25deg);
}
.bubble-sm-vis {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.45), rgba(200,230,255,0.2) 55%, transparent 80%
  );
  border: 1.5px solid rgba(255,255,255,0.3);
  animation: pulseBubble 4s ease-in-out infinite;
}
.bubble-sm-vis:nth-child(2) { width: 90px; height: 90px; top: 10%; right: 15%; animation-delay: -1s; }
.bubble-sm-vis:nth-child(3) { width: 60px; height: 60px; bottom: 20%; left: 10%; animation-delay: -2.5s; }
.bubble-sm-vis:nth-child(4) { width: 40px; height: 40px; top: 60%; right: 8%; animation-delay: -1.8s; }

/* ===== SERVICES ===== */
.services-section { background: var(--coco-cream); padding: 100px 48px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: var(--coco-white);
  border-radius: 24px; padding: 44px 34px;
  border: 1px solid rgba(26,74,92,0.07);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(26,74,92,0.11); }
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700;
  color: rgba(26,74,92,0.07); line-height: 1; margin-bottom: 28px;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--coco-teal); margin-bottom: 14px; line-height: 1.25;
}
.service-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; color: rgba(26,74,92,0.58); line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer { background: black; border-top: 5px solid var(--coco-lime); text-align: center; padding: 90px 48px 40px; position: relative; z-index: 2; z-index: 5; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: auto;
  
}
.footer-logo img {
  width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto 15px;
}
.footer-logo-line {
  width: 60px;
  height: 2px;
  background:var(--coco-lime);
  margin: 0 auto 28px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.footer-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--coco-lime);
}
.footer-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--coco-lime);
  border-radius: 10px;
  color: #1a3d4f;
  font-size: 20px;
  margin-bottom: 20px
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .footer {
    margin-top: 0;
  }
}

/* ===== SCROLL    ===== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .plane-left { display: none; }
}
@media (max-width: 600px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
  .values-section, .about-section, .services-section, .footer { padding-left: 24px; padding-right: 24px; }
}

/* SERVICES */
.hero-section-services {
  position: relative;
  width: 100%; min-height: 100vh;
  overflow: hidden;
}

.hero-bg-services {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

/* ===== HERO CONTENT (Services page) ===== */
.hero-content-services {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 50vh; max-width: 100%; text-align: center;
  padding: 120px 40px 100px;
  margin-top: 6rem;
  box-shadow: 0 8px 24px rgba(26,74,92,0.15);
}

.coco-text {
  color: var(--coco-teal);           /* kuning */
  -webkit-text-stroke: 3px #ffffff;  /* outline biru tua */
  font-size: 5rem;
}

.tree { position: absolute; z-index: 11; animation: sway 4s ease-in-out infinite; z-index: 1 }
.tree-sun { 
  top: 5rem; 
  left: -8rem; 
  width: 30rem; 
  animation: sway-flip 4s ease-in-out infinite;
}
.tree-red  { top: 5rem;  right: -8rem; width: 30rem; animation-delay: -1.2s; }

@keyframes sway {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-5px); }
}
@keyframes sway-flip {
  0%,100% { transform: scale(-1, 1) rotate(-3deg) translateY(0); }
  50%      { transform: scale(-1, 1) rotate(3deg) translateY(-5px); }
}

@media (max-width: 768px) {
  .hero-section-services{min-height: 50vh}
  .hero-content-services { padding: 0px 24px 60px; justify-content: start; }
  .coco-text { font-size: 2.5rem;
        padding: 0 60px;
        font-weight: bold;
        -webkit-text-stroke: 1.5px #fff }
  .tree-sun {
    width: 5rem;
    top: 30%;
    left: -1rem;
    z-index: 99;
  }
  .tree-red{
    width: 5rem;
    top: 30%;
    right: 1rem;
    z-index: 99;
  }
}

/* Card - Services */

.card-services-bg {
  border-top : 10px solid #FFD700;
  position: absolute; top: 0; left: 0;
  margin-top: -10rem;
  width: 100%;
  height: 115%;
}

.card-services-section {
  position: relative;
  border-top: 10px solid var(--coco-lime);
}

.cards-wrapper {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 396px);
  justify-content: center;
  gap: 40px 60px;
  padding: 24px;
}

.card {
    width:396px;
    height:388px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
}

.card1 {background:url('../assets/card_services1.png') center/cover no-repeat; }
.card2 {background:url('../assets/card_services2.png') center/cover no-repeat; }
.card3 {background:url('../assets/card_services3.png') center/cover no-repeat; }
.card4 {background:url('../assets/card_services4.png') center/cover no-repeat; }
.card5 {background:url('../assets/card_services5.png') center/cover no-repeat; }
.card6 {background:url('../assets/card_services6.png') center/cover no-repeat; }
.card7 {background:url('../assets/card_services7.png') center/cover no-repeat; }
.card8 {background:url('../assets/card_services8.png') center/cover no-repeat; }

/* Gelapin & birukan foto biar senada sama brand */
  .card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(180deg, rgba(6,20,24,.35) 0%, rgba(6,20,24,.55) 55%, rgba(4,14,17,.92) 100%),
      linear-gradient(160deg, rgba(10,40,45,.55), rgba(5,10,15,.25));
    mix-blend-mode:normal;
  }
 
  .card::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(15,35,38,.35);
    mix-blend-mode:color;
  }

  .info-box{
    position:absolute;
    left:16px;
    right:16px;
    bottom:16px;
    padding:22px 22px 24px;
    border-radius:10px;
    background:rgba(6,18,20,.55);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    border:1.5px solid var(--teal);
    box-shadow:
      0 0 12px var(--teal-glow),
      0 0 32px rgba(47,232,212,.25),
      inset 0 0 14px rgba(47,232,212,.12);
  }
 
  .eyebrow{
    margin:0 0 6px;
    font-family:'Playfair Display', serif;
    font-style:italic;
    font-weight:400;
    font-size:19px;
    color:#f4f4f2;
    line-height:1.25;
  }
 
  .headline{
    margin:0 0 12px;
    font-family:'Inter', sans-serif;
    font-weight:800;
    font-size:26px;
    letter-spacing:.5px;
    line-height:1.15;
    color:#ffffff;
    text-transform:uppercase;
  }
 
  .desc{
    margin:0;
    font-size:13.5px;
    line-height:1.55;
    color:rgba(255,255,255,.82);
    font-weight:400;
    max-width:34ch;
  }
 
  @media (max-width:420px){
    .card{ width:92vw; height:auto; aspect-ratio: 396/388; }
  }

.card-img-wrap{
  width: 100%;
  margin: 0 1rem 0 1rem;
  height: 300px;
  position: relative;
  top: -5rem;
}

.card-img-wrap img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.card-body {
  padding: 20px 20px 28px;
  position: relative;
  margin-top: -4rem;
}

.card-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 12px;
  text-align: center;
  line-height: 1.4;
  z-index: 6;
}

.card-desc {
  font-size: 18 px;
  color: #444;
  line-height: 1.7;
  text-align: center;
  margin: 0;
  z-index: 6;
}


.panah-services{ 
    position: absolute;
    right: 8%;
    top: -100px;
    width: 180px;
    animation-delay: -2.2s;
    z-index: 5; 
  }

.tangan-services{ 
    position: absolute;
    left: 8%;
    top: 28rem;
    width: 180px;
    animation-delay: -2.2s;
    z-index: 4; 
  }

.loading-services{ 
    position: absolute;
    left: 0;
    top: 62rem;
    width: 450px;
    animation-delay: -2.2s;
    z-index: 4; 
  }
  
.file-services{ 
    position: absolute;
    right: 0;
    bottom: 56rem;
    width: 200px;
    animation-delay: -2.2s;
    z-index: 4; 
  }

.move-services{ 
    position: absolute;
    left: 0;
    bottom: 25rem;
    width: 180px;
    animation-delay: -2.2s;
    z-index: 4; 
  }
.timer-services{ 
    position: absolute;
    right: 0rem;
    bottom: 12rem;
    width: 120px;
    animation-delay: -2.2s;
    z-index: 4; 
  }
.tangan2-services{ 
    position: absolute;
    left: 10rem;
    bottom: -8rem;
    width: 180px;
    animation-delay: -2.2s;
    z-index: 4; 
  }

  /* ===== CARD SERVICES — MOBILE ===== */


/* OUR CLIENT */

.card-client-section {
  position: relative; /* tambahin ini */
  background-size: cover;
  padding: 15rem 30rem 8rem 30rem;
  width: 100%;
  overflow: hidden;
}

.card-client-bg {
  top: 0; 
  left: 0;
  width: 100%;
}

.client-bg{
  position: absolute; /* tambahin ini */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.clients-section {
  background: #fff;
  padding: 48px 32px;
  border-top: 15px solid #FFD700;
  margin-top: -2rem;
}

.stage {
    width: 100%;
    max-width: 1900px;
    height: 140px;
    position: relative;
    /* fade edges kiri-kanan */
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  }
 
  /* === scene 3D, setara div "Carousel" di devtools === */
  .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 500px; /* dari 500px */
  }
 
  /* === "Arms": bagian yang berputar terus menerus === */
  .arms {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation-name: spin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
 
  /* baris genap muter searah jarum jam, ganjil sebaliknya, biar tidak monoton */
  .dir-cw  { animation-direction: normal; }
  .dir-ccw { animation-direction: reverse; }
 
  @keyframes spin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
  }
 
  /* === tiap "Arm N": satu logo di tepi lingkaran 3D === */
  .arm {
    position: absolute;
    top: 0;
    left: 50%;
    width: 130px;
    height: 100%;
    margin-left: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
  }
 
  .arm img {
    width: 200px;      /* box tetap sama untuk semua logo */
    height: 200px;       /* eksplisit, bukan auto lagi */
    object-fit: contain; /* sekarang beneran kepakai */
  }
 
  .arm img:hover {
    filter: grayscale(0%) opacity(1);
  }

 .form-card{
    position:relative;
    z-index:1;
    width:100%;
    max-width:840px;
    padding:32px 28px 36px;
    border-radius:16px;
    background:rgba(4,10,12,.55);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1.5px solid var(--teal);
    box-shadow:
      0 0 14px var(--teal-glow),
      0 0 40px rgba(47,232,212,.25),
      inset 0 0 16px rgba(47,232,212,.08);
  }
 
  .form-title{
    margin:0 0 18px;
    text-align:center;
    font-weight:800;
    font-size:26px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#ffffff;
    text-shadow:0 0 18px rgba(255,255,255,.35);
  }
 
  .divider{
    height:1px;
    margin:0 0 22px;
    background:linear-gradient(90deg, transparent, rgba(47,232,212,.6), transparent);
  }
 
  .field{
    margin-bottom:16px;
  }
 
  .field label{
    display:block;
    margin-bottom:6px;
    font-size:22px;
    font-weight:600;
    color:#f2f2f2;
  }
 
  .field input,
  .field textarea{
    width:100%;
    padding:11px 14px;
    border-radius:8px;
    border:1px solid rgba(47,232,212,.45);
    background:rgba(255,255,255,.03);
    color:#e8f7f5;
    font-family:inherit;
    font-size:16px;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
  }
 
  .field input::placeholder,
  .field textarea::placeholder{
    color:rgba(230,240,238,.4);
    font-style:italic;
  }
 
  .field input:focus,
  .field textarea:focus{
    border-color:var(--teal);
    box-shadow:0 0 0 3px rgba(47,232,212,.18);
  }
 
  .field textarea{
    resize:vertical;
    min-height:110px;
  }
 
  .submit-row{
    margin-top:22px;
    display:flex;
    justify-content:center;
  }
 
  .submit-btn{
    padding:11px 30px;
    border:none;
    border-radius:24px;
    background:linear-gradient(180deg, #3ff0dc, #1fc9b7);
    color:#04211d;
    font-weight:700;
    font-size:16px;
    letter-spacing:.3px;
    cursor:pointer;
    box-shadow:0 0 16px rgba(47,232,212,.5);
    transition:transform .15s, box-shadow .15s;
  }
 
  .submit-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 0 22px rgba(47,232,212,.7);
  }


.bunga { position: absolute; animation: sway 4s ease-in-out infinite; z-index: 11; }
.bunga-right { 
  width: 13rem; 
  animation: sway-flip 4s ease-in-out infinite;
  left: -1rem;
}
.bunga-left  {width: 13rem; animation-delay: -1.2s; right: -1rem;}

/* =========================================================
   TABLET (1025px turun sampai 769px)
   Ini breakpoint yang sebelumnya KOSONG di file lama.
   ========================================================= */
@media (max-width: 1024px) {
 
  /* Hero: teks jangan digeser 12rem lagi, biar gak kepotong */
  .hero-content {
    margin-left: 0;
    padding: 0 40px;
  }
  .hero-serif { font-size: clamp(44px, 7vw, 80px); }
  .hero-bold  { font-size: clamp(36px, 6vw, 56px); }
 
  .star-bottom-left { width: 14rem; }
  .star-right-mid   { width: 9rem; }

   /* We Are Coco: padding raksasa 600px/380px bikin sempit di tablet */
  .weare-body {
    padding: 100px 260px 0px 260px;
  }

  .weare-title { font-size: 48px; }
  .weare-title-1 {font-size: 66px;}

  .torn-bottom {height: 25px;}
 
  /* Belief system: biar 3 card boleh wrap, gak mepet */
  .belief-row { flex-wrap: wrap; }
  .belief-card {
    width: 18rem;
    height: auto;
    min-height: 22rem;
    padding: 32px 24px;
  }
 
  /* Services cards wrapper: gap 150px kegedean di tablet */
  .cards-wrapper { grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    gap: 32px 24px; }
 
  /* Client / contact section: padding 15rem/30rem gak masuk akal di tablet */
  .card-client-section {
    padding: 4rem 5rem;
  }
 
  .coco-text { font-size: 3.5rem; padding: 0 40px; }

  /* ---- Belief section: 3 kartu 20rem + gap kegedean buat 1024px ---- */
    .belief-section {
      padding: 24px 32px;
    }
    
    .belief-card {
      width: 16.5rem; /* diperkecil lagi dari 18rem biar 3 kartu muat */
    }
    
    .belief-title-our {
      font-size: 3rem;
    }
    
    /* ---- About section: 2 kolom + gap 90px masih kegedean ---- */
    .about-grid {
      gap: 48px;
      padding: 0 8px;
    }
    
    /* ---- Services grid (3 card besar) ---- */
    .services-section {
      padding: 80px 32px;
    }
    
    .services-grid {
      gap: 20px;
    }
    
    .service-card {
      padding: 34px 24px;
    }
    
    /* ---- Halaman Services: hero & dekorasi pohon ---- */
    .hero-content-services {
      padding: 100px 32px 80px;
      margin-top: 5rem;
    }
    
    .tree-sun,
    .tree-red {
      width: 16rem;
    }
    
    /* ---- Card-services: background offset & dekorasi ikon ---- */
    .card-services-bg {
      margin-top: -6rem;
      height: 108%;
    }
    
    .panah-services {
      width: 120px;
      top: -60px;
    }
    
    .tangan-services {
      width: 120px;
      top: 18rem;
    }
    
    .loading-services {
      width: 280px;
      top: 48rem;
    }
    
    .file-services {
      width: 140px;
      bottom: 40rem;
    }
    
    .move-services {
      width: 120px;
      bottom: 20rem;
    }
    
    .timer-services {
      width: 90px;
      bottom: 10rem;
    }
    
    .tangan2-services {
      width: 130px;
      left: 4rem;
      bottom: -4rem;
    }
    
    /* ---- Client / contact form card ---- */    
    .field label {
      font-size: 16px;
    }
    
    /* ---- Ticker text biar nggak ketabrak di lebar 1024 ---- */
    .ticker-item {
      padding: 0 36px;
    }
}

/* ===== CONTACT / CLIENT SECTION — MOBILE ===== */
@media (max-width: 768px) {

  /* Section padding */
  .card-client-section {
    padding: 1rem
  }

  /* Clients grid jadi 2 kolom */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding: 0 16px;
  }

  /* Contact section */
  .contact-section {
    margin-top: 4rem;
    padding: 60px 24px 80px;
  }

  .contact-title {
    font-size: 26px;
    text-align: center;
  }

  .contact-divider {
    max-width: 100%;
    margin-bottom: 24px;
  }

  /* Form full width */
  .contact-form {
    max-width: 100%;
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 11px 12px;
  }

  .btn-send {
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
  }

  /* Bunga dikecilkan & posisi disesuaikan */
  .bunga-right {
    display: none;
  }
  .bunga-left {
    display: none;
  }
}

/* ===== WE ARE COCO — MOBILE ===== */
@media (max-width: 768px) {

  /* Body padding lebih kecil */
  .weare-body {
    padding: 85px 24px 60px;
  }

  /* Grid jadi 1 kolom, logo di bawah teks */
  .weare-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .weare-bg{
    width: auto;
  }

  /* Logo center & lebih kecil */
  .weare-logo {
    width: min(200px, 70%);
  }

  /* Desc max-width full */
  .weare-desc {
    max-width: 100%;
  }

  /* Torn bottom lebih pendek */
  .torn-bottom {
    height: 160px;
  }

  /* Pesawat dikecilkan & posisi disesuaikan */
  .weare-plane-left {
    width: 180px;
    left: -3rem !important;
    bottom: -100px;
  }
  .weare-plane-right {
    width: 220px;
    right: -4rem !important;
    bottom: 20px;
  }
}

@media (max-width: 768px) {

  /* Background image */
  .card-services-bg {
    margin-top: -4rem;
    height: 102%;
  }

  /* Section padding atas bawah */
  .card-services-section {
    padding: 60px 0 80px;
  }

  /* Wrapper jarak antar row */
  .cards-wrapper {
    margin-top: 2rem;
    gap: 60px;
    padding: 16px;
  }

  /* Card full width, tinggi auto */
  .card {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-bottom: 1.5rem;
  }

  /* Image wrap tinggi dikurangi */
  .card-img-wrap {
    height: 200px;
    top: -3.5rem;
    margin: 0 0.5rem;
  }

  .card-img-wrap img {
    width: 95%;
    height: 100%;
  }

  /* Body margin disesuaikan */
  .card-body {
    margin-top: -2.5rem;
    padding: 16px 16px 24px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-desc {
    font-size: 14px;
  }

  /* ── Dekorasi dikecilkan ── */
  .panah-services {
    width: 90px;
    top: -50px;
    right: 4%;
  }

  .tangan-services {
    width: 90px;
    top: 16rem;
    left: 4%;
  }

  .loading-services {
    width: 180px;
    top: 42rem;
  }

  .file-services {
    width: 100px;
    bottom: auto;
    top: 60rem;
  }

  .move-services {
    width: 90px;
    bottom: 18rem;
  }

  .timer-services {
    width: 70px;
    bottom: 8rem;
  }

  .tangan2-services {
    width: 100px;
    left: 2rem;
    bottom: 0rem;
    z-index: 9;
  }
}
