/* ============================================================
   INDEX.CSS — TIKAR / Titik Arab — REDESIGN 2026
   Aesthetic: "Academic Garden"
   Mood: Clean · Airy · Warm · Scholarly · Botanical
   Palette: Deep Teal × Coral × Warm White × Sage Green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ===== DESIGN SYSTEM TOKENS ===== */
:root {
  /* ── PRIMARY: Deep Scholarly Teal ── */
  --teal:         #2A6B6B;
  --teal-dark:    #1D5050;
  --teal-deep:    #113838;
  --teal-mid:     #468E8E;
  --teal-light:   #78BBBB;
  --teal-pale:    #C4E4E4;
  --teal-wash:    #EAF5F5;
  --teal-glow:    rgba(42, 107, 107, 0.14);

  /* ── ACCENT: Warm Coral (from mood board img 3) ── */
  --coral:        #E07B62;
  --coral-dark:   #BE5E49;
  --coral-light:  #EDA594;
  --coral-pale:   #FCEAE6;
  --coral-glow:   rgba(224, 123, 98, 0.18);

  /* ── BOTANICAL: Sage (from mood board img 4 cherry blossom) ── */
  --sage:         #4C8C6C;
  --sage-light:   #80B894;
  --sage-pale:    #E8F4EE;

  /* ── BACKGROUNDS ── */
  --bg:           #F8F5F0;   /* warm paper white */
  --bg-pure:      #FFFFFF;
  --bg-warm:      #F2EDE6;   /* slightly darker warm section */
  --bg-subtle:    #EDE8E2;

  /* ── TEXT ── */
  --text:         #1C2626;   /* near-black with teal undertone */
  --text-mid:     #3D5252;
  --text-muted:   #6B8A8A;
  --text-light:   #96B2B2;

  /* ── BORDERS ── */
  --border:       #DFD8D0;
  --border-soft:  #EDE8E2;
  --border-teal:  #C4E4E4;

  /* ── SHADOWS — soft, warm ── */
  --shadow-xs:    0 1px 4px rgba(28, 38, 38, 0.05);
  --shadow-sm:    0 2px 14px rgba(28, 38, 38, 0.07);
  --shadow-md:    0 8px 32px rgba(28, 38, 38, 0.10);
  --shadow-lg:    0 20px 64px rgba(28, 38, 38, 0.13);
  --shadow-teal:  0 8px 30px rgba(42, 107, 107, 0.22);
  --shadow-coral: 0 8px 30px rgba(224, 123, 98, 0.28);

  /* ── RADII ── */
  --r-xs:  6px;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.1),
              transform 0.65s cubic-bezier(.22,.68,0,1.1);
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1      { transition-delay: 0.08s; }
.reveal-delay-2      { transition-delay: 0.18s; }
.reveal-delay-3      { transition-delay: 0.28s; }
.reveal-delay-4      { transition-delay: 0.40s; }


/* ============================================================
   HERO — airy, clean, botanical warmth
   References: mood board 3 (salmon/white minimal) + 4 (teal/cream)
============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-pure);
  padding-top: 80px;
}

/* Warm gradient washes */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 0% 10%, rgba(42,107,107,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at 100% 90%, rgba(224,123,98,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 10%, rgba(76,140,108,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle top accent bar */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--teal-pale) 20%,
    var(--teal) 40%,
    var(--coral) 60%,
    var(--sage) 80%,
    transparent 100%);
}

/* Dot grid texture */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(42,107,107,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.65;
}

/* ── Botanical SVG ornament top-right ── */
.hero-botanical-tr {
  position: absolute;
  top: 72px; right: -20px;
  width: 320px; height: 320px;
  pointer-events: none;
  opacity: 0.13;
  animation: botanicalSway 10s ease-in-out infinite;
}

/* ── Botanical SVG ornament bottom-left ── */
.hero-botanical-bl {
  position: absolute;
  bottom: 30px; left: -30px;
  width: 240px; height: 240px;
  pointer-events: none;
  opacity: 0.09;
  animation: botanicalSway 12s ease-in-out infinite 2s;
}

@keyframes botanicalSway {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33%       { transform: rotate(2.5deg) scale(1.02); }
  66%       { transform: rotate(-1.5deg) scale(0.99); }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 52px 96px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-wash);
  border: 1.5px solid var(--teal-pale);
  padding: 6px 18px;
  border-radius: var(--r-xl);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  animation: dotPulse 2.2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.8); }
}

