/**
 * Umroh Travel Halal - Modern & Elegant Custom CSS
 * Clean, lightweight, high performance design system.
 * Zero external CSS frameworks.
 */

:root {
  /* Brand Palette - Deep Islamic Emerald & Royal Slate */
  --primary-900: #022c22;
  --primary-800: #064e3b;
  --primary-700: #047857;
  --primary-600: #059669;
  --primary-500: #10b981;
  --primary-100: #d1fae5;
  --primary-50: #ecfdf5;

  /* Luxury Gold Accent */
  --gold-700: #b45309;
  --gold-600: #d97706;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-100: #fef3c7;
  --gold-50: #fffbeb;
  --gold-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%);
  --gold-glow: 0 4px 20px rgba(245, 158, 11, 0.25);

  /* Neutrals & Dark Tones */
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  /* Surfaces & Backgrounds */
  --bg-body: #fcfcfb;
  --bg-surface: #ffffff;
  --bg-subtle: #f8fafc;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px -1px rgba(15, 23, 42, 0.06), 0 1px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 18px -2px rgba(15, 23, 42, 0.08), 0 3px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 14px 28px -4px rgba(15, 23, 42, 0.1), 0 6px 12px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.14), 0 10px 18px -4px rgba(15, 23, 42, 0.06);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--slate-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Utility Container & Layout
   ========================================================================== */
.uth-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background-color: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge.gold {
  background-color: var(--gold-50);
  color: var(--gold-700);
  border-color: var(--gold-100);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.uth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.uth-btn-primary {
  background-color: var(--primary-700);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.3);
}

.uth-btn-primary:hover {
  background-color: var(--primary-800);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
}

.uth-btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--gold-glow);
}

.uth-btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.4);
}

.uth-btn-outline {
  background-color: transparent;
  color: var(--primary-700);
  border: 2px solid var(--primary-700);
}

.uth-btn-outline:hover {
  background-color: var(--primary-700);
  color: #ffffff;
  transform: translateY(-2px);
}

.uth-btn-white {
  background-color: #ffffff;
  color: var(--primary-800);
  box-shadow: var(--shadow-md);
}

.uth-btn-white:hover {
  background-color: var(--slate-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.uth-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.uth-btn-lg {
  padding: 0.9375rem 2rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.uth-topbar {
  background-color: var(--primary-900);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.uth-topbar .uth-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gold-400);
  font-weight: 600;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-info a:hover {
  color: var(--gold-400);
}

@media (max-width: 640px) {
  .uth-topbar {
    display: none;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.uth-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.uth-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.brand-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  transition: transform var(--transition-normal);
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.08) rotate(2deg);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--primary-800);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-item a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--primary-700);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-700);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle-btn {
  display: none;
  padding: 0.5rem;
  color: var(--slate-900);
  border-radius: var(--radius-sm);
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-actions .uth-btn {
    display: none;
  }
  .menu-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ==========================================================================
   Mobile Drawer Navigation
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background-color: #ffffff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
}

.drawer-close-btn {
  padding: 0.5rem;
  color: var(--slate-500);
  border-radius: var(--radius-sm);
}

.drawer-close-btn:hover {
  color: var(--slate-900);
  background-color: var(--slate-100);
}

.drawer-menu {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  transition: all var(--transition-fast);
}

.drawer-menu a:hover,
.drawer-menu a.active {
  background-color: var(--primary-50);
  color: var(--primary-800);
}

.drawer-footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.uth-hero {
  position: relative;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #047857 100%);
  color: #ffffff;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.uth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 158, 11, 0.12) 1.5px, transparent 1.5px), radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4375rem 1.125rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: 3.125rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-title .text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.125rem;
  }
}

.hero-desc {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-desc {
    font-size: 1rem;
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Trust Stats Strip */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.hero-stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.625rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-value.gold {
  color: var(--gold-400);
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   Filterable Packages Section
   ========================================================================== */
.packages-section {
  background-color: var(--bg-body);
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-600);
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  border-color: var(--primary-600);
  color: var(--primary-700);
}

.filter-btn.active {
  background-color: var(--primary-700);
  color: #ffffff;
  border-color: var(--primary-700);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.25);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

@media (max-width: 480px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 120, 87, 0.25);
}

.card-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--slate-100);
}

.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.package-card:hover .card-thumb-img {
  transform: scale(1.05);
}

.card-badge-floating {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--primary-700);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-badge-floating.gold {
  background: var(--gold-gradient);
  color: #ffffff;
}

