/* ============================================================
   Mendoonia – Peternakan Kambing & Domba Kurban Solo Raya
   style.css  |  Mobile-first, production-ready
   ============================================================ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  --green-deep:    #243D0F;
  --green-mid:     #3E6B1F;
  --green-sat:     #5A9A2B;
  --green-light:   #89C544;
  --green-pale:    #EDF5DC;
  --brown-dark:    #4A2E10;
  --brown-mid:     #7A4E28;
  --brown-warm:    #C28A55;
  --cream:         #FAF8F3;
  --cream-dark:    #F0EBE1;
  --white:         #FFFFFF;
  --text-900:      #181818;
  --text-600:      #454545;
  --text-400:      #767676;
  --border:        #DDD5C8;
  --wa:            #25D366;
  --wa-dark:       #128C7E;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --shadow-xs:     0 1px 6px rgba(36,61,15,.08);
  --shadow-sm:     0 4px 16px rgba(36,61,15,.10);
  --shadow-md:     0 10px 40px rgba(36,61,15,.14);
  --shadow-lg:     0 24px 64px rgba(36,61,15,.18);
  --nav-h:         70px;
  --font-display:  'Lora', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-900);
  line-height: 1.65;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── 3. Utility ───────────────────────────────────────────── */
.container      { width: 92%; max-width: 1180px; margin: 0 auto; }
.visually-hidden{
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* Pill label above section headings */
.section-pill {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* Section heading pattern */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-600);
  margin-top: 10px;
  max-width: 560px;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--green-sat);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(89,154,43,.35);
}
.btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 28px rgba(89,154,43,.45);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.30);
}
.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-sat);
}
.btn-outline:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 4. Navigation ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250,248,243,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo span { color: var(--green-light); }
#navbar.scrolled .nav-logo { color: var(--green-deep); }

/* Desktop links */
.nav-links {
  display: none; /* shown on lg */
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--text-600); }
#navbar.scrolled .nav-links a:hover { color: var(--green-deep); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
#navbar.scrolled .hamburger span { background: var(--green-deep); }

/* Hamburger → X animation */
.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 */
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 0 5%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, box-shadow .35s;
  z-index: 999;
}
.mobile-nav.open {
  max-height: 420px;
  box-shadow: var(--shadow-md);
}
.mobile-nav a {
  display: block;
  font-size: .97rem;
  font-weight: 500;
  color: var(--text-900);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border: none; margin-bottom: 12px; }
.mobile-nav a:hover { color: var(--green-mid); }

/* ── 5. Hero ──────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=1800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(.32) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(24,45,8,.80) 0%,
    rgba(36,61,15,.45) 55%,
    rgba(62,107,31,.15) 100%
  );
}

/* Diagonal bottom cut */
.hero-cut {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp .85s ease both;
}

/* Live indicator badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  color: #C5E88A;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero-title-accent {
  display: block;
  color: #B8E06A;
}

.hero-description {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,.80);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  animation: fadeUp .85s .2s ease both;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: #B8E06A;
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 3px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-ring {
  width: 30px; height: 30px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-ring svg { width: 12px; height: 12px; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 6. About / Tentang Kami ──────────────────────────────── */
#tentang {
  padding: 100px 0 90px;
  background: var(--white);
}
.about-grid {
  display: grid;
  gap: 48px;
}
/* image side */
.about-img-box { position: relative; }
.about-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -18px; right: 18px;
  background: var(--green-deep);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #B8E06A;
  line-height: 1;
}
.about-badge span { font-size: .72rem; opacity: .8; line-height: 1.3; }

/* text side */
.about-text { margin-top: 24px; }
.about-text p  { color: var(--text-600); margin-top: 14px; line-height: 1.8; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.feature-row.visible { opacity: 1; transform: translateY(0); }
.feature-icon {
  width: 42px; height: 42px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--green-deep);
}
.feature-text span {
  font-size: .83rem;
  color: var(--text-400);
  line-height: 1.5;
}

/* ── 7. Coverage Area ─────────────────────────────────────── */
#area {
  padding: 60px 0;
  background: var(--green-deep);
}
.area-inner {
  text-align: center;
}
.area-inner .section-heading { color: var(--white); }
.area-inner .section-sub { color: rgba(255,255,255,.70); margin: 10px auto 36px; text-align: center; }
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: .87rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition);
}
.area-pill:hover { background: rgba(255,255,255,.16); }
.area-pill svg { width: 14px; height: 14px; opacity: .7; }

/* ── 8. Katalog ───────────────────────────────────────────── */
#katalog {
  padding: 96px 0;
  background: var(--cream);
}
.katalog-header {
  text-align: center;
  margin-bottom: 48px;
}
.katalog-header .section-sub { margin: 10px auto 0; text-align: center; }

