/* ==========================================================================
   PRSync — Modern Directory & Press Release Syndication Platform
   Default Theme: Pristine Clean White Mode (with Dark Mode Toggle)
   ========================================================================== */

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

:root {
  /* Official Yelp Brand Theme Tokens */
  --bg-primary: #ffffff;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f8fafc;
  --glass-bg: #ffffff;
  --glass-card: #ffffff;
  --glass-border: #e2e8f0;
  --glass-border-hover: #cbd5e1;

  --text-primary: #121212;
  --text-secondary: #484848;
  --text-muted: #767676;

  /* Yelp Official Red & Slate Palette */
  --accent-primary: #d90429;
  --accent-primary-hover: #b80322;
  --accent-cyan: #0284c7;
  --accent-emerald: #059669;
  --accent-amber: #d97706;
  --accent-rose: #d90429;
  --accent-purple: #4f46e5;
  --yelp-red: #d90429;

  --gradient-brand: #d90429;
  --gradient-card: #ffffff;
  --gradient-glow: none;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.1);
  --shadow-glow: none;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Overrides */
[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --glass-bg: rgba(30, 41, 59, 0.98);
  --glass-card: #1e293b;
  --glass-border: #334155;
  --glass-border-hover: #475569;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --gradient-card: #1e293b;
  --gradient-glow: none;
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Reset & Base Styles */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Layout Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.2rem;
  width: 100%;
}

/* Glassmorphism Panel Component */
.glass-panel {
  background: var(--glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: fadeIn 0.4s ease forwards;
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg);
}

/* DRAG & DROP IMAGE UPLOADER STYLING */
.drop-zone {
  border: 2px dashed var(--accent-primary);
  background: rgba(99, 102, 241, 0.04);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.8rem;
  position: relative;
}

.drop-zone:hover, .drop-zone.dragover {
  background: rgba(99, 102, 241, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.drop-zone-icon {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 0.4rem;
}

.drop-zone-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.drop-zone-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.drop-zone-preview {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.drop-zone-preview img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.file-input-hidden {
  display: none;
}

/* UNCLIPPED TOP TICKER BAR WITH NO BADGE OVERLAP */
.ticker-bar {
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.82rem;
  padding: 0.45rem 1.2rem;
  border-bottom: 1px solid #1e293b;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker-bar-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.ticker-label {
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.2rem;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 10;
}

.ticker-scroll-area {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.ticker-item {
  cursor: pointer;
  color: #cbd5e1;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ticker-item:hover {
  color: #60a5fa;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAVBAR & CATEGORIES MEGA DROPDOWN MENU */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.5rem 0;
  transition: var(--transition);
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: #d90429;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.logo-text span {
  color: var(--accent-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

/* DESKTOP MODE: INLINE HEADER NAVIGATION LINKS & HIDDEN TOGGLE */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  flex-shrink: 1;
}

.nav-link {
  padding: 0.3rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #d90429;
  background: #fff0f2;
}

/* Categories Navbar Dropdown Wrapper */
.nav-item-dropdown {
  position: relative;
}

.mega-dropdown-menu {
  position: absolute;
  top: 120%;
  left: -80px;
  width: 600px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  z-index: 1000;
  animation: fadeIn 0.25s ease;
}

.nav-item-dropdown:hover .mega-dropdown-menu,
.mega-dropdown-menu.active {
  display: grid;
}

.dropdown-cat-item {
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  cursor: pointer;
  background: var(--bg-tertiary);
  border: 1px solid transparent;
}

.dropdown-cat-item:hover {
  background: #f1f5f9;
  color: var(--accent-primary);
  border-color: var(--glass-border);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

/* HIDE HAMBURGER TOGGLE BUTTON IN DESKTOP MODE BY DEFAULT */
.mobile-toggle {
  display: none !important;
}

/* Button System — Simple Clean Professional Buttons */
.btn-primary {
  background: var(--yelp-red);
  color: #ffffff;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--yelp-red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  box-shadow: 0 2px 4px rgba(217, 4, 41, 0.2);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary:hover {
  background: var(--accent-primary-hover);
  border-color: var(--accent-primary-hover);
  box-shadow: 0 4px 8px rgba(217, 4, 41, 0.3);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: #cbd5e1;
  color: var(--text-primary);
}

/* PAYPAL GOLD BUTTON STYLING */
.paypal-btn {
  background: linear-gradient(135deg, #ffc439 0%, #ffb300 100%);
  color: #003087;
  font-weight: 800;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid #e5a900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(255, 196, 57, 0.35);
  transition: var(--transition);
  width: 100%;
  white-space: nowrap;
}

.paypal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 196, 57, 0.5);
  filter: brightness(1.05);
}

.btn-danger {
  background: rgba(244, 63, 94, 0.12);
  color: var(--accent-rose);
  border: 1px solid rgba(244, 63, 94, 0.3);
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-danger:hover {
  background: var(--accent-rose);
  color: #fff;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.btn-icon:hover {
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-primary);
  transform: rotate(15deg);
}

/* User Menu & Avatar Positioning */
.user-menu-wrap {
  position: relative;
  display: inline-block;
}

.user-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  height: 34px;
}

.user-avatar-btn:hover {
  border-color: var(--accent-primary);
}

.user-avatar-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 250px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 2147483647 !important;
  margin-top: 0.4rem;
  animation: fadeIn 0.2s ease;
}

.user-dropdown.active {
  display: flex;
}

.user-dropdown-item {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.user-dropdown-item:hover {
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-primary);
}

/* Notification Bell & Live Alerts Feed Dropdown */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-rose);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.4);
}