.hero-text h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--teal);
  position: relative;
  display: inline-block;
}

/* Coral underline flourish */
.hero-text h1 em::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), transparent);
  border-radius: var(--r-xl);
  opacity: 0.8;
}

.hero-text p {
  font-size: 1.06rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.85;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: white;
  padding: 14px 30px;
  border-radius: var(--r-xl);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-teal);
  transition: all 0.25s cubic-bezier(.22,.68,0,1.2);
}

.btn-hero-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(42,107,107,0.35);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--border);
  color: var(--text-mid);
  padding: 13px 24px;
  border-radius: var(--r-xl);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.22s ease;
  background: transparent;
}

.btn-hero-secondary:hover {
  background: var(--teal-wash);
  border-color: var(--teal-pale);
  color: var(--teal);
  transform: translateY(-3px);
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border-soft);
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat strong {
  font-family: "Nunito", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Hero visual */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Organic blob background shape */
.hero-image::before {
  content: '';
  position: absolute;
  width: 370px; height: 370px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: linear-gradient(145deg, var(--teal-wash) 0%, var(--coral-pale) 60%, var(--sage-pale) 100%);
  z-index: 0;
  animation: blobMorph 12s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  33%       { border-radius: 44% 56% 38% 62% / 48% 55% 45% 52%; }
  66%       { border-radius: 55% 45% 62% 38% / 42% 60% 40% 58%; }
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(42,107,107,0.18));
  animation: floatHero 5.5s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-15px) rotate(1deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--teal-light);
  font-size: 1.2rem;
  opacity: 0.65;
  animation: scrollBob 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.9; }
}


/* ============================================================
   TENTANG — warm off-white, clean feature cards
   References: mood board 1 (beige bg + botanical shapes) + 4 (elegant teal)
============================================================ */
#tentang {
  background: var(--bg);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}

/* Corner botanical accent */
#tentang::before {
  content: '';
  position: absolute;
  top: -50px; right: -70px;
  width: 300px; height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C130 40 160 50 165 85 C170 120 148 148 120 160 C92 172 62 160 50 135 C38 110 46 78 65 58 C84 38 70 -20 100 10Z' fill='none' stroke='%232A6B6B' stroke-width='2' opacity='0.35'/%3E%3Cpath d='M75 55 C92 42 118 50 126 70 C134 90 124 115 108 122 C92 129 72 118 68 98 C64 78 58 68 75 55Z' fill='none' stroke='%234C8C6C' stroke-width='1.5' opacity='0.28'/%3E%3Ccircle cx='135' cy='140' r='8' fill='none' stroke='%23E07B62' stroke-width='1.5' opacity='0.3'/%3E%3Ccircle cx='155' cy='120' r='5' fill='none' stroke='%23E07B62' stroke-width='1.5' opacity='0.22'/%3E%3Cline x1='100' y1='10' x2='100' y2='160' stroke='%232A6B6B' stroke-width='0.8' opacity='0.12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.7;
}

.tentang-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 52px;
}

/* Section tag — consistent component */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  width: 28px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: var(--r-xl);
}

.tentang-inner h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tentang-inner > p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.88;
  margin-bottom: 56px;
}

/* ── Feature Cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 0;
}

.feature-card {
  background: var(--bg-pure);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 32px 26px;
  transition: all 0.3s cubic-bezier(.22,.68,0,1.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

/* Teal accent bar — slides in from top on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 4px 4px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(.22,.68,0,1.2);
}

/* Soft botanical circle glow in corner */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-wash) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover::before  { transform: scaleX(1); }
.feature-card:hover::after   { opacity: 1; }
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-teal);
}

.feature-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  background: var(--teal-wash);
  border: 1.5px solid var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
}

.feature-card h4 {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Cara Pakai strip — teal gradient ── */
.cara-section {
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-dark) 50%, var(--teal) 100%);
  margin-top: 64px;
  padding: 52px 64px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* Botanical SVG left */
.cara-section::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 220px; height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='white' stroke-width='0.8' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='white' stroke-width='0.8' opacity='0.1'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='white' stroke-width='0.8' opacity='0.08'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.cara-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cara-section h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}

.cara-pakai {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}

.cara-pakai li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  line-height: 1.65;
}

