/**
 * 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-950: #011a14;
  --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);

  /* Color Aliases for legacy & generator compatibility */
  --color-slate-950: var(--slate-950);
  --color-slate-900: var(--slate-900);
  --color-slate-800: var(--slate-800);
  --color-slate-700: var(--slate-700);
  --color-slate-600: var(--slate-600);
  --color-slate-500: var(--slate-500);
  --color-slate-400: var(--slate-400);
  --color-slate-300: var(--slate-300);
  --color-slate-200: var(--slate-200);
  --color-slate-100: var(--slate-100);
  --color-slate-50: var(--slate-50);

  --color-emerald-950: var(--primary-950);
  --color-emerald-900: var(--primary-900);
  --color-emerald-800: var(--primary-800);
  --color-emerald-700: var(--primary-700);
  --color-emerald-600: var(--primary-600);
  --color-emerald-500: var(--primary-500);
  --color-emerald-100: var(--primary-100);
  --color-emerald-50: var(--primary-50);

  --color-gold-500: var(--gold-500);
  --color-gold-600: var(--gold-600);
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.uth-container,
.section-container,
.hero-container,
.stats-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .uth-container,
  .section-container,
  .hero-container,
  .stats-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

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

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

.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);
}

.uth-btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Founder Card Grid (used in Kontak page)
   ========================================================================== */
.founder-card-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary-900) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

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

.founder-card-grid .founder-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
}

.founder-avatar {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(245, 158, 11, 0.4);
  display: block;
  object-fit: cover;
}

.founder-badge-verified {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--emerald-600);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.founder-content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Footer supplemental
   ========================================================================== */
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-400);
  margin-bottom: 1.25rem;
}

.footer-permit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-400);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Section utility classes
   ========================================================================== */
.uth-section {
  padding: 4.5rem 0;
}

@media (max-width: 768px) {
  .uth-section {
    padding: 3rem 0;
  }
}

.section-bg-light {
  background-color: #f1f5f9;
}

/* ==========================================================================
   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-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

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

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

.text-gold-gradient {
  background: var(--gold-gradient, linear-gradient(135deg, #F59E0B, #D97706));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.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);
}

.founder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-400);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.founder-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  border-left: 3px solid var(--gold-400);
  padding-left: 1.25rem;
  margin: 0 0 1.5rem 0;
}

.founder-meta {
  margin-bottom: 0.75rem;
}

.founder-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-300);
  margin: 0 0 0.25rem 0;
}

.founder-role {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}

.founder-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0.5rem;
}

.f-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(4, 120, 87, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #a7f3d0;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ==========================================================================
   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: radial-gradient(circle at 20% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
              linear-gradient(135deg, #022c22 0%, #064e3b 50%, #042f24 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(217, 119, 6, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.cta-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.15);
}

.cta-badge-wrap .dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.cta-banner-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cta-banner-title {
    font-size: 2rem;
  }
}

.cta-banner-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 640px) {
  .cta-banner-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .cta-btn-wa,
  .cta-btn-kontak {
    width: 100%;
    justify-content: center;
  }
}

.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.05rem 2.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.cta-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  filter: brightness(1.08);
}

.cta-btn-kontak {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #064e3b !important;
  border: 2px solid #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.05rem 2.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.cta-btn-kontak:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #78350f !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   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;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.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;
  }
}

/* ==========================================================================
   Contact Page Specific Modules
   ========================================================================== */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(4, 120, 87, 0.15);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--emerald-600));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--emerald-500);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.12), rgba(217, 119, 6, 0.15));
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  color: #ffffff;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.contact-card-highlight {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--emerald-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.contact-card-desc {
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Interactive Consultation Form Section */
.consultation-form-wrapper {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #022c22 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(217, 119, 6, 0.3);
  position: relative;
  overflow: hidden;
}

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

.consultation-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .consultation-form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .consultation-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

.consult-form-intro h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.consult-form-intro p {
  color: var(--slate-200);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.consult-perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: #ffffff;
}

.consult-perk-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #022c22;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
}

.consult-form-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  color: var(--slate-900);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .consult-form-box {
    padding: 1.75rem 1.25rem;
  }
}

.consult-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--emerald-950);
  margin-bottom: 0.35rem;
}

.consult-form-subtitle {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}

.uth-form-group {
  margin-bottom: 1.15rem;
}

.uth-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 0.4rem;
}

.uth-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .uth-form-row-2 {
    grid-template-columns: 1fr;
  }
}

.uth-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--slate-800);
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.uth-form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18);
}

textarea.uth-form-control {
  resize: vertical;
  min-height: 90px;
}