.notif-dropdown {
  position: absolute;
  top: 100%;
  right: 60px;
  width: 340px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 2147483647 !important;
  margin-top: 0.4rem;
  animation: fadeIn 0.2s ease;
}

.notif-dropdown.active {
  display: flex;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-tertiary);
}

.notif-header h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.notif-list {
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.notif-item {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: var(--transition);
  cursor: pointer;
  background: var(--bg-secondary);
}

.notif-item.unread {
  background: rgba(99, 102, 241, 0.08);
}

.notif-item:hover {
  background: rgba(99, 102, 241, 0.14);
}

.notif-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.notif-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.notif-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.notif-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* User Status Badges */
.user-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.user-status-badge.registered {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.user-status-badge.guest {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
  padding: 3rem 0 2rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  background: #fff0f2;
  border: 1px solid #fca5a5;
  color: #d90429;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
  color: #121212;
}

.hero-title span {
  color: var(--accent-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 1.8rem;
  line-height: 1.5;
}

/* Hero Search Box */
.hero-search-wrapper {
  max-width: 820px;
  width: 100%;
  margin: 0 auto 2rem;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}

.hero-search-box:focus-within {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.search-select {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 0.7rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  border-right: 1px solid var(--glass-border);
  cursor: pointer;
  max-width: 220px;
}

.search-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 0.9rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
}

/* Stats Cards Grid Fix */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  width: 100%;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #121212;
  background: none;
  -webkit-text-fill-color: initial;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Tab Navigation Panes */
.tab-content {
  display: none;
  width: 100%;
}

.tab-content.active {
  display: block;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #121212;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Category Filter Chips Grid */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 1.8rem;
  scrollbar-width: none;
  width: 100%;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
}

.filter-chip:hover, .filter-chip.active {
  background: #d90429;
  color: #ffffff;
  border-color: #d90429;
  box-shadow: var(--shadow-sm);
}

/* FEATURED ANNOUNCEMENT CARD BEAUTIFUL LAYOUT */
.featured-card {
  display: flex;
  gap: 2.2rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  align-items: center;
  position: relative;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  width: 100%;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid #bfdbfe;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.featured-img-wrap {
  width: 380px;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

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

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

.featured-content {
  flex: 1;
}

.release-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.meta-company {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.company-mini-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
  color: #0f172a;
}

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

.featured-snippet {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Press Releases Feed Grid */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

.pr-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pr-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.pr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-sm);
}

.pr-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-card-snippet {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
}

/* FULL DEDICATED BLOG PAGE ARTICLE READER WITH RICH STYLING */
.blog-article-container {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  width: 100%;
}

.blog-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.blog-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-body-text {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.blog-body-text h1, .blog-body-text h2, .blog-body-text h3, 
.blog-body-text h4, .blog-body-text h5, .blog-body-text h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.blog-body-text img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 1.2rem 0;
  box-shadow: var(--shadow-md);
}

.blog-body-text a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.blog-body-text blockquote {
  border-left: 4px solid var(--accent-primary);
  padding: 0.8rem 1.2rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  margin: 1.2rem 0;
  font-style: italic;
}

/* Category Grid Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  width: 100%;
}

.category-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  background: var(--gradient-card);
}

.cat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.cat-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cat-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.cat-trend {
  font-size: 0.78rem;
  color: var(--accent-emerald);
  font-weight: 700;
}

/* Companies Directory Cards */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.company-card {
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.company-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

/* WYSIWYG RICH TEXT EDITOR TOOLBAR */
.wysiwyg-wrapper {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.wysiwyg-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border);
  align-items: center;
}

.wysiwyg-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.wysiwyg-btn:hover {
  background: var(--accent-primary);
  color: #fff;
}

.wysiwyg-editor {
  min-height: 160px;
  max-height: 280px;
  padding: 1rem;
  outline: none;
  overflow-y: auto;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.wysiwyg-editor:empty:before {
  content: attr(placeholder);
  color: var(--text-muted);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  width: 100%;
}

.pricing-card {
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
}

.pricing-card.popular {
  border-color: var(--accent-primary);
  background: var(--gradient-card);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-glow);
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li i {
  color: var(--accent-emerald);
}

/* PERFECTED UNCLIPPED MODALS SYSTEM FOR PC & LAPTOPS & MOBILE */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-container {
  width: 100%;
  max-width: 680px;
  height: auto;
  max-height: none;
  overflow: visible;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent-rose);
  color: #fff;
}

/* Wizard Steps Bar - Inline Horizontal Row */
.wizard-steps-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  position: relative;
  width: 100%;
}

.wizard-steps-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--glass-border);
  z-index: 1;
}

