/* Glamping Paradise — style.css */
/* Primary: #2e1503 | Accent: #e8c97e | Nature Luxury */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2e1503;
  --primary-light: #4a2508;
  --primary-dark: #1a0c02;
  --accent: #e8c97e;
  --accent-light: #f0d99a;
  --accent-dark: #c9a84c;
  --cream: #faf6ef;
  --warm-white: #f5ede0;
  --text: #2a1a0a;
  --text-muted: #7a5c3a;
  --border: #d4b896;
  --shadow: rgba(46,21,3,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

/* ── DEMO BAR ─────────────────────────────── */
.demo-bar {
  background: #1a1a2e;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-family: system-ui, sans-serif;
}
.demo-bar a { color: #7dd3fc; }
.demo-bar a.cta { color: #fbbf24; font-weight: 600; }

/* ── NAVBAR ───────────────────────────────── */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Checkbox hack mobile nav */
#nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 700px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(232,201,126,0.1);
  }
  #nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, #3d2008 100%);
  color: var(--warm-white);
  padding: 80px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(232,201,126,0.12) 0%, transparent 70%),
    radial-gradient(circle 300px at 80% 20%, rgba(232,201,126,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Tree silhouettes */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.hero-trees {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,201,126,0.18);
  border: 1px solid rgba(232,201,126,0.4);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 em { color: var(--accent); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: rgba(250,246,239,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--primary-dark);
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: rgba(232,201,126,0.1); }

/* ── SECTION COMMON ───────────────────────── */
section { padding: 64px 20px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
}

/* ── FEATURE CARDS ────────────────────────── */
.features { background: var(--warm-white); }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(46,21,3,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(46,21,3,0.13);
}
.feat-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.feat-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── PAKET PREVIEW CARDS ──────────────────── */
.paket-preview { background: var(--cream); }
.cards-paket {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.paket-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(46,21,3,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.paket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(46,21,3,0.14);
}
.paket-card.featured {
  border-color: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}

.paket-thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.thumb-tent {
  background: linear-gradient(160deg, #5c3d1e 0%, #2e1503 60%, #1a0c02 100%);
}
.thumb-bubble {
  background: linear-gradient(160deg, #1a2e50 0%, #2e4a6e 50%, #1a3050 100%);
}
.thumb-dome {
  background: linear-gradient(160deg, #1e3a1e 0%, #2d5a2d 50%, #1a3a1a 100%);
}

/* SVG tent illustration via CSS */
.paket-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 60px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.7;
}

.paket-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}

.paket-body { padding: 22px 22px 24px; }
.paket-name { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.paket-dur { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.paket-price { font-size: 1.5rem; font-weight: 800; color: var(--accent-dark); margin-bottom: 6px; }
.paket-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.paket-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.paket-body .btn { width: 100%; text-align: center; }

/* ── TESTIMONI ─────────────────────────────── */
.testimoni { background: var(--primary); color: var(--warm-white); }
.testimoni .section-title { color: var(--accent); }
.testimoni .section-sub { color: rgba(250,246,239,0.7); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,201,126,0.2);
  border-radius: 14px;
  padding: 28px 24px;
}
.testi-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 0.93rem; line-height: 1.7; color: rgba(250,246,239,0.9); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--primary-dark); font-size: 1rem;
  flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 0.9rem; color: var(--accent-light); }
.testi-info span { font-size: 0.8rem; color: rgba(250,246,239,0.6); }

/* ── CTA SECTION ───────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  text-align: center;
  padding: 64px 20px;
}
.cta-section h2 { font-size: clamp(1.5rem,3.5vw,2.1rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 12px; }
.cta-section p { color: var(--primary); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--primary); color: var(--accent); }
.cta-section .btn-primary:hover { background: var(--primary-dark); }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: rgba(250,246,239,0.7);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; font-size: 1.1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(250,246,239,0.6); }
.footer-col h4 { color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(250,246,239,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(232,201,126,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250,246,239,0.4);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── PAKET PAGE ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--warm-white);
  padding: 56px 20px 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(250,246,239,0.8); max-width: 520px; margin: 0 auto; }

.paket-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.paket-full-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(46,21,3,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.paket-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(46,21,3,0.14);
}
.paket-full-card.best {
  border: 2px solid var(--accent-dark);
}
.paket-full-thumb {
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-1 { background: linear-gradient(135deg, #5c3d1e, #2e1503); }
.bg-2 { background: linear-gradient(135deg, #1e3550, #2e5080); }
.bg-3 { background: linear-gradient(135deg, #1e3a1e, #2d5a2d); }
.bg-4 { background: linear-gradient(135deg, #3a2010, #6b3a1e); }
.bg-5 { background: linear-gradient(135deg, #1a2a40, #2a4a70); }
.bg-6 { background: linear-gradient(135deg, #2a1a40, #4a2a70); }

.paket-full-thumb .best-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--accent); color: var(--primary-dark);
  font-size: 0.7rem; font-weight: 800;
  padding: 4px 12px; border-radius: 12px;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.paket-full-body { padding: 24px; }
.paket-full-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.paket-dur-tag {
  display: inline-block;
  background: var(--warm-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.price-big { font-size: 1.6rem; font-weight: 800; color: var(--accent-dark); margin-bottom: 16px; }
.price-big span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

.incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.incl h4, .excl h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.incl h4 { color: #2d7a3a; }
.excl h4 { color: #c0392b; }
.incl ul, .excl ul { list-style: none; }
.incl ul li::before { content: '✓ '; color: #2d7a3a; font-weight: 700; }
.excl ul li::before { content: '✕ '; color: #c0392b; font-weight: 700; }
.incl ul li, .excl ul li { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 5px; }
.paket-full-body .btn { width: 100%; text-align: center; }

/* ── DESTINASI PAGE ────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.dest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(46,21,3,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(46,21,3,0.13);
}
.dest-thumb {
  height: 170px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.d1 { background: linear-gradient(160deg, #1e3a1e 0%, #2d5a2d 60%, #1a2e1a 100%); }
.d2 { background: linear-gradient(160deg, #1a2a40 0%, #2a4a70 60%, #1a2840 100%); }
.d3 { background: linear-gradient(160deg, #3a2010 0%, #6b3a1e 60%, #2e1503 100%); }
.d4 { background: linear-gradient(160deg, #1e2a1e 0%, #3a5a3a 60%, #1e301e 100%); }
.d5 { background: linear-gradient(160deg, #201a10 0%, #4a3a1e 60%, #2e2010 100%); }
.d6 { background: linear-gradient(160deg, #1a1a30 0%, #2a2a5a 60%, #1a1a2e 100%); }
.d7 { background: linear-gradient(160deg, #2e1503 0%, #5c3d1e 60%, #3d2008 100%); }
.d8 { background: linear-gradient(160deg, #1e3020 0%, #3a5a3e 60%, #1a2e1e 100%); }

.dest-tag {
  background: rgba(232,201,126,0.9);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.dest-body { padding: 20px 20px 22px; }
.dest-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.dest-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.dest-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.highlight-tag {
  background: var(--warm-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 10px;
}
.dest-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  float: right;
  margin-left: 12px;
  flex-shrink: 0;
}

/* ── GALERI PAGE ───────────────────────────── */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.gal-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.gal-item:hover { transform: scale(1.03); }
.gal-item:nth-child(3n+1) { grid-column: span 1; }
.gal-item:nth-child(5) { grid-column: span 2; aspect-ratio: unset; height: 220px; }
.gal-item:nth-child(9) { grid-column: span 2; aspect-ratio: unset; height: 220px; }

.gal-g1 { background: linear-gradient(135deg, #5c3d1e 0%, #2e1503 50%, #e8c97e 100%); }
.gal-g2 { background: linear-gradient(160deg, #1a2e50 0%, #2e4a6e 60%, #7dd3fc 100%); }
.gal-g3 { background: linear-gradient(135deg, #1e3a1e 0%, #2d5a2d 60%, #a8d5a8 100%); }
.gal-g4 { background: linear-gradient(135deg, #3a2010 0%, #6b3a1e 60%, #c9a84c 100%); }
.gal-g5 { background: linear-gradient(160deg, #2e1503 0%, #5c3d1e 40%, #e8c97e 70%, #fff8e8 100%); }
.gal-g6 { background: linear-gradient(135deg, #1a1a30 0%, #2a2a5a 60%, #7dd3fc 100%); }
.gal-g7 { background: linear-gradient(135deg, #1e2a1e 0%, #3a5a3a 60%, #90c090 100%); }
.gal-g8 { background: linear-gradient(160deg, #3d2008 0%, #6b3a1e 50%, #e8c97e 100%); }
.gal-g9 { background: linear-gradient(160deg, #2e1503 0%, #8b6014 40%, #e8c97e 70%, #faf6ef 100%); }
.gal-g10 { background: linear-gradient(135deg, #1e3550 0%, #2e5080 60%, #a8d0f0 100%); }
.gal-g11 { background: linear-gradient(135deg, #2a1a00 0%, #5c3d1e 50%, #c9a84c 100%); }
.gal-g12 { background: linear-gradient(160deg, #1a2e1a 0%, #2d5a2d 50%, #7aaa7a 100%); }

.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(46,21,3,0.85), transparent);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 20px 12px 10px;
  text-align: center;
}

/* CSS tent shape overlay in gallery */
.gal-item::before {
  content: '';
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 40px;
  background: rgba(232,201,126,0.35);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* ── KONTAK PAGE ───────────────────────────── */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .kontak-grid { grid-template-columns: 1fr; }
}

.kontak-info { }
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(46,21,3,0.06);
}
.info-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-row { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.info-row svg { flex-shrink: 0; margin-top: 2px; }
.info-row div strong { display: block; font-size: 0.9rem; color: var(--text); }
.info-row div span { font-size: 0.85rem; color: var(--text-muted); }

.jam-table { width: 100%; }
.jam-table tr td { padding: 5px 0; font-size: 0.88rem; }
.jam-table tr td:first-child { color: var(--text-muted); }
.jam-table tr td:last-child { font-weight: 600; color: var(--text); text-align: right; }

.map-placeholder {
  background: linear-gradient(135deg, #1e3a1e 0%, #2d5a2d 50%, #3a6e3a 100%);
  border-radius: 14px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(250,246,239,0.8);
  font-size: 0.9rem;
  margin-top: 18px;
}
.map-placeholder svg { opacity: 0.7; }

.kontak-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(46,21,3,0.09);
}
.kontak-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.kontak-form-wrap > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-dark);
  background: #fff;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

/* ── UTILITY ───────────────────────────────── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 2px;
  margin: 0 0 32px;
}
.divider.center { margin: 0 auto 32px; }

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