.uth-form-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
}

.uth-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #22c35e 0%, #0d7a6e 100%);
}

/* Map & Location Section */
.location-map-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

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

.map-embed-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(4, 120, 87, 0.2);
  min-height: 380px;
  position: relative;
  background: #f1f5f9;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.location-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(4, 120, 87, 0.15);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-meta-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-meta-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(4, 120, 87, 0.1);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-meta-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.location-meta-text p {
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* Security Payment Notice Card */
.security-payment-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-left: 5px solid var(--emerald-600);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

@media (max-width: 640px) {
  .security-payment-card {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
  }
}

.security-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--emerald-600);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--emerald-950);
  margin-bottom: 0.4rem;
}

.security-content p {
  font-size: 0.925rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Modern Blog & Education Section Styles
   ========================================================================== */

.blog-section {
  background-color: var(--bg-subtle);
  padding: 3.5rem 0 5.5rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.75rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Category Filter Bar */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.blog-filter-pill {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-xs);
}

.blog-filter-pill:hover {
  border-color: var(--primary-500);
  color: var(--primary-700);
  transform: translateY(-1px);
}

.blog-filter-pill.active {
  background: var(--primary-800);
  color: #ffffff;
  border-color: var(--primary-800);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.25);
}

.blog-filter-pill .pill-count {
  font-size: 0.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.blog-filter-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.22);
}

/* Featured Article Card */
.blog-featured-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 42% 58%;
  transition: all var(--transition-normal);
}

.blog-featured-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-400);
  transform: translateY(-3px);
}

@media (max-width: 860px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
}

.blog-featured-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-media img {
  transform: scale(1.05);
}

.blog-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(180, 83, 9, 0.3);
}

.blog-featured-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .blog-featured-content {
    padding: 1.5rem;
  }
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.blog-featured-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-featured-title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.blog-featured-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.blog-featured-title a:hover {
  color: var(--primary-700);
}

.blog-featured-excerpt {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid var(--slate-100);
}

.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.15rem;
  background: var(--primary-50);
  color: var(--primary-800);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-200);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.blog-featured-cta:hover {
  background: var(--primary-800);
  color: #ffffff;
  border-color: var(--primary-800);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
  transform: translateX(2px);
}

/* Articles Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Blog Article Card */
.blog-card {
  background: #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;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-400);
  transform: translateY(-4px);
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-color: var(--slate-100);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(2, 44, 34, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-bottom: 0.65rem;
}

.blog-card-meta .meta-date {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--slate-500);
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--primary-700);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.blog-author-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.blog-author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--slate-200);
  flex-shrink: 0;
}

.blog-author-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-700);
  white-space: nowrap;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-700);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-read-link:hover {
  color: var(--gold-600);
  gap: 0.55rem;
}

/* Modern Pagination */
.blog-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.blog-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 0.875rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.blog-page-btn:hover {
  border-color: var(--primary-600);
  color: var(--primary-700);
  background: var(--primary-50);
}

.blog-page-btn.active {
  background: var(--primary-800);
  color: #ffffff;
  border-color: var(--primary-800);
  box-shadow: 0 4px 10px rgba(6, 78, 59, 0.25);
}

.blog-page-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  background: var(--slate-100);
  border-color: var(--slate-200);
  color: var(--slate-400);
}

/* ==========================================================================
   Blog Sidebar Widgets
   ========================================================================== */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.sidebar-widget-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--slate-100);
  position: relative;
}

.sidebar-widget-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--gold-500);
}

.sidebar-widget-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0;
}

/* Search Box Widget */
.sidebar-search-box {
  position: relative;
}

.sidebar-search-input {
  width: 100%;
  padding: 0.75rem 2.85rem 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  background-color: var(--slate-50);
  color: var(--slate-800);
  transition: all var(--transition-fast);
}

.sidebar-search-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.sidebar-search-submit {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-700);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.sidebar-search-submit:hover {
  background: var(--primary-800);
}

/* Popular Programs Sidebar */
.sidebar-programs-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sidebar-program-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-fast);
}

.sidebar-program-item:hover {
  background: #ffffff;
  border-color: var(--primary-400);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.sidebar-program-thumb {
  width: 64px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-program-info {
  flex: 1;
  min-width: 0;
}

.sidebar-program-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-program-title a {
  color: inherit;
}

.sidebar-program-price {
  font-size: 0.785rem;
  font-weight: 800;
  color: var(--gold-600);
}

/* Consultant Sidebar Card */
.sidebar-consultant-card {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.2);
  box-shadow: var(--shadow-md);
}

.sidebar-consultant-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.sidebar-consultant-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.sidebar-consultant-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-consultant-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.sidebar-consultant-role {
  font-size: 0.75rem;
  color: var(--gold-300);
  font-weight: 600;
}

.sidebar-consultant-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-top: 0.3rem;
}