.step-indicator {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--glass-border);
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-muted);
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-indicator.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.step-indicator.completed {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #ffffff;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

/* Table Scroll Wrappers */
.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  white-space: nowrap;
}

.data-table th, .data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.data-table th {
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
}

/* PERFECT ADMIN DASHBOARD SIDEBAR & CONTROL PANEL LAYOUT */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: var(--bg-primary);
}

.admin-mobile-header {
  display: none;
}

.admin-sidebar {
  width: 270px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.admin-sidebar-header {
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 0.8rem;
  list-style: none;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.admin-nav-item i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-primary);
}

.admin-main {
  margin-left: 270px;
  flex: 1;
  padding: 2.2rem;
  max-width: calc(100vw - 270px);
  overflow-x: hidden;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.metric-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 2rem !important;
  right: 2rem !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 2147483647 !important;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}

.toast {
  position: relative;
  z-index: 2147483647 !important;
  pointer-events: auto;
  background: #0f172a !important;
  color: #ffffff !important;
  border-left: 4px solid var(--accent-emerald);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  animation: slideInUp 0.3s ease;
  transition: var(--transition);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}

/* ==========================================================================
   FULL RESPONSIVE BREAKDOWNS FOR ALL DEVICE SIZES (DESKTOP, LAPTOP, TABLET, MOBILE)
   ========================================================================== */