.cara-pakai li::before {
  content: attr(data-n);
  min-width: 28px; height: 28px;
  border-radius: 9px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

#tentang > svg { display: block; }

/* SVG wave separator color override */
#tentang > svg path,
#tentang > svg rect,
#tentang > svg ellipse { fill: var(--bg-pure) !important; }


/* ============================================================
   BACAAN — pure white, editorial card grid
   References: mood board 3 (clean white + product cards)
============================================================ */
#bacaan {
  background: var(--bg-pure);
  padding: 96px 0;
  position: relative;
}

/* Subtle section header line */
#bacaan::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 0;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: var(--r-xl);
}

.bacaan-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative; z-index: 1;
}

.bacaan-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.bacaan-header h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bacaan-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Card grid */
.grid-ibacaan {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 24px;
}

/* ── Reading Card ── */
.card {
  background: var(--bg-pure);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1.5px solid var(--border-soft);
  transition: all 0.30s cubic-bezier(.22,.68,0,1.2);
}

.card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-teal);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.88) brightness(0.90);
}

.card:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(0.85);
}

/* Arabic title badge on image */
.card-img-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,38,38,0.88) 0%, transparent 100%);
  padding: 32px 16px 12px;
  font-family: "Amiri", serif;
  font-size: 1.1rem;
  color: white;
  text-align: center;
  direction: rtl;
  line-height: 1.75;
}

.card-content {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.judul-arab { display: none; }

.deskripsi {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  min-height: 36px;
  line-height: 1.68;
}

/* Read button — teal ghost, fills on hover */
.btn-baca {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--teal-wash);
  color: var(--teal);
  border: 1.5px solid var(--teal-pale);
  text-decoration: none;
  border-radius: var(--r-xl);
  font-size: 0.83rem;
  font-weight: 700;
  transition: all 0.22s ease;
  align-self: flex-start;
}

.btn-baca:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.bacaan-footer {
  text-align: center;
  margin-top: 48px;
}

.btn-akses {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--r-xl);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.24s ease;
  letter-spacing: 0.01em;
}

.btn-akses:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-teal);
}


/* ============================================================
   KITABAH — warm background, scrollable card row
   References: mood board 1 (botanical shapes + warm bg)
============================================================ */
.kitabah-section {
  background: var(--bg-warm);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Botanical dot texture */
.kitabah-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(42,107,107,0.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* Bottom-right botanical ornament */
.kitabah-section::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 300px; height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='80' ry='50' fill='none' stroke='%232A6B6B' stroke-width='1.5' opacity='0.15' transform='rotate(-30 100 100)'/%3E%3Cellipse cx='100' cy='100' rx='60' ry='35' fill='none' stroke='%232A6B6B' stroke-width='1' opacity='0.12' transform='rotate(-30 100 100)'/%3E%3Ccircle cx='140' cy='70' r='6' fill='%23E07B62' opacity='0.25'/%3E%3Ccircle cx='160' cy='85' r='4' fill='%23E07B62' opacity='0.2'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.kitabah-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.kitabah-left {
  flex-shrink: 0;
  width: 240px;
  display: flex;
  flex-direction: column;
}

.kitabah-left .section-tag { color: var(--teal); }

.kitabah-left h2 {
  font-family: "Nunito", sans-serif;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.kitabah-left p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

.kitabah-right {
  flex: 1;
  min-width: 0;
}

.kitabah-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 14px;
  padding-top: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
}

.kitabah-scroll:active { cursor: grabbing; }

.kitabah-scroll::-webkit-scrollbar { height: 5px; }
.kitabah-scroll::-webkit-scrollbar-track {
  background: var(--border-soft);
  border-radius: var(--r-xl);
}
.kitabah-scroll::-webkit-scrollbar-thumb {
  background: var(--teal-pale);
  border-radius: var(--r-xl);
}

.kitabah-card { scroll-snap-align: start; }

.kitabah-card {
  min-width: 165px;
  max-width: 165px;
  background: var(--bg-pure);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 18px 14px 16px;
  height: 242px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(.22,.68,0,1.2);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xs);
}

/* Teal + coral gradient top bar on hover */
.kitabah-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.32s ease;
}

.kitabah-card:hover::before { transform: scaleX(1); }

.kitabah-card:hover {
  border-color: var(--border-teal);
  transform: translateY(-9px);
  box-shadow: var(--shadow-md);
}