.sidebar-consultant-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.sidebar-consultant-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.sidebar-consultant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.45);
}

/* Categories Sidebar List */
.sidebar-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--slate-700);
  transition: all var(--transition-fast);
}

.sidebar-category-link:hover {
  background-color: var(--slate-100);
  color: var(--primary-700);
  padding-left: 1rem;
}

.sidebar-category-count {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--slate-200);
  color: var(--slate-600);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  transition: all var(--transition-fast);
}

.sidebar-category-link:hover .sidebar-category-count {
  background-color: var(--primary-100);
  color: var(--primary-800);
}

/* Download Lead Magnet Box */
.sidebar-download-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.sidebar-download-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.sidebar-download-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.4rem;
}

.sidebar-download-desc {
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sidebar-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--primary-800);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.sidebar-download-btn:hover {
  background: var(--primary-900);
  transform: translateY(-1px);
}

/* ==========================================================================
   Single Article Detail Page Styles
   ========================================================================== */

.article-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 60%, var(--primary-800) 100%);
  color: #ffffff;
  padding: 3.5rem 0 3.75rem;
  overflow: hidden;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.article-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.article-breadcrumbs a:hover {
  color: var(--gold-400);
}

.article-breadcrumbs .sep {
  opacity: 0.5;
}

.article-breadcrumbs .current {
  color: var(--gold-400);
  font-weight: 600;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-hero-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
}

.article-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: #ffffff;
}

.article-meta-badge.category-pill {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(180, 83, 9, 0.3);
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Article Main Card */
.article-detail-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  padding: 2.75rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .article-detail-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
  }
}

.article-featured-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}

.article-featured-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-image-caption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-style: italic;
}

/* Article Typography Body */
.article-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--slate-700);
}

.article-body p {
  margin-bottom: 1.6rem;
}

.article-body .lead-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 1.85rem;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.35;
  margin: 2.25rem 0 1rem;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.4;
  margin: 1.75rem 0 0.85rem;
}

/* Quote Card */
.article-quote-card {
  position: relative;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-left: 4px solid var(--primary-600);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-xs);
}

.article-quote-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--primary-950);
  margin-bottom: 0.75rem;
  position: relative;
}

.article-quote-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-800);
}

/* Key Stats Infographic Box */
.article-stats-infobox {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin: 2.25rem 0;
}

.article-stats-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--slate-200);
}

.article-stats-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--slate-900);
}

.article-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.article-stat-mini-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.125rem 1rem;
  border: 1px solid var(--slate-200);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.article-stat-mini-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.article-stat-mini-val.gold {
  color: var(--gold-600);
}

.article-stat-mini-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--slate-600);
  line-height: 1.35;
}

/* Share Section */
/* =====================================================
   ARTICLE SHARE CARD — Premium Redesign
   ===================================================== */
.article-share-bar,
.article-share-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 55%, #065f46 100%);
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  margin: 2.75rem 0;
  box-shadow: 0 8px 32px rgba(4, 120, 87, 0.2), 0 2px 8px rgba(0,0,0,0.08);
}

.article-share-bar::before,
.article-share-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative kaaba silhouette top-right */
.article-share-bar::after,
.article-share-strip::after {
  content: '🕋';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}

.article-share-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.article-share-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.article-share-label .share-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(212, 175, 55, 0.85);
}

.article-share-label .share-eyebrow svg {
  flex-shrink: 0;
  color: var(--gold-400, #D4AF37);
}

.article-share-label .share-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.article-share-label .share-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.article-share-btns {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.share-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.share-btn:hover::before {
  background: rgba(255,255,255,0.12);
}

.share-btn-wa {
  background: linear-gradient(135deg, #1da851 0%, #25D366 100%);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.share-btn-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.share-btn-fb {
  background: linear-gradient(135deg, #1464c9 0%, #1877F2 100%);
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.35);
}

.share-btn-fb:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.share-btn-copy {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.share-btn-copy:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(255, 255, 255, 0.45);
}

.share-btn-copy.copied {
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.6);
  color: #fde68a;
}

@media (max-width: 640px) {
  .article-share-bar,
  .article-share-strip {
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
  }

  .article-share-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-share-btns {
    width: 100%;
  }

  .share-btn {
    flex: 1;
    justify-content: center;
  }

  .article-share-bar::after,
  .article-share-strip::after {
    font-size: 2.5rem;
    right: 1rem;
  }
}

/* Author Box */
.article-author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--slate-200);
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .article-author-card {
    flex-direction: column;
    text-align: center;
  }
}

