/* Hide reCAPTCHA Badge */
.grecaptcha-badge { 
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  /* Safe area support for mobile notches */
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

button {
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease-in-out;
}

input, select, textarea {
  font-family: 'Outfit', sans-serif;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Header & Nav */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap; /* Added for mobile */
  gap: 1rem;
}

@media (max-width: 600px) {
  .header {
    padding: 0.8rem 1.5rem;
  }
  .logo-container span {
    display: inline-block; /* Show text on mobile as requested */
    font-size: 1.1rem;      /* Slightly smaller to fit */
  }
  .btn-ask-ai span {
    display: none; /* Only show robot icon on very small mobile */
  }
  .btn-ask-ai {
    padding: 0.5rem;
    min-width: 40px;
    justify-content: center;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .header-actions {
    gap: 0.8rem;
  }
}

.btn-ask-ai {
  background-color: rgba(244, 180, 0, 0.15); /* Gold tint */
  color: var(--color-text-dark);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ask-ai:hover {
  background-color: var(--color-secondary);
  color: white;
}

/* Home Layout Fixes */
.main-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .filters-sidebar {
    display: none; /* Hidden by default on mobile, toggled by button */
    position: static !important;
    width: 100% !important;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #eee;
  }
  .filters-sidebar.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  .filter-mobile-toggle {
    display: flex !important;
  }
}

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

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

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

.profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  border: 2px solid var(--color-border);
}

/* Utility Layouts */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.space-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Responsive Grid Utilities */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.responsive-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .responsive-grid-2, .responsive-grid-3 {
    grid-template-columns: 1fr !important;
  }
}

/* Buttons */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #08553d;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn-secondary:hover {
  background-color: #dca300;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--color-text-dark);
}

.category-filters {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid var(--color-border);
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  min-width: 90px;
  position: relative;
}

.category-item:hover {
  opacity: 0.9;
  background: rgba(0,0,0,0.03);
  transform: translateY(-2px);
}

.category-item.active {
  opacity: 1;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.category-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.category-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.category-item:hover .category-icon {
  transform: scale(1.15) rotate(-3deg);
}

.category-item span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Individual Category Themes & Backgrounds */
/* Categories handled by components.css */

@keyframes iconWobble {
  0% { transform: scale(1.15) rotate(-3deg); }
  50% { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1.15) rotate(-3deg); }
}

.category-item:hover .category-icon {
  animation: iconWobble 0.6s ease-in-out infinite;
}

.hidden {
  display: none !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 320px;
  width: 100%;
  background: url('../images/iconic_dire_dawa_hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -2.5rem; /* Overlap with search bar */
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -1.5px;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1rem;
  font-weight: 400;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 768px) {
  .hero-section { height: 280px; }
  .hero-title { 
    font-size: 2.2rem; 
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0.8rem;
  }
  .hero-subtitle { font-size: 1rem; opacity: 0.9; }
}

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

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Local Guide Section */
.guide-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.guide-container::-webkit-scrollbar {
  display: none;
}

.guide-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 20px;
  overflow: hidden; /* For image clipping */
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}

.guide-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
}

.guide-content {
  padding: 1.2rem;
}

.guide-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(26, 96, 50, 0.1);
  color: var(--color-primary);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.guide-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

.guide-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Base View Transitions */
#app-container {
  min-height: 80vh;
}

/* ═══════════════════════════════════════════
   MODERN NEWS SLIDER
   ═══════════════════════════════════════════ */
.news-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 3rem 0;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.news-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
}

.news-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 21/9;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .news-slide { aspect-ratio: 16/10; }
}

.news-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 1;
}

.news-content-box {
  position: relative;
  z-index: 2;
  padding: 3rem 5%;
  width: 100%;
  color: white;
}

.news-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: white;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(45, 138, 94, 0.4);
}

.news-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 0.8rem;
  line-height: 1.1;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

.news-excerpt {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.news-nav {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

.news-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  opacity: 0;
}

.news-slider-wrapper:hover .news-control {
  opacity: 1;
}

.news-control:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.news-control.prev { left: 1.5rem; }
.news-control.next { right: 1.5rem; }

/* ═══════════════════════════════════════════
   PROFESSIONAL FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(170deg, #0a2e1e 0%, #0B6E4F 60%, #0d5a3d 100%);
  color: #c8e6c9;
  padding: 4rem 5% 0;
  margin-top: 5rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #a5c8b5;
  margin: 0 0 1.5rem;
  max-width: 300px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #c8e6c9;
  margin-bottom: 0.6rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.footer-col h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #F4B400;
  margin: 0 0 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a,
.footer-col ul li span {
  color: #a5c8b5;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col ul li span:hover {
  color: #F4B400;
}

/* Payment icons row */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.payment-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.payment-badge:hover {
  background: rgba(244,180,0,0.2);
  border-color: #F4B400;
}

/* Testimonials strip */
.footer-testimonials {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-testimonials h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #F4B400;
  margin: 0 0 1.5rem;
  text-align: center;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 4rem;
  color: #F4B400;
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #c8e6c9;
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4B400, #0B6E4F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.85rem;
  color: white;
  font-weight: 700;
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: #a5c8b5;
}

.testimonial-stars {
  color: #F4B400;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #7aac90;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links span {
  font-size: 0.8rem;
  color: #7aac90;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-bottom-links span:hover {
  color: #F4B400;
}

/* Legal Modal */
.legal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10002;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.legal-modal-overlay.open {
  display: flex;
}

.legal-modal-box {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: legalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.legal-modal-header {
  background: linear-gradient(135deg, #0B6E4F, #0d5a3d);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-modal-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.legal-modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.legal-modal-close:hover {
  background: rgba(255,255,255,0.35);
}

.legal-modal-body {
  overflow-y: auto;
  padding: 2rem;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-modal-body h3 {
  color: #0B6E4F;
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 700;
}

.legal-modal-body h3:first-child {
  margin-top: 0;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   GUEST REVIEWS / TESTIMONIALS
   ═══════════════════════════════════════════ */
.footer-testimonials {
  width: 100%;
  max-width: 1200px;
  margin: 5rem auto;
}

.footer-testimonials h3 {
  color: var(--color-primary);
  opacity: 0.9;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #f59e0b; /* Gold */
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #444;
  line-height: 1.7;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1.2rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(11, 110, 79, 0.2);
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0.1rem;
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: #888;
  font-weight: 600;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 6px 16px rgba(245, 158, 11, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4); }
}
