/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;800&display=swap');

:root {
  --color-dark: #0D0D0D;
  --color-taxi: #FFC107;
  --color-neon: #00E5FF;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-dark);
  color: #F3F4F6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Classes */
.glass {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.3);
}

/* Gradients & Texts */
.text-gradient-taxi {
  background: linear-gradient(to right, #FFC107, #FF9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-neon {
  background: linear-gradient(to right, #00E5FF, #2979FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-taxi {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.bg-gradient-neon {
  background: linear-gradient(135deg, #00E5FF 0%, #00B0FF 100%);
}

/* Micro-animations */
.btn-hover {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-hover:hover {
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
}

.btn-neon-hover:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

/* Pulse animation for urgency */
@keyframes pulse-soft {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.animate-pulse-soft {
  animation: pulse-soft 2s infinite;
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px; /* Above mobile sticky bar */
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
  }
}

/* Sticky Bottom Mobile Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/* Content specific overrides for SEO text flow */
article p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #D1D5DB;
}

article h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #FFF;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

article h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFC107;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

article ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #D1D5DB;
}

article ul li {
  margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-active .faq-answer {
  max-height: 500px;
}
.faq-active svg {
  transform: rotate(180deg);
}