.article-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.article-author-info h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .article-author-info h4 {
    justify-content: center;
  }
}

.article-author-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.article-author-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

/* Article Prev/Next Navigation */
.article-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.article-nav-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.article-nav-card:hover {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.article-nav-dir {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-500);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.article-nav-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
}

.article-nav-card:hover .article-nav-title {
  color: var(--primary-700);
}

/* Related Articles Grid */
.related-articles-section {
  padding: 3.5rem 0 4.5rem;
  background-color: #ffffff;
  border-top: 1px solid var(--slate-200);
}

.related-articles-header {
  margin-bottom: 2rem;
}

/* ==========================================================================
   Package Detail Hubs & Featured Cards
   ========================================================================== */
.package-card.featured {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  display: grid;
  grid-template-columns: 460px 1fr;
  transition: all var(--transition-normal);
}

@media (max-width: 960px) {
  .package-card.featured {
    grid-template-columns: 1fr;
  }
}

.package-card.featured:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-500);
}

.package-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--gold-glow);
  letter-spacing: 0.3px;
}

.package-thumb-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  background-color: var(--slate-900);
  overflow: hidden;
}

.package-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card.featured:hover .package-thumb-wrap img {
  transform: scale(1.04);
}

.package-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 640px) {
  .package-body {
    padding: 1.5rem;
  }
}

.package-meta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}

.package-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .package-title {
    font-size: 1.4rem;
  }
}

.package-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding: 0.85rem 1.25rem;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-600);
  width: fit-content;
}

.price-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-950);
  letter-spacing: -0.5px;
}

.price-sub {
  color: var(--slate-600);
  font-size: 0.95rem;
  font-weight: 600;
}

.package-highlights-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.85;
}

.package-highlights-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
}

.package-highlights-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-600);
  font-weight: 800;
}

/* Breadcrumb Trail in Page Hero */
.breadcrumb-trail,
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-400);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb-trail a,
.breadcrumb-nav a {
  color: var(--gold-400);
  transition: color var(--transition-fast);
}

.breadcrumb-trail a:hover,
.breadcrumb-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li + li::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--slate-400);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-400);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 800px;
  line-height: 1.7;
}

/* Trust Stats Strip */
.trust-stats-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--slate-200);
  padding: 1.75rem 0;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-800);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--slate-200);
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
}