.kitabah-card:hover img { transform: scale(1.12) translateY(40px); }

.img-wrap {
  height: 112px; width: 112px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translateY(50px);
  transition: transform 0.42s ease;
}

.text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.kitabah-card h5 {
  margin: 0;
  font-family: "Amiri", serif;
  font-size: 0.95rem;
  color: var(--text);
  text-align: center;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kitabah-card span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-mid);
}


/* ============================================================
   KONTAK — clean warm white
============================================================ */
#kontak {
  background: var(--bg);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}

/* Botanical left accent */
#kontak::before {
  content: '';
  position: absolute;
  bottom: 80px; left: -60px;
  width: 280px; height: 280px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M40 160 C40 100 80 40 100 30 C120 40 160 100 160 160' fill='none' stroke='%232A6B6B' stroke-width='1.5' opacity='0.15'/%3E%3Cpath d='M100 30 C100 80 100 130 100 165' fill='none' stroke='%232A6B6B' stroke-width='1' opacity='0.12'/%3E%3Cellipse cx='70' cy='90' rx='22' ry='30' fill='none' stroke='%234C8C6C' stroke-width='1.2' opacity='0.18' transform='rotate(-20 70 90)'/%3E%3Cellipse cx='130' cy='90' rx='22' ry='30' fill='none' stroke='%234C8C6C' stroke-width='1.2' opacity='0.18' transform='rotate(20 130 90)'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.85;
}

.kontak-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative; z-index: 1;
}

.kontak-inner .section-tag { color: var(--teal); }

.kontak-inner h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.kontak-inner > p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.8;
}

.kontak-form .form-label {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.kontak-form .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.93rem;
  background: var(--bg-pure);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kontak-form .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3.5px var(--teal-glow);
  background: white;
  outline: none;
}

.btn-kirim {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal) !important;
  color: white !important;
  padding: 14px 34px;
  border: none;
  border-radius: var(--r-xl);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  box-shadow: var(--shadow-teal);
  transition: all 0.22s ease;
}

.btn-kirim:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(42,107,107,0.34) !important;
}

#kontak > svg { display: block; margin-top: 60px; margin-bottom: -5px; }

/* SVG wave color overrides */
#kontak > svg path,
#kontak > svg rect,
#kontak > svg ellipse { fill: var(--text) !important; }


/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 34px 20px 26px;
}

footer a {
  color: var(--teal-light);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--coral-light); }

footer .bi-heart-pulse-fill { color: var(--coral-light); }

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-um {
  width: 80px;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}

.footer-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  text-align: left;
}

.footer-left small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.30);
  font-size: 0.78rem;
}

.footer-credit {
  margin-top: 12px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-credit p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.footer-credit strong {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .hero-container  { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text p     { margin: 0 auto 28px; }
  .hero-buttons    { justify-content: center; }
  .hero-stats      { justify-content: center; }
  .hero-image      { order: -1; }
  .hero-image img  { max-width: 260px; }
  .feature-grid    { grid-template-columns: 1fr 1fr; }
  .cara-pakai      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-container    { padding: 44px 24px 68px; }
  .tentang-inner,
  .bacaan-inner,
  .kontak-inner      { padding: 0 24px; }
  .feature-grid      { grid-template-columns: 1fr; }
  .cara-pakai        { grid-template-columns: 1fr; }
  .cara-section      { padding: 40px 28px; }
  .bacaan-header     { flex-direction: column; align-items: flex-start; }
  .hero-stats        { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-botanical-tr,
  .hero-botanical-bl { display: none; }

  .kitabah-section   { padding: 64px 0; }
  .kitabah-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }
  .kitabah-left {
    width: 100%;
    text-align: center;
    padding: 0 24px;
    align-items: center;
  }
  .kitabah-right {
    width: 100%;
    min-width: 0;
    overflow: visible;
  }
  .kitabah-scroll {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible;
    padding-left: 24px;
    padding-right: 24px;
    gap: 14px;
  }
  .kitabah-card {
    min-width: 148px !important;
    max-width: 148px !important;
    height: 224px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .hero-text h1             { font-size: 2.2rem; }
  .btn-hero-primary,
  .btn-hero-secondary       { width: 100%; justify-content: center; }
  .hero-buttons             { flex-direction: column; }

  .kitabah-card {
    min-width: 138px !important;
    max-width: 138px !important;
    height: 212px !important;
  }
}