/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */

:root {
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 20px -8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.3);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Status Colors */
  --color-ongoing: #10b981;
  --color-ongoing-bg: rgba(16, 185, 129, 0.15);
  --color-upcoming: #3b82f6;
  --color-upcoming-bg: rgba(59, 130, 246, 0.15);
  --color-past: #ef4444;
  --color-past-bg: rgba(239, 68, 68, 0.15);
}

/* Dark Theme (Default) */
[data-theme="dark"] {
  --bg-primary: #090d16;
  --bg-secondary: #0f1626;
  --bg-card: rgba(20, 29, 47, 0.7);
  --bg-card-hover: rgba(28, 40, 65, 0.85);
  --bg-glass: rgba(15, 22, 38, 0.75);
  --bg-input: rgba(10, 15, 26, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.18);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-primary: #00f5d4; /* Ijen Blue Flame turquoise */
  --accent-primary-rgb: 0, 245, 212;
  --accent-secondary: #ff9f1c; /* Volcanic orange/warm coffee */
  --accent-secondary-rgb: 255, 159, 28;
  
  --header-bg: rgba(9, 13, 22, 0.8);
  --glow-color-1: rgba(0, 245, 212, 0.15);
  --glow-color-2: rgba(255, 159, 28, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  
  --card-highlight: linear-gradient(135deg, rgba(0, 245, 212, 0.15) 0%, rgba(255, 159, 28, 0.05) 100%);
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary: #f6f9fc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-input: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-hover: rgba(0, 0, 0, 0.18);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --accent-primary: #0ea5e9; /* Light mode deep turquoise/sky */
  --accent-primary-rgb: 14, 165, 233;
  --accent-secondary: #f97316; /* Warm orange coffee */
  --accent-secondary-rgb: 249, 115, 22;
  
  --header-bg: rgba(255, 255, 255, 0.85);
  --glow-color-1: rgba(14, 165, 233, 0.08);
  --glow-color-2: rgba(249, 115, 22, 0.05);
  --shadow-color: rgba(15, 23, 42, 0.08);
  
  --card-highlight: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(249, 115, 22, 0.03) 100%);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Background Ambient Glows */
.glow-bg {
  position: fixed;
  border-radius: var(--radius-full);
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  transition: background var(--transition-slow);
}

.glow-1 {
  width: 45vw;
  height: 45vw;
  top: -15vw;
  right: -5vw;
  background: var(--glow-color-1);
}

.glow-2 {
  width: 40vw;
  height: 40vw;
  bottom: 5vw;
  left: -10vw;
  background: var(--glow-color-2);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, rgba(var(--accent-primary-rgb), 0.8) 100%);
  color: #090d16;
  box-shadow: 0 8px 24px -6px rgba(var(--accent-primary-rgb), 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px -4px rgba(var(--accent-primary-rgb), 0.6);
  background: linear-gradient(135deg, var(--accent-primary) 0%, rgba(var(--accent-primary-rgb), 0.95) 100%);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color-hover);
  border-color: rgba(var(--accent-primary-rgb), 0.4);
}