/* Package Specification Grid */
.package-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.spec-card-box {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.spec-card-box:hover {
  border-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.spec-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.spec-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.spec-card-desc {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Inclusion / Exclusion Cards */
.inc-exc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.inc-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.inc-card h3 {
  color: #166534;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.exc-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.exc-card h3 {
  color: #991b1b;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Itinerary Table Container */
.itinerary-wrap {
  margin-bottom: 3rem;
}

.itinerary-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
  text-align: center;
}

.itinerary-table-container {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.itinerary-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.itinerary-table th {
  padding: 1rem 1.25rem;
  background: var(--slate-50);
  border-bottom: 2px solid var(--slate-200);
  color: var(--slate-700);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.itinerary-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: top;
}

.itinerary-day-col {
  font-weight: 700;
  color: var(--primary-800);
  white-space: nowrap;
}

.itinerary-title-col {
  font-weight: 700;
  color: var(--slate-900);
}

.itinerary-desc-col {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Requirements Box */
.requirements-box {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.requirements-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.req-item-title {
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 0.35rem;
}

.req-item-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Drawer navigation backward-compatibility */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.drawer-nav a,
.drawer-link {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  color: var(--slate-800);
  font-weight: 600;
  font-size: 0.9375rem;
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.drawer-nav a:hover,
.drawer-link:hover,
.drawer-nav a.active,
.drawer-link.active {
  background: var(--primary-50);
  color: var(--primary-700);
  border-left-color: var(--primary-600);
}

/* ==========================================================================
   Gallery Navigation Segmented Control / Tab Pills
   ========================================================================== */
.gallery-nav-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 3rem;
  padding: 0 1rem;
}

.gallery-nav-pills {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(4, 120, 87, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.gallery-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--slate-700);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.gallery-pill-btn .pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.gallery-pill-btn:hover {
  color: var(--primary-800);
  background: var(--primary-50);
  transform: translateY(-1px);
}

.gallery-pill-btn:hover .pill-icon {
  transform: scale(1.15);
}

.gallery-pill-btn.active {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 60%, #047857 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.35);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.gallery-pill-btn.active .pill-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-pill-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(4, 120, 87, 0.45);
}

@media (max-width: 640px) {
  .gallery-nav-pills {
    width: 100%;
    flex-direction: column;
    gap: 0.4rem;
    border-radius: var(--radius-lg);
    padding: 0.5rem;
  }
  .gallery-pill-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   YouTube Channel Feature Showcase Card (Harmonized with UTH Emerald Theme)
   ========================================================================== */
.yt-channel-card {
  position: relative;
  background: radial-gradient(circle at 95% 10%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
              linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: var(--radius-2xl, 24px);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 12px 32px rgba(4, 120, 87, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  margin-top: 3.5rem;
  overflow: hidden;
}

.yt-channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #064e3b 0%, #047857 50%, var(--gold-400) 100%);
}

.yt-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.yt-card-content {
  flex: 1;
  text-align: left;
}

.yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.25);
  color: #065f46;
  font-size: 0.78125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.yt-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e11d48;
  animation: pulse-rose 1.8s infinite;
}

@keyframes pulse-rose {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(225, 29, 72, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.yt-card-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.yt-card-desc {
  color: var(--slate-600);
  font-size: 0.96875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.yt-topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.yt-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid rgba(4, 120, 87, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #065f46;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.yt-action-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.yt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 65%, #047857 100%);
  color: #ffffff !important;
  font-size: 0.96875rem;
  font-weight: 700;
  padding: 0.9rem 1.65rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 6px 18px rgba(4, 120, 87, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.yt-btn-primary .yt-play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb7185;
  transition: transform 0.2s ease, background 0.2s ease;
}

.yt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.4);
  background: linear-gradient(135deg, #033a2e 0%, #08634c 65%, #059669 100%);
  border-color: var(--gold-400);
}

.yt-btn-primary:hover .yt-play-icon {
  transform: scale(1.1);
  background: rgba(225, 29, 72, 0.25);
  color: #ffffff;
}

.yt-sub-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
}

@media (max-width: 860px) {
  .yt-card-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
  }
  .yt-card-content {
    text-align: center;
  }
  .yt-card-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .yt-topics-tags {
    justify-content: center;
  }
  .yt-channel-card {
    padding: 2.25rem 1.5rem;
  }
  .yt-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Social Media Feature Showcase Card (Harmonized with UTH Emerald & Gold)
   ========================================================================== */
.social-showcase-card {
  position: relative;
  background: radial-gradient(circle at 95% 10%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
              linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: var(--radius-2xl, 24px);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 12px 32px rgba(4, 120, 87, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  margin-top: 3.5rem;
  overflow: hidden;
}

.social-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #064e3b 0%, #047857 50%, var(--gold-400) 100%);
}

.social-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.social-card-content {
  flex: 1;
  text-align: left;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.25);
  color: #065f46;
  font-size: 0.78125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.social-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold-500);
  animation: pulse-gold 1.8s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.social-card-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.social-card-desc {
  color: var(--slate-600);
  font-size: 0.96875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.social-topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid rgba(4, 120, 87, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #065f46;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.social-action-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-width: 250px;
}

.social-btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #1877f2 !important;
  border: 1.5px solid rgba(24, 119, 242, 0.35);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.social-btn-facebook:hover {
  background: #f0f6ff;
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.18);
}

.social-btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 65%, #047857 100%);
  color: #ffffff !important;
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(4, 120, 87, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.social-btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.4);
  background: linear-gradient(135deg, #033a2e 0%, #08634c 65%, #059669 100%);
  border-color: var(--gold-400);
}

.social-btn-instagram .ig-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .social-card-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
  }
  .social-card-content {
    text-align: center;
  }
  .social-card-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .social-topics-tags {
    justify-content: center;
  }
  .social-showcase-card {
    padding: 2.25rem 1.5rem;
  }
  .social-action-wrap {
    width: 100%;
    min-width: 0;
  }
  .social-btn-facebook,
  .social-btn-instagram {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Photo Album Card Action Button (Lihat Album)
   ========================================================================== */
.album-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.15rem;
  padding: 0.7rem 1.25rem;
  background: #ffffff;
  color: var(--primary-800);
  border: 1.5px solid rgba(4, 120, 87, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.album-action-btn .btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1rem;
  line-height: 1;
}

.album-action-btn:hover {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 65%, #047857 100%);
  color: #ffffff !important;
  border-color: var(--primary-700);
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.3);
  transform: translateY(-2px);
}

.album-action-btn:hover .btn-arrow {
  transform: translateX(4px);
  color: var(--gold-400);
}

