/* ============================================
   ELHAKIM - MAIN STYLESHEET
   Color: Dark Red #8B1A1A, Gold #C9A84C
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #8B1A1A;
  --primary-dark: #6B1010;
  --primary-light: #A52020;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #1A1A1A;
  --gray: #6c757d;
  --light-gray: #F8F9FA;
  --white: #FFFFFF;
  --border: #E5E5E5;
  --shadow: 0 4px 24px rgba(139,26,26,0.10);
  --shadow-lg: 0 12px 40px rgba(139,26,26,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; }
.section-title { font-size: 2rem; color: var(--dark); margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gray); font-size: 1rem; margin-bottom: 2.5rem; }
.text-primary-custom { color: var(--primary) !important; }
.text-gold { color: var(--gold); }
a { text-decoration: none; color: inherit; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-elhakim {
  background: var(--white);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-elhakim .navbar-brand img { height: 50px; }
.navbar-elhakim .navbar-brand .brand-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.navbar-elhakim .brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}
.navbar-elhakim .brand-tagline { font-size: 0.65rem; color: var(--gray); }

.nav-link-custom {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
  transition: var(--transition);
  border-radius: 6px;
  position: relative;
}
.nav-link-custom:hover, .nav-link-custom.active { color: var(--primary) !important; }
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link-custom:hover::after { width: 70%; }

/* Dropdown */
.dropdown-menu-custom {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 220px;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-item-custom {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.5rem;
}
.dropdown-item-custom:hover {
  background: rgba(139,26,26,0.08);
  color: var(--primary);
}
.dropdown-item-custom .icon { width: 20px; color: var(--primary); }
.nav-btn-konsultasi {
  background: var(--primary);
  color: white !important;
  border-radius: 25px !important;
  padding: 0.45rem 1.2rem !important;
  font-size: 0.85rem !important;
}
.nav-btn-konsultasi:hover { background: var(--primary-dark) !important; color: white !important; }
.nav-btn-konsultasi::after { display: none; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../img/hero-bg.jpg');
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.88) 0%, rgba(26,26,26,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions { animation: fadeInUp 0.8s ease 0.3s both; }
.hero-stats {
  display: flex; gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139,26,26,0.3);
}
.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-red {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-outline-red:hover { background: var(--primary); color: white; }

/* ============================================
   SECTION STYLES
   ============================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background: rgba(139,26,26,0.08);
  border-radius: 20px;
}
.divider-red {
  width: 50px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

/* ============================================
   PAKET CARDS
   ============================================ */
.paket-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,26,26,0.2);
}
.paket-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.paket-card:hover .paket-card-img { transform: scale(1.03); }
.paket-card-img-wrap { overflow: hidden; position: relative; }
.paket-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.paket-badge-gold {
  background: var(--gold); color: var(--dark);
}
.paket-card-body { padding: 1.25rem; }
.paket-card-kategori { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.paket-card-title { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--dark); }
.paket-info { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.paket-info-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--gray); }
.paket-info-item i { color: var(--primary); font-size: 0.85rem; }
.paket-price { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); font-weight: 700; margin-bottom: 0.3rem; }
.paket-price small { font-family: var(--font-body); font-size: 0.75rem; color: var(--gray); font-weight: 400; }
.paket-hotel { font-size: 0.75rem; color: var(--gray); margin-bottom: 1rem; }
.paket-card-footer { padding: 0 1.25rem 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ============================================
   KATEGORI GRID
   ============================================ */
.kategori-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kategori-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-height: 200px;
}
.kategori-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.kategori-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.kategori-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,26,26,0.9) 0%, transparent 60%);
}
.kategori-card-content {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.kategori-card-title { color: white; font-size: 1.15rem; margin-bottom: 0.5rem; }
.kategori-card-desc { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-bottom: 1rem; }

/* ============================================
   LEGALITAS SECTION
   ============================================ */
.legalitas-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}
.legalitas-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
}
.legalitas-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.legalitas-item .title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.legalitas-item .subtitle { font-size: 0.75rem; opacity: 0.8; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--light-gray); }
.stat-box {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--primary);
}
.stat-box .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
}
.stat-box .label { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

/* ============================================
   GALERI
   ============================================ */
.galeri-grid {
  columns: 4;
  column-gap: 1rem;
}
.galeri-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeri-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.galeri-item:hover img { transform: scale(1.05); }
.galeri-item-overlay {
  position: absolute; inset: 0;
  background: rgba(139,26,26,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.galeri-item:hover .galeri-item-overlay { opacity: 1; }
.galeri-item-overlay i { color: white; font-size: 2rem; }

@media (max-width: 768px) { .galeri-grid { columns: 2; } }
@media (max-width: 480px) { .galeri-grid { columns: 1; } }

/* ============================================
   TESTIMONI
   ============================================ */
.testimoni-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  height: 100%;
  transition: var(--transition);
}
.testimoni-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimoni-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.testimoni-text { color: var(--gray); font-style: italic; margin-bottom: 1.25rem; font-size: 0.9rem; line-height: 1.8; }
.testimoni-author { display: flex; align-items: center; gap: 0.75rem; }
.testimoni-avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimoni-name { font-weight: 600; font-size: 0.9rem; }
.testimoni-keterangan { font-size: 0.75rem; color: var(--primary); }

/* ============================================
   ARTIKEL CARDS
   ============================================ */
.artikel-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.artikel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.artikel-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.artikel-card:hover .artikel-card-img { transform: scale(1.03); }
.artikel-card-body { padding: 1.25rem; }
.artikel-card-kategori { font-size: 0.72rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.artikel-card-title { font-size: 1rem; margin: 0.4rem 0 0.6rem; line-height: 1.5; }
.artikel-card-excerpt { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; }
.artikel-card-meta { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 1rem; }

/* ============================================
   KENAPA ELHAKIM
   ============================================ */
.keunggulan-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.keunggulan-icon {
  width: 50px; height: 50px;
  background: rgba(139,26,26,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.3rem;
}
.keunggulan-text h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.keunggulan-text p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
}
.footer-top { padding: 60px 0 40px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 1.5rem; color: white; }
.footer-brand .tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 1rem; line-height: 1.8; }
.footer h5 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-item i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-sosmed { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-sosmed a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer-sosmed a:hover { background: var(--primary); color: white; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legalitas {
  background: rgba(255,255,255,0.03);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-legalitas span { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0 0.75rem; }

/* ── Footer 3-Row Layout ── */
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 2rem 0; }

/* Row 1 - Brand + Program + Informasi */
.footer-row-1 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-col-links { min-width: 140px; }

/* Row 3 - Kontak & Maps */
.footer-row-3 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-col-kontak {}
.footer-col-maps {}
.footer-maps-wrap { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.footer-maps-wrap iframe { display: block; }

/* Alamat link */
.footer-contact-link-map { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; line-height: 1.6; }
.footer-contact-link-map:hover { color: var(--gold-light); text-decoration: underline; }

/* Mobile */
@media (max-width: 768px) {
  .footer-row-1 { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-row-3 { grid-template-columns: 1fr; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9999;
}
.wa-float-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  animation: waPulse 2.5s infinite;
}
.wa-float-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 25px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================
   PAGE SPECIFIC
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0 60px;
  color: white;
}
.page-hero h1 { color: white; font-size: 2.2rem; }
.page-hero p { color: rgba(255,255,255,0.8); }
.breadcrumb-custom a { color: rgba(255,255,255,0.7); }
.breadcrumb-custom .active { color: var(--gold-light); }

.detail-paket-header { padding: 40px 0; }
.detail-paket-img {
  border-radius: var(--radius-lg);
  width: 100%; height: 400px;
  object-fit: cover;
}
.detail-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky; top: 80px;
}
.price-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 1.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1.25rem;
}
.price-box .label { font-size: 0.8rem; opacity: 0.8; }
.price-box .price { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.price-box .note { font-size: 0.72rem; opacity: 0.75; margin-top: 0.25rem; }

.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.info-list li:last-child { border-bottom: none; }
.info-list li i { color: var(--primary); width: 18px; flex-shrink: 0; }

.include-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 1rem; }
.exclude-box { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 1rem; }
.include-box h6, .exclude-box h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.75rem; }
.include-box h6 { color: #16a34a; }
.exclude-box h6 { color: #dc2626; }

/* ============================================
   KEBERANGKATAN TABLE
   ============================================ */
.keberangkatan-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.keberangkatan-table th {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.keberangkatan-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.keberangkatan-table tr:last-child td { border-bottom: none; }
.keberangkatan-table tr:hover td { background: var(--light-gray); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .kategori-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.2rem; }
  .galeri-grid { columns: 3; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-section { min-height: 70vh; }
  .kategori-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .hero-stat .number { font-size: 1.4rem; }
  .galeri-grid { columns: 2; }
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-light-custom { background: var(--light-gray); }
.card-hover { transition: var(--transition); }
.card-hover:hover { transform: translateY(-4px); }
.text-muted-custom { color: var(--gray); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 95px; right: 24px;
  width: 40px; height: 40px;
  background: var(--primary);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  font-size: 0.9rem;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* ============================================
   TESTIMONI v2 — Photo Card (Clean Rewrite)
   ============================================ */
.testimoni-card-v2 {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.testimoni-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(139,26,26,0.14);
}

/* === FOTO AREA === */
.tcard-photo {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  flex: none;
}
.tcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.testimoni-card-v2:hover .tcard-photo img {
  transform: scale(1.05);
}

/* placeholder inisial (tanpa foto) */
.tcard-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8B1A1A 0%, #A52020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  font-family: 'Playfair Display', serif;
}

/* overlay gradien di bawah foto */
.tcard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 65%, transparent 100%);
}
.tcard-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin-bottom: 2px;
}
.tcard-ket {
  color: #F5D78B;
  font-size: 0.75rem;
  font-weight: 500;
}

/* badge bintang pojok kanan atas */
.tcard-stars {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 0.22rem 0.55rem;
  display: flex;
  gap: 1px;
  align-items: center;
}
.tcard-stars i {
  color: #F5C518;
  font-size: 0.65rem;
}

/* === BODY TEKS === */
.tcard-body {
  padding: 1.1rem 1.25rem 1.4rem;
}
.tcard-quote {
  font-size: 1.6rem;
  line-height: 1;
  color: #8B1A1A;
  opacity: 0.18;
  margin-bottom: 0.4rem;
}
.tcard-text {
  color: #4B5563;
  font-size: 0.86rem;
  line-height: 1.85;
  font-style: italic;
  margin: 0;
}

/* ============================================
   VISITOR STATS BAR
   ============================================ */
.visitor-stats-bar {
  background: linear-gradient(135deg, #6B0F0F 0%, #8B1A1A 100%);
  border-top: 3px solid #C9A84C;
  padding: 1.25rem 0;
}
.visitor-stats-bar .container {
  text-align: center;
}
.vstats-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}
.vstat-block {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 2rem;
}
.vstat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5D78B;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.vstat-text { text-align: left; }
.vstat-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.vstat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 3px;
}
.vstat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .vstats-row { gap: 0; }
  .vstat-block { padding: 0.5rem 1rem; }
  .vstat-sep { display: none; }
  .vstat-number { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .vstats-row { flex-direction: column; }
  .vstat-block { width: 100%; justify-content: center; }
}