/* Kandang tabs */
.kandang-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.kandang-tab {
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  color: var(--text-600);
  background: var(--white);
  transition: all var(--transition);
}
.kandang-tab:hover  { border-color: var(--green-sat); color: var(--green-mid); }
.kandang-tab.active { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }

/* Panel visibility */
.katalog-panel          { display: none; }
.katalog-panel.active   { display: block; }

/* Slider */
.slider-outer   { position: relative; }
.slider-track   {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }

/* Animal card */
.animal-card {
  flex: 0 0 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.animal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--cream-dark);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.animal-card:hover .card-img-wrap img { transform: scale(1.07); }

.card-weight-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--green-deep);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
}
.card-availability {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(37,211,102,.9);
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.card-body { padding: 14px 16px 18px; }
.card-name  {
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-900);
}
.card-meta  {
  font-size: .77rem;
  color: var(--text-400);
  margin-top: 2px;
}
.card-desc  {
  font-size: .78rem;
  color: var(--text-600);
  margin-top: 6px;
  line-height: 1.5;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-top: 10px;
}
.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: var(--wa);
  color: var(--white);
  font-size: .83rem;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
}
.card-cta:hover { background: var(--wa-dark); transform: scale(.98); }
.card-cta svg   { width: 15px; height: 15px; }

/* Arrow buttons */
.slider-arrows {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 2px;
}
.arrow-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-600);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.arrow-btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.arrow-btn svg { width: 15px; height: 15px; pointer-events: none; }

/* ── 9. Keunggulan ────────────────────────────────────────── */
#keunggulan {
  padding: 96px 0;
  background: var(--white);
}
.keunggulan-header { text-align: center; margin-bottom: 52px; }
.keunggulan-header .section-sub { margin: 10px auto 0; text-align: center; }

.keunggulan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.unggulan-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, box-shadow var(--transition);
}
.unggulan-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.unggulan-card:hover {
  background: var(--green-pale);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.unggulan-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.unggulan-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.unggulan-desc {
  font-size: .83rem;
  color: var(--text-600);
  line-height: 1.6;
}

/* ── 10. Testimoni ────────────────────────────────────────── */
#testimoni {
  padding: 96px 0;
  background: var(--cream-dark);
}
.testimoni-header { text-align: center; margin-bottom: 48px; }
.testimoni-header .section-sub { margin: 10px auto 0; text-align: center; }

.testi-grid {
  display: grid;
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-sm); }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testi-stars span { color: #F4A800; font-size: 1rem; }
.testi-quote {
  font-size: .92rem;
  color: var(--text-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name  { font-weight: 700; font-size: .88rem; color: var(--text-900); }
.testi-place { font-size: .77rem; color: var(--text-400); }

/* ── 11. Kontak ───────────────────────────────────────────── */
#kontak {
  padding: 96px 0;
  background: var(--white);
}
.kontak-grid { display: grid; gap: 52px; }

.kontak-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.kontak-text { }
.kontak-text p { color: var(--text-600); margin-top: 14px; line-height: 1.75; }

.kontak-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.kontak-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.kontak-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontak-row strong { display: block; font-size: .87rem; font-weight: 700; color: var(--green-deep); }
.kontak-row span   { font-size: .83rem; color: var(--text-600); }

.kontak-cta-wrap { margin-top: 32px; }
.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--wa);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-wa-lg:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,.50);
}
.btn-wa-lg svg { width: 22px; height: 22px; }

/* ── 12. Footer ───────────────────────────────────────────── */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.75);
  padding: 52px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 24px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--green-light); }
.footer-tagline {
  font-size: .83rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green-light); }

/* SEO text paragraph */
.footer-seo {
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

/* ── 13. Floating WA ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 26px; right: 20px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatIn .6s .5s ease both;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-float svg { width: 22px; height: 22px; }
@keyframes floatIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Hide text on tiny screens */
@media (max-width: 380px) { .wa-float .wa-label { display: none; } }

/* ── 14. Responsive ───────────────────────────────────────── */

/* sm → md: 640px+ */
@media (min-width: 640px) {
  .about-photo     { height: 400px; }
  .testi-grid      { grid-template-columns: 1fr 1fr; }
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
}

/* md → lg: 900px+ */
@media (min-width: 900px) {
  /* Show desktop nav */
  .nav-links   { display: flex; }
  .hamburger   { display: none; }

  .about-grid  { grid-template-columns: 1fr 1fr; align-items: center; }
  .about-text  { margin-top: 0; }
  .about-photo { height: 460px; }

  .kontak-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .kontak-photo{ height: 440px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .testi-grid  { grid-template-columns: repeat(3, 1fr); }
  .keunggulan-grid { grid-template-columns: repeat(4, 1fr); }
}

/* lg+: 1100px+ */
@media (min-width: 1100px) {
  .hero-title { font-size: 4.8rem; }
}