.card-duration-tag {
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 0.625rem;
}

.card-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--slate-200);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.spec-icon {
  color: var(--primary-600);
  flex-shrink: 0;
}

.card-pricing-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.price-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
}

.price-main-val {
  font-size: 1.4375rem;
  font-weight: 800;
  color: var(--gold-700);
  line-height: 1;
}

.card-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.625rem;
}

/* ==========================================================================
   5 Pasti Umroh Kemenag
   ========================================================================== */
.pasti-section {
  background-color: var(--primary-900);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pasti-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.pasti-section .section-title {
  color: #ffffff;
}

.pasti-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.pasti-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .pasti-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .pasti-grid {
    grid-template-columns: 1fr;
  }
}

.pasti-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.pasti-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: var(--gold-400);
}

.pasti-num {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: var(--gold-glow);
}

.pasti-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pasti-card-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* ==========================================================================
   Keunggulan / Why Choose Us
   ========================================================================== */
.features-section {
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 2.25rem 1.75rem;
  background-color: var(--slate-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  background-color: #ffffff;
  transform: translateY(-4px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-lg);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary-700);
  color: #ffffff;
}

.feature-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.625rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ==========================================================================
   Documentation & Video Facade
   ========================================================================== */
.media-section {
  background-color: var(--bg-body);
}

.media-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .media-dual-grid {
    grid-template-columns: 1fr;
  }
}

/* YouTube Video Facade (Instant 0ms initial load!) */
.video-facade-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--slate-900);
  cursor: pointer;
}

.video-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.video-facade-container:hover .video-facade-thumb {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
}

.video-facade-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 10px 36px rgba(217, 119, 6, 0.6);
}

.video-facade-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Photo Gallery Strip */
.gallery-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-mini-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-mini-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-mini-item:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   Founder / Leadership & Amanah
   ========================================================================== */
.founder-section {
  background-color: #ffffff;
}

.founder-card-box {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary-900) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .founder-card-box {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.5rem;
    gap: 2rem;
  }
}

.founder-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(245, 158, 11, 0.4);
}

.founder-photo-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-ayat-quote {
  font-style: italic;
  color: var(--gold-400);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold-400);
  padding-left: 1.25rem;
}

.founder-signature-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
}

.founder-signature-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
/* ==========================================================================
   Alur 4 Langkah Mudah Menuju Baitullah & Fasilitas Jamaah
   ========================================================================== */
.steps-section {
  background-color: var(--bg-body);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.step-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-lg);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-50) 0%, #ecfdf5 100%);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.step-card:hover .step-icon-box {
  background: var(--primary-700);
  color: #ffffff;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.step-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(4, 120, 87, 0.15);
  margin-top: auto;
}

/* All-Inclusive Facilities Standard Strip */
.facilities-banner {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(217, 119, 6, 0.3);
  position: relative;
  overflow: hidden;
}

.facilities-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.facilities-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.25rem;
  position: relative;
  z-index: 1;
}

.facilities-header-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.facilities-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.facilities-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .facilities-banner {
    padding: 2rem 1.25rem;
  }
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.07);
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-normal);
}

.facility-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  border-color: var(--gold-400);
}

.facility-icon {
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.facility-info h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.facility-info p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  background-color: #ffffff;
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-600);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question-btn:hover {
  background-color: var(--slate-50);
}

.faq-icon-arrow {
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--primary-700);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background-color: var(--slate-50);
}

.faq-answer-content {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ==========================================================================
   Layanan Jamaah Seluruh Indonesia & Kantor Konsultasi
   ========================================================================== */
.nationwide-section {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.nationwide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

@media (max-width: 1024px) {
  .nationwide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nationwide-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.nationwide-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 1.875rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.nationwide-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-md);
}

.nationwide-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  font-size: 1.375rem;
  transition: all var(--transition-normal);
}

.nationwide-card:hover .nationwide-icon-wrap {
  background: var(--primary-700);
  color: #ffffff;
}

.nationwide-card-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.nationwide-card-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Office Detail Box */
.office-detail-box {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.office-info {
  flex: 1;
  min-width: 280px;
}

.office-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.625rem;
}