.btn-outline {
  border: 1.5px solid var(--accent-primary);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: rgba(var(--accent-primary-rgb), 0.1);
  box-shadow: 0 8px 20px -8px rgba(var(--accent-primary-rgb), 0.3);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-icon-small {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-icon-small:hover {
  background-color: var(--border-color-hover);
  color: var(--text-primary);
}

.btn-link {
  color: var(--accent-primary);
  font-weight: 500;
  background: none;
  padding: 4px 8px;
  font-size: 0.9rem;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-clear {
  color: var(--text-muted);
  padding: 8px;
  display: none;
}

.btn-clear:hover {
  color: var(--text-primary);
}

/* Event Status Badges */
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.badge-ongoing {
  background-color: var(--color-ongoing-bg);
  color: var(--color-ongoing);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-upcoming {
  background-color: var(--color-upcoming-bg);
  color: var(--color-upcoming);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-past {
  background-color: var(--color-past-bg);
  color: var(--color-past);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.event-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background-color: var(--border-color-hover);
  color: var(--text-primary);
  font-family: var(--font-heading);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  background-color: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090d16;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.2);
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

.logo-text h1 span {
  color: var(--accent-primary);
  background: linear-gradient(135deg, var(--accent-primary) 30%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  background-color: var(--bg-input);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  background-color: var(--bg-secondary);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Nav Styles */
.mobile-only {
  display: none;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  z-index: 1000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.mobile-link:hover, .mobile-link.active {
  background-color: var(--border-color-hover);
  color: var(--accent-primary);
}

.mobile-menu-footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.badge-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--card-highlight);
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Visual Card Showcase */
.visual-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.visual-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  box-shadow: var(--shadow-premium);
}

.featured-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  background-color: var(--accent-secondary);
  color: #090d16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.featured-image-container {
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

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

.visual-card:hover .featured-image-container img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(9, 13, 22, 0.7) 100%);
}

.featured-details {
  padding: 4px 8px 12px;
}

.featured-details .event-tag {
  margin-bottom: 10px;
}

.featured-details h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.featured-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.featured-details p i {
  color: var(--accent-primary);
}

.featured-details button {
  margin-top: 16px;
  width: 100%;
}

/* ==========================================================================
   STATS DASHBOARD SECTION
   ========================================================================== */

.stats-section {
  padding-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.stat-card:hover {
  transform: translateY(-4px);
  background-color: var(--bg-card-hover);
  border-color: rgba(var(--accent-primary-rgb), 0.25);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-total {
  background-color: var(--border-color-hover);
  color: var(--text-primary);
}

.icon-ongoing {
  background-color: var(--color-ongoing-bg);
  color: var(--color-ongoing);
}

.icon-upcoming {
  background-color: var(--color-upcoming-bg);
  color: var(--color-upcoming);
}

.icon-past {
  background-color: var(--color-past-bg);
  color: var(--color-past);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.text-ongoing { color: var(--color-ongoing); }
.text-upcoming { color: var(--color-upcoming); }
.text-past { color: var(--color-past); }

/* ==========================================================================
   CONTENT LAYOUT & GENERAL SECTION HEADER
   ========================================================================== */

.sections-wrapper {
  position: relative;
  min-height: 500px;
}

.content-section {
  display: none;
  padding-top: 40px;
  padding-bottom: 80px;
}

.content-section.active-section {
  display: block;
  animation: fadeIn var(--transition-slow);
}

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

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.section-header.text-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-title span {
  color: var(--accent-primary);
  background: linear-gradient(135deg, var(--accent-primary) 30%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
}

.view-switches {
  display: flex;
  background-color: var(--bg-input);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.btn-switch {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.btn-switch.active {
  background-color: var(--bg-secondary);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   FILTER PANEL
   ========================================================================== */

.filter-panel {
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.search-box {
  display: flex;
  align-items: center;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  transition: all var(--transition-fast);
}

.search-box:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
  background-color: var(--bg-secondary);
}

.search-icon {
  color: var(--text-muted);
  margin-right: 12px;
}

.search-box input {
  width: 100%;
  height: 48px;
  color: var(--text-primary);
  font-weight: 500;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.filter-group {
  display: flex;
  gap: 12px;
}

.select-wrapper {
  position: relative;
  flex: 1;
}

.select-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.select-wrapper select {
  width: 100%;
  height: 50px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding-left: 44px;
  padding-right: 32px;
  color: var(--text-primary);
  appearance: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.select-wrapper select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
  background-color: var(--bg-secondary);
}

/* Custom Select Arrow */
.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.date-filter-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.input-date-wrapper {
  position: relative;
}

.date-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.input-date-wrapper input[type="date"] {
  height: 50px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding-left: 44px;
  padding-right: 16px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition-fast);
  width: 160px;
}

.input-date-wrapper input[type="date"]:focus {
  border-color: var(--accent-primary);
  background-color: var(--bg-secondary);
}

/* Active Filter Badges */
.active-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  animation: fadeIn var(--transition-fast);
}

.active-filters-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.badges-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--border-color-hover);
  color: var(--text-primary);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.filter-badge button {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-badge button:hover {
  color: var(--color-past);
}

/* ==========================================================================
   EVENT GRID & CARDS
   ========================================================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* TAMPILAN GRID (DEFAULT CARD) */
.event-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  box-shadow: var(--shadow-lg);
}

/* Premium gradient marker on top of the card */
.event-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.event-card:hover::after {
  opacity: 1;
}

.event-card-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.event-card:hover .event-card-img-container img {
  transform: scale(1.05);
}

.event-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta span i {
  color: var(--accent-primary);
}

.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 54px;
  transition: color var(--transition-fast);
}

.event-card:hover .event-card-title {
  color: var(--accent-primary);
}

.event-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.event-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-organizer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 140px;
}

.event-organizer-info i {
  font-size: 1rem;
  color: var(--accent-secondary);
}

.event-organizer-info span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* TAMPILAN LIST VIEW */
.events-grid.list-view {
  grid-template-columns: 1fr;
  gap: 20px;
}

.events-grid.list-view .event-card {
  flex-direction: row;
  height: 180px;
}

.events-grid.list-view .event-card::after {
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
}

.events-grid.list-view .event-card-img-container {
  width: 260px;
  height: 100%;
  flex-shrink: 0;
}

.events-grid.list-view .event-card-body {
  padding: 20px 24px;
}

.events-grid.list-view .event-card-title {
  height: auto;
  -webkit-line-clamp: 1;
  margin-bottom: 8px;
}

.events-grid.list-view .event-card-desc {
  height: auto;
  -webkit-line-clamp: 1;
  margin-bottom: 12px;
}

.events-grid.list-view .event-card-footer {
  padding-top: 12px;
}

/* Loading & Empty State Styling */
.loading-state, .empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--accent-primary);
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-icon {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   CALENDAR VIEW SECTION
   ========================================================================== */

.calendar-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.calendar-wrapper {
  border-right: 1px solid var(--border-color);
  padding-right: 40px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day-cell {
  aspect-ratio: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  border: 1px solid transparent;
}

.calendar-day-cell:hover:not(.empty-cell) {
  background-color: var(--border-color-hover);
  color: var(--text-primary);
}

.calendar-day-cell.empty-cell {
  cursor: default;
}

.calendar-day-cell.prev-next-month {
  color: var(--text-muted);
  opacity: 0.4;
}

.calendar-day-cell.today {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}

.calendar-day-cell.selected {
  background-color: var(--accent-primary) !important;
  color: #090d16 !important;
  box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.3);
}

.calendar-day-cell.selected .event-dot {
  background-color: #090d16;
}

/* Event Dot Indicator */
.event-dot {
  position: absolute;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--accent-primary);
}

.calendar-day-cell.selected .event-dot {
  background-color: #090d16 !important;
}

/* Right Side: selected date events */
.calendar-details-panel {
  display: flex;
  flex-direction: column;
  height: 400px;
}

.selected-date-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.selected-date-header i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.selected-date-header h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.selected-date-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.calendar-events-list {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
}

.calendar-events-list::-webkit-scrollbar {
  width: 6px;
}

.calendar-events-list::-webkit-scrollbar-track {
  background: transparent;
}

.calendar-events-list::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}

.calendar-event-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar-event-item:hover {
  border-color: var(--accent-primary);
  transform: translateX(4px);
}

.calendar-event-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.calendar-event-item-header h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calendar-event-item-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.no-events-indicator {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.no-events-indicator i {
  font-size: 2.5rem;
}

.no-events-indicator p {
  font-size: 0.9rem;
  max-width: 250px;
}

/* ==========================================================================
   UPLOAD / FORM SECTION
   ========================================================================== */

.upload-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.info-card {
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.guide-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--card-highlight);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.25);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.guide-list li h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.guide-list li p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.info-alert {
  background-color: rgba(255, 159, 28, 0.1);
  border: 1px solid rgba(255, 159, 28, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  color: var(--accent-secondary);
  font-size: 0.85rem;
}

.info-alert i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Premium Form Styling */
.form-wrapper {
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.premium-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.col-span-2 {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group label i {
  color: var(--accent-primary);
  margin-right: 6px;
}

.form-group label .required {
  color: var(--color-past);
}

.form-group input, .form-group select, .form-group textarea {
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-primary);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  /* Add custom select arrow style inside input */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

/* Image Upload Dropzone */
.upload-dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  background-color: var(--bg-input);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.upload-dropzone:hover {
  border-color: var(--accent-primary);
  background-color: rgba(var(--accent-primary-rgb), 0.02);
}

.dropzone-icon {
  font-size: 2.5rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.upload-dropzone:hover .dropzone-icon {
  color: var(--accent-primary);
}

.dropzone-text p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.dropzone-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.preview-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.preview-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-remove-img {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(9, 13, 22, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
  z-index: 20;
}

.btn-remove-img:hover {
  background-color: var(--color-past);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

/* ==========================================================================
   ABOUT / DESTINATION SPOTLIGHT
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-feature-item i {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background-color: var(--border-color-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Image Collage */
.about-image-collage {
  position: relative;
  height: 450px;
}

.about-image-collage img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.about-image-collage img:hover {
  transform: scale(1.03);
  z-index: 5;
}

.about-image-collage .img-1 {
  width: 70%;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-image-collage .img-2 {
  width: 55%;
  height: 240px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--bg-primary);
}

.fun-fact-card {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 60%;
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--accent-secondary-rgb), 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.fun-fact-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--accent-secondary);
}

.fun-fact-card p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--text-primary);
}

/* ==========================================================================
   MODAL DIALOG (EVENT DETAIL)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background-color: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(9, 13, 22, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--color-past);
  border-color: var(--color-past);
}

/* Modal Inner Content Layout */
.modal-body {
  padding: 0;
}

.modal-banner {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.modal-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(9, 13, 22, 0.9) 100%);
}

.modal-banner-info {
  position: absolute;
  bottom: 24px;
  left: 30px;
  right: 30px;
}

.modal-banner-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}

.modal-main-content {
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.modal-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  border-left: 3px solid var(--accent-primary);
  padding-left: 10px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  white-space: pre-line;
}

/* RSVP / Countdown Timer on Modal Right Side */
.modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.event-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-details-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.event-details-list li i {
  color: var(--accent-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.event-details-list li h6 {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-details-list li p {
  color: var(--text-primary);
  font-weight: 500;
}

/* Countdown Timer */
.countdown-box {
  background-color: var(--card-highlight);
  border-color: rgba(var(--accent-primary-rgb), 0.2);
  text-align: center;
}

.countdown-box h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-unit span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.timer-unit label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

.timer-colon {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-muted);
}

/* Map display in modal sidebar */
.map-container {
  height: 180px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-top: 12px;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-actions .btn {
  width: 100%;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 4px solid var(--accent-primary);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 300px;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform var(--transition-normal);
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast-success {
  border-left-color: var(--color-ongoing);
}
.toast-success .toast-icon {
  color: var(--color-ongoing);
}

.toast-error {
  border-left-color: var(--color-past);
}
.toast-error .toast-icon {
  color: var(--color-past);
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */

footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
  font-size: 0.95rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.footer-socials a:hover {
  background-color: var(--accent-primary);
  color: #090d16;
  border-color: var(--accent-primary);
}

.footer-links h3, .footer-contact h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  color: var(--text-secondary);
}

.footer-links ul a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact p {
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact p i {
  color: var(--accent-primary);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   ADMIN & MAP PICKER STYLES
   ========================================================================== */

.form-map-container {
  width: 100%;
  margin-top: 8px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

/* Admin Login Wrapper */
.admin-login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  animation: fadeIn var(--transition-normal);
}

.login-card {
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-premium);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-avatar {
  font-size: 3rem;
  color: var(--accent-primary);
  margin-bottom: 16px;
  background: var(--card-highlight);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-primary-rgb), 0.25);
}

.login-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.login-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Admin Dashboard */
.admin-dashboard-wrapper {
  animation: fadeIn var(--transition-normal);
}

.admin-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  gap: 20px;
}

.admin-dashboard-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

.admin-dashboard-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Admin Stats Widgets */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-hover);
}

.admin-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.admin-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Moderation Panel */
.moderation-container {
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.moderation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.moderation-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.admin-filter-tabs {
  display: flex;
  background-color: var(--bg-input);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.btn-admin-tab {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.btn-admin-tab.active {
  background-color: var(--bg-secondary);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.moderation-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.moderation-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-fast);
}

.moderation-item:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-sm);
}

.moderation-item-info {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-grow: 1;
}

.moderation-item-poster {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.moderation-item-details h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.moderation-item-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.moderation-item-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.moderation-item-meta span i {
  color: var(--accent-primary);
}

.moderation-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-admin-act {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: all var(--transition-fast);
}

.btn-admin-act.act-approve {
  background-color: var(--color-ongoing-bg);
  color: var(--color-ongoing);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-admin-act.act-approve:hover {
  background-color: var(--color-ongoing);
  color: #090d16;
}

.btn-admin-act.act-reject {
  background-color: rgba(255, 159, 28, 0.15);
  color: var(--accent-secondary);
  border: 1px solid rgba(255, 159, 28, 0.3);
}

.btn-admin-act.act-reject:hover {
  background-color: var(--accent-secondary);
  color: #090d16;
}

.btn-admin-act.act-edit {
  background-color: var(--color-upcoming-bg);
  color: var(--color-upcoming);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-admin-act.act-edit:hover {
  background-color: var(--color-upcoming);
  color: #090d16;
}

.btn-admin-act.act-delete {
  background-color: var(--color-past-bg);
  color: var(--color-past);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-admin-act.act-delete:hover {
  background-color: var(--color-past);
  color: #090d16;
}

.btn-admin-act.act-star {
  background-color: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.btn-admin-act.act-star:hover {
  background-color: #eab308;
  color: #090d16;
}

.btn-admin-act.act-star-active {
  background-color: #eab308;
  color: #090d16;
  border: 1px solid #eab308;
}

.btn-admin-act.act-star-active:hover {
  background-color: transparent;
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.5);
}

.moderation-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.moderation-empty i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

/* Contact Button in Event Details */
.btn-whatsapp-contact {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-contact:hover {
  box-shadow: 0 8px 20px -2px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #25D366 0%, #075E54 100%) !important;
}

@media (max-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .moderation-item {
    flex-direction: column;
    align-items: stretch;
  }
  
  .moderation-item-actions {
    justify-content: flex-end;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
  }
}

/* ==========================================================================
   QUICK FILTERS, ZERO-CLICK CARD INFO, & PULSE ANIMATION
   ========================================================================== */

/* Quick Date Filters */
.quick-filters-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}

.quick-filters-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-filters-label i {
  color: var(--accent-primary);
}

.quick-filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-quick-filter {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.btn-quick-filter:hover {
  background-color: var(--border-color-hover);
  color: var(--text-primary);
  border-color: var(--border-color-hover);
}

.btn-quick-filter.active {
  background: linear-gradient(135deg, var(--accent-primary) 0%, rgba(var(--accent-primary-rgb), 0.85) 100%);
  color: #090d16;
  border-color: var(--accent-primary);
  box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.25);
}

/* Pulse Animation for Add Event Button */
.btn-pulse {
  position: relative;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--accent-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0);
  }
}

/* Zero-Click Event Details on Card */
.event-card-zero-click {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  background-color: rgba(9, 13, 22, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .event-card-zero-click {
  background-color: rgba(0, 0, 0, 0.02);
}

.zero-click-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.zero-click-item i {
  color: var(--accent-primary);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.zero-click-item .item-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  max-width: 100%;
}

/* Google Maps Link styling in zero click */
.gmaps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.gmaps-link:hover {
  color: var(--accent-secondary);
}

/* Ticket Price highlight */
.zero-click-item.ticket-highlight i {
  color: var(--accent-secondary);
}

.ticket-price-val {
  font-weight: 700;
  color: var(--accent-secondary);
}

/* Event share button in card footer */
.btn-share-wa-card {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-share-wa-card:hover {
  background-color: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calendar-layout {
    grid-template-columns: 1fr;
  }
  
  .calendar-wrapper {
    border-right: none;
    padding-right: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
  }
  
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .footer-contact {
    grid-column: span 3;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 10px;
  }
  
  .footer-contact h3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-only {
    display: flex;
  }
  
  .header-actions .upload-trigger {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-panel {
    grid-template-columns: 1fr;
  }
  
  .filter-group {
    flex-direction: column;
  }
  
  .input-date-wrapper input[type="date"] {
    width: 100%;
  }
  
  .date-filter-container {
    justify-content: space-between;
  }
  
  .date-filter-container .input-date-wrapper {
    flex-grow: 1;
  }
  
  .upload-layout {
    grid-template-columns: 1fr;
  }
  
  .premium-form .form-grid {
    grid-template-columns: 1fr;
  }
  
  .col-span-2 {
    grid-column: span 1;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-collage {
    height: 350px;
  }
  
  .about-image-collage .img-1 {
    height: 240px;
  }
  
  .about-image-collage .img-2 {
    height: 180px;
  }
  
  .modal-main-content {
    grid-template-columns: 1fr;
  }
  
  .events-grid.list-view .event-card {
    flex-direction: column;
    height: auto;
  }
  
  .events-grid.list-view .event-card-img-container {
    width: 100%;
    height: 180px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-contact {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column-reverse;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}