/* LAPTOP / TABLET / MOBILE MENU BREAKPOINT (< 1280px) */
@media (max-width: 1280px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--glass-border);
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: 85vh;
    overflow-y: auto;
  }

  .nav-links .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
  }

  .nav-links.mobile-active {
    display: flex;
  }

  /* SHOW MOBILE MENU TOGGLE ONLY ON SMALLER SCREENS */
  .mobile-toggle {
    display: flex !important;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-img-wrap {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 992px) {
  /* HIDE TOP NAV ACTION BUTTONS TO PREVENT NAVBAR CLIPPING ON TABLETS/MOBILE */
  #openListBusinessBtn, 
  #openSubmitModalBtn {
    display: none !important;
  }

  .mobile-only-nav-action {
    display: block !important;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-wrapper { flex-direction: column; }
  .admin-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .admin-sidebar {
    width: 280px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
    z-index: 200;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .admin-sidebar.mobile-open {
    transform: translateX(280px);
  }

  .admin-main {
    margin-left: 0;
    max-width: 100vw;
    padding: 1.4rem 1rem;
  }

  .footer-grid-5col { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 0.5rem !important;
    gap: 0.2rem !important;
  }

  .nav-actions {
    gap: 0.25rem !important;
  }

  .logo {
    font-size: 1.1rem !important;
    gap: 0.25rem !important;
  }

  .logo-badge {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.75rem !important;
  }

  .btn-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
  }

  .user-avatar-btn {
    padding: 0.2rem 0.45rem !important;
    font-size: 0.7rem !important;
    height: 28px !important;
  }

  .ticker-bar {
    padding: 0.3rem 0.6rem !important;
  }

  .ticker-label {
    font-size: 0.65rem !important;
    padding: 0.15rem 0.4rem !important;
    margin-right: 0.5rem !important;
  }

  .hero-search-box {
    flex-direction: column !important;
    padding: 0.4rem !important;
    gap: 0.4rem !important;
  }

  .hero-search-box > div {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 0.3rem 0.5rem !important;
  }

  .hero-search-box button {
    width: 100% !important;
  }

  .hero-title {
    font-size: 1.6rem !important;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }

  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
  }

  .releases-grid {
    grid-template-columns: 1fr !important;
  }

  .company-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-container {
    padding: 1.2rem !important;
    max-width: 95vw !important;
  }

  .footer-grid-5col {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
}

/* STUNNING AUTHENTICATION MODAL TABS & SIGNIN/SIGNUP DESIGN */
.auth-tabs {
  display: flex;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.8rem;
  gap: 0.35rem;
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-tab-btn {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  outline: none;
}

.auth-tab-btn.active {
  background: #d90429;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

.auth-tab-btn:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   MASTER YELP-STYLE FOOTER DESIGN SYSTEM
   ========================================================================== */
.footer-master {
  background: #0f172a !important;
  color: #cbd5e1 !important;
  border-top: 4px solid #d90429 !important;
  padding: 4rem 0 2rem !important;
  margin-top: 4rem !important;
  font-family: inherit;
  width: 100% !important;
  position: relative;
  z-index: 10;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-newsletter-box {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-newsletter-text h3 {
  color: #f8fafc;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-newsletter-text p {
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  max-width: 460px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.7rem 1.1rem;
  border-radius: 50px;
  border: 1px solid #475569;
  background: #0f172a;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s ease;
}

.footer-newsletter-input:focus {
  border-color: #d90429;
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
}

.footer-newsletter-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  border: none;
  background: #d90429;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-newsletter-btn:hover {
  background: #b80322;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.4);
}

.footer-cities-bar {
  border-bottom: 1px solid #1e293b;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.footer-cities-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  color: #f8fafc;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-city-chip {
  background: #1e293b;
  color: #e2e8f0;
  border: 1px solid #334155;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-city-chip:hover {
  background: #d90429;
  color: #fff;
  border-color: #d90429;
  transform: translateY(-2px);
}

.footer-grid-5col {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col-title {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.footer-nav-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-nav-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom-bar {
  border-top: 1px solid #1e293b;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-social-link {
  color: #cbd5e1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.footer-social-link:hover {
  background: #d90429;
  color: #ffffff;
  border-color: #d90429;
  transform: translateY(-3px);
}

/* TAB CONTENT VISIBILITY & ACTIVE RENDERING GUARD */
.tab-content {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.tab-content.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.toast-container {
  z-index: 99999999 !important;
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  pointer-events: none !important;
}