.office-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.office-address {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.office-hours {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.office-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .office-detail-box {
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .office-actions {
    width: 100%;
    flex-direction: column;
  }
  .office-actions .uth-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Call to Action Banner
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 60%, #047857 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.uth-footer {
  background-color: var(--slate-950);
  color: var(--slate-400);
  padding: 4.5rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links-list a:hover {
  color: var(--gold-400);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--slate-900);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Inner Page Hero & Breadcrumbs
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 60%, #0f172a 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(217, 119, 6, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--slate-300);
  margin-bottom: 1rem;
}

.breadcrumb-trail a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-trail a:hover {
  color: #ffffff;
}

.page-hero-title {
  font-size: 2.375rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

/* ==========================================================================
   Desain & Filosofi Logo UTH
   ========================================================================== */
.filosofi-section {
  background-color: var(--bg-body);
}

.filosofi-split-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .filosofi-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.logo-showcase-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.logo-display-frame {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-display-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-logo 4s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.logo-display-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.logo-caption-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.375rem;
}

.logo-caption-sub {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}

.logo-spec-list {
  border-top: 1px solid var(--slate-200);
  padding-top: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.logo-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78125rem;
}

.logo-spec-label {
  color: var(--slate-500);
}

.logo-spec-val {
  font-weight: 700;
  color: var(--slate-800);
}

.filosofi-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filosofi-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
  display: flex;
  gap: 1.25rem;
}

.filosofi-card:hover {
  transform: translateX(4px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-md);
}

.filosofi-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.filosofi-card:hover .filosofi-card-icon {
  background: var(--primary-700);
  color: #ffffff;
}

.filosofi-card-body h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.4375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filosofi-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

.filosofi-card-body p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Visi Misi Section */
.visi-misi-section {
  background-color: #ffffff;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .visi-misi-grid {
    grid-template-columns: 1fr;
  }
}

.visi-box, .misi-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
}

.visi-box:hover, .misi-box:hover {
  border-color: var(--primary-500);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.vm-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  color: var(--primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.vm-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
}

.vm-desc {
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.7;
}

.misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0;
  margin: 0;
}

.misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.90625rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.misi-check {
  color: var(--primary-600);
  font-weight: 800;
  margin-top: 0.125rem;
}

/* ==========================================================================
   Out-Of-The-Box Modern Floating WhatsApp Widget
   ========================================================================== */
.uth-floating-wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
  pointer-events: none;
}

.uth-floating-wa-widget * {
  pointer-events: auto;
}

/* Chat Teaser Popup Card */
.wa-chat-popup {
  position: relative;
  width: 320px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(4, 120, 87, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transition: all var(--transition-normal);
}

.wa-chat-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.wa-popup-close:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: scale(1.1);
}

.wa-popup-header {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  color: #ffffff;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.wa-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border: 2px solid #064e3b;
  border-radius: 50%;
}

.wa-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wa-name-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wa-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.wa-free-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  background: var(--gold-gradient);
  color: #ffffff;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.wa-status-text {
  font-size: 0.75rem;
  color: #d1fae5;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.wa-status-pulse {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

.wa-popup-body {
  padding: 1.125rem 1.25rem;
  background: #f8fafc;
}

.wa-speech-bubble {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  padding: 0.875rem 1rem;
  border-radius: 4px 16px 16px 16px;
  font-size: 0.875rem;
  color: var(--slate-800);
  line-height: 1.55;
  box-shadow: var(--shadow-xs);
  position: relative;
}

.wa-chat-time {
  display: block;
  font-size: 0.6875rem;
  color: var(--slate-400);
  text-align: right;
  margin-top: 0.375rem;
}

.wa-quick-topics {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.wa-topic-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--slate-700);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  padding: 0.4375rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.wa-topic-chip:hover {
  background: var(--primary-50);
  border-color: var(--primary-500);
  color: var(--primary-800);
  transform: translateX(3px);
}

.wa-popup-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.wa-popup-cta-btn:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

/* Floating Trigger Pill */
.wa-floating-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4375rem 0.625rem 0.4375rem 0.4375rem;
  background: #ffffff;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(37, 211, 102, 0.25);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
}

.wa-floating-trigger:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2), 0 6px 18px rgba(37, 211, 102, 0.35);
  border-color: #25d366;
}

.wa-trigger-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.wa-trigger-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-500);
}

.wa-trigger-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background-color: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-trigger-text {
  display: flex;
  flex-direction: column;
}

.wa-trigger-top {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.wa-live-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
}

.wa-trigger-status {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wa-tag-free {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 0.0625rem 0.375rem;
  border-radius: var(--radius-full);
}

.wa-trigger-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}

.wa-trigger-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 3s infinite;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
  .uth-floating-wa-widget {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .wa-chat-popup {
    width: 290px;
  }
  .wa-tag-free {
    display: none;
  }
}
