@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');/* Rapido Style Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--glass-border-soft);
  box-shadow: var(--shadow-glass-sm);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.yann-logo {
  height: 40px; /* Adjust based on actual aspect ratio */
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-link, .nav-link-btn {
  font-weight: 500;
  font-size: 0.95rem;
  color: #000000;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  position: relative;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
  font-family: inherit;
}

.nav-link:hover, .nav-link-btn:hover {
  color: #000;
}

/* Active Underline */
.nav-link.active {
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px; /* Assuming 5rem height center */
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  background-color: #000000;
  border-radius: 4px 4px 0 0;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px; /* Pill */
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-glass-sm), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-download:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glass-md), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-download:active {
  transform: scale(0.98);
}

/* Dropdown specific styles */
.download-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  min-width: 150px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border: 1px solid var(--glass-border-soft);
}

.download-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: var(--surface-alt);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 1024px) {
  .nav-link {
    padding: 0 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .navbar-container {
    height: 4.5rem;
  }

  .nav-links {
    position: fixed;
    top: 4.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    height: calc(100vh - 4.5rem);
  }
  
  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link, .nav-link-btn {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0;
    height: auto;
  }

  .nav-link.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    bottom: -10px;
  }

  .download-dropdown {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
  }
}
.footer {
  background-color: var(--surface-alt);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.yann-logo-footer {
  height: 48px;
  object-fit: contain;
}

.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--glass-border-soft);
  color: var(--primary);
  box-shadow: var(--shadow-glass-sm);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass-md);
}

.footer-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-hint);
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* HomePage Styles */

.hero {
  padding: 8rem 0 5rem;
  overflow: hidden;
  position: relative;
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 0 3rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle at top right, var(--glow-primary), transparent 70%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(circle, var(--glow-accent), transparent 70%);
  z-index: -1;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

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

.stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--glow-primary), transparent 72%);
  filter: blur(4px);
  z-index: 0;
}

.mockup-frame {
  width: 300px;
  height: 600px;
  background: var(--surface);
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), var(--shadow-glass-lg);
  border: 8px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform var(--transition-normal);
}

.mockup-frame:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.mockup-placeholder {
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.floating-card {
  position: absolute;
  bottom: 100px;
  left: -40px;
  z-index: 2;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass-md);
  animation: float 4s ease-in-out infinite;
}

.driver-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.driver-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.driver-info span {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Features */
.bg-alt {
  background-color: var(--surface-alt);
}

.feature-card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-soft);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-sm);
  transition: var(--transition-normal);
}

.feature-card:hover {
  box-shadow: var(--shadow-glass-md);
  border-color: var(--glass-border);
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--glow-primary), var(--glow-accent));
  border: 1px solid var(--glass-border-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Services */
.services {
  background-color: var(--surface);
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  background: var(--glass-bg-tint);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid var(--glass-border-soft);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-strong);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glass-md);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-glass-sm);
  border: 1px solid var(--glass-border-soft);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works */
.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 60%);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glass-md), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.step-divider {
  height: 2px;
  flex: 1;
  background: var(--border);
  position: relative;
  top: -40px;
}

/* Download CTA */
.cta-box {
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--primary) 45%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-glass-lg);
  border: 1px solid var(--glass-dark-border);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.app-downloads-split {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 3rem;
}

.app-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.store-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.store-badge-link {
  display: block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.store-badge-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.store-badge-img {
  height: 52px;
  width: 160px;
  object-fit: fill;
  display: block;
}

/* Tours Section */
.tours {
  background-color: var(--surface);
}

.tour-card {
  background: var(--glass-bg-tint);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid var(--glass-border-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass-md);
  border-color: var(--glass-border);
}

.tour-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tour-icon svg {
  width: 48px;
  height: 48px;
}

.tour-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tour-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.tour-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
  }

  .hero-content p {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .step-divider {
    display: none;
  }
  
  .app-downloads-split {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .cta-box {
    padding: 3rem 1.5rem;
  }

  .service-card {
    padding: 2.5rem 1.5rem;
  }
}

/* Home Tours Slider */
.tours-slider-container {
  width: 100%;
  margin-top: 3rem;
}

.tours-slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: hidden;
  padding: 1rem;
  margin: 0 -1rem;
  padding-bottom: 2rem;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tours-slider-track::-webkit-scrollbar {
  display: none;
}

.home-tour-card {
  flex: 0 0 320px;
  background: var(--glass-bg-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-glass-md);
  border: 1px solid var(--glass-border-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.home-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass-lg);
  border-color: var(--glass-border);
}

.home-tour-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-tour-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.home-tour-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-tour-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
}

.home-tour-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.home-tour-features .bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.page-header {
  background: var(--surface-alt);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--glow-primary), transparent 70%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 3rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.values-list strong {
  color: var(--text-primary);
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.about-img-main {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-lg);
  border: 1px solid var(--glass-border-soft);
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--glass-bg-tint);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.features-grid .feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.features-grid .feature-card p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.driver-hero {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.driver-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 130%;
  background: radial-gradient(circle, var(--glow-primary), transparent 70%);
  pointer-events: none;
}

.driver-hero .hero-container {
  position: relative;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.text-success {
  color: var(--success);
}

.driver-highlight-card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-lg);
  padding: 2.5rem;
  max-width: 380px;
}

.driver-highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.highlight-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.onboarding-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.onboarding-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.onboarding-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 60%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glass-sm);
}

.onboarding-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

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

@media (max-width: 900px) {
  .driver-highlight-card {
    max-width: 100%;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item .icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--glow-primary), var(--glow-accent));
  color: var(--primary);
  border-radius: 50%;
  border: 1px solid var(--glass-border-soft);
  margin-bottom: 0;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.info-item p {
  color: var(--text-secondary);
  line-height: 1.4;
}

.contact-form-container {
  background: var(--glass-bg-strong);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-lg);
  border: 1px solid var(--glass-border);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--glass-bg-tint);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px var(--focus-ring);
  background: var(--glass-bg-strong);
}

.w-100 {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg-strong);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-sm);
  border: 1px solid var(--glass-border-soft);
}

.privacy-content h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.privacy-content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.privacy-content li strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 1.5rem;
  }
}
.services-page {
  padding-bottom: 2rem;
}

.service-category-block {
  margin-bottom: 5rem;
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-light);
  display: inline-block;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: var(--glass-bg-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-sm);
  transition: var(--transition-normal);
  border: 1px solid var(--glass-border-soft);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-glass-md);
  transform: translateY(-8px);
  border-color: var(--primary-light);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--glow-primary), var(--glow-accent));
  border: 1px solid var(--glass-border-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-detail-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-detail-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.service-feature-list li {
  background: var(--glass-bg-tint);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid var(--glass-border-soft);
}

.btn-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: gap var(--transition-fast);
}

.btn-service-link:hover {
  gap: 0.75rem;
}

.promise-item {
  text-align: center;
  padding: 2rem;
}

.promise-item h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .services-grid-detailed {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card {
    padding: 2rem;
  }
  
  .service-detail-icon {
    width: 64px;
    height: 64px;
  }
}
.service-header {
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--primary) 45%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.service-header::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  pointer-events: none;
}

.service-header h1 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
}

.service-header p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--glass-dark-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-dark-border);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
}

.service-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  background: var(--glass-bg-tint);
  border: 1px solid var(--glass-border-soft);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--glass-bg-strong);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glass-sm);
}

.benefit-item h4 {
  margin-bottom: 0.25rem;
}

.side-card {
  background: var(--glass-bg-strong);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-lg);
  border: 1px solid var(--glass-border);
  position: sticky;
  top: 100px;
}

.side-card h3 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.price-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.w-full {
  width: 100%;
}

.mt-4 {
  margin-top: 1rem;
}

.route-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.route-list li {
  background: var(--glass-bg-tint);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border: 1px solid var(--glass-border-soft);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.route-list li:hover {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border);
}

@media (max-width: 900px) {
  .service-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .side-card {
    position: static;
  }
}
.commute-how-it-works {
  margin-top: 2.5rem;
}

.commute-how-it-works h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.commute-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.commute-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass-bg-tint);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.commute-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}

.commute-route-request {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.commute-route-request a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
/* ===== ROUTES PAGE — PREMIUM OVERHAUL ===== */

/* Hero */
.routes-hero {
  background: linear-gradient(160deg, #0c1222 0%, #131b36 30%, #0f2b5c 60%, #162e62 100%);
  color: #fff;
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.routes-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,137,243,0.12) 0%, transparent 65%);
  animation: hero-pulse 6s ease-in-out infinite;
}

.routes-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,170,255,0.08) 0%, transparent 65%);
  animation: hero-pulse 8s ease-in-out 2s infinite;
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.routes-hero .container { position: relative; z-index: 2; }

/* Badge */
.routes-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(125,170,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(125,170,255,0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #93bbff;
}

/* Heading */
.routes-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.routes-hero h1 span {
  background: linear-gradient(135deg, #7daaff 0%, #a78bfa 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.routes-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
}

/* Search */
.routes-search-bar {
  margin-top: 2.25rem;
  max-width: 520px;
  position: relative;
}

.routes-search-bar .search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  transition: color 0.25s;
}

.routes-search-bar input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.routes-search-bar input::placeholder { color: rgba(255,255,255,0.35); }

.routes-search-bar input:focus {
  border-color: rgba(125,170,255,0.45);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 4px rgba(125,170,255,0.08);
}

.routes-search-bar input:focus ~ .search-icon { color: rgba(255,255,255,0.7); }

/* Stats */
.routes-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.routes-stats .stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.routes-stats .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.routes-stats .stat-item strong {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.routes-stats .stat-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ===== SECTION HEADER ===== */
.routes-section {
  padding: 3.5rem 0 5rem;
  background: var(--surface-alt);
  min-height: 400px;
}

.routes-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.routes-section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.routes-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== ROUTES GRID ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 1.5rem;
}

/* Card */
.route-card {
  background: var(--glass-bg-strong);
  border-radius: 20px;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--shadow-glass-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  animation: card-in 0.5s ease-out backwards;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7daaff, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(17,82,212,0.14), 0 8px 16px rgba(0,0,0,0.06);
  border-color: rgba(17,82,212,0.2);
}

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

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

.route-card:nth-child(1) { animation-delay: 0.05s; }
.route-card:nth-child(2) { animation-delay: 0.1s; }
.route-card:nth-child(3) { animation-delay: 0.15s; }
.route-card:nth-child(4) { animation-delay: 0.2s; }
.route-card:nth-child(5) { animation-delay: 0.25s; }
.route-card:nth-child(6) { animation-delay: 0.3s; }

/* Card header */
.route-card-header {
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.route-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.route-status {
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.route-status.active {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d;
}

.route-status.inactive { background: #f1f5f9; color: #64748b; }

/* Path */
.route-path {
  padding: 0.75rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.route-endpoint { display: flex; flex-direction: column; min-width: 0; flex: 1; }

.route-endpoint-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-hint);
  margin-bottom: 0.2rem;
}

.route-endpoint-name {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}

.route-path-line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--primary);
  gap: 0;
}

.route-path-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(17,82,212,0.15);
}

.route-path-line .line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  position: relative;
}

.route-path-line .line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--accent);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.route-path-line .arrow { display: none; }

/* Meta row */
.route-card-meta {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.route-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
}

.route-meta-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.route-meta-item strong { font-weight: 600; color: var(--text-primary); }

/* Footer */
.route-card-footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-alt);
}

.route-days { display: flex; gap: 0.25rem; }

.route-day {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.route-day.active-day { background: var(--primary); color: #fff; }
.route-day.inactive-day { background: transparent; color: var(--text-hint); border: 1px solid var(--border); }

.route-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.route-price span { font-size: 0.7rem; font-weight: 500; color: var(--text-hint); }

/* Action */
.route-card-action {
  padding: 0.85rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.25s ease;
}

.route-card-action svg {
  transition: transform 0.25s ease;
}

.route-card:hover .route-card-action svg { transform: translateX(4px); }

/* Error */
.routes-error { text-align: center; padding: 5rem 0; }

.routes-error-box {
  max-width: 420px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--glass-bg-strong);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass-md);
}

.routes-error-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.routes-error-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.routes-error-box button {
  padding: 0.7rem 1.75rem;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.routes-error-box button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Empty */
.routes-empty { text-align: center; padding: 5rem 0; }

.routes-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-hint);
}

.routes-empty h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.routes-empty p { color: var(--text-secondary); max-width: 400px; margin: 0 auto; font-size: 0.9rem; }

/* Skeleton */
.route-card-skeleton {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  animation: card-in 0.4s ease-out backwards;
}

.route-card-skeleton:nth-child(1) { animation-delay: 0.05s; }
.route-card-skeleton:nth-child(2) { animation-delay: 0.1s; }
.route-card-skeleton:nth-child(3) { animation-delay: 0.15s; }

.skeleton-line {
  background: linear-gradient(90deg, var(--surface-alt) 25%, #e8ecf4 50%, var(--surface-alt) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

.skeleton-line.title { height: 22px; width: 55%; margin-bottom: 1.25rem; }
.skeleton-line.subtitle { height: 14px; width: 80%; margin-bottom: 0.75rem; }
.skeleton-line.meta { height: 12px; width: 40%; margin-bottom: 0.5rem; }
.skeleton-line.full { height: 40px; width: 100%; margin-top: 1.25rem; border-radius: 10px; }

@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .routes-hero h1 { font-size: 2.25rem; }
  .routes-grid { grid-template-columns: 1fr; }
  .routes-section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 600px) {
  .routes-hero { padding: 6.5rem 0 3rem; }
  .routes-hero h1 { font-size: 1.85rem; }
  .routes-stats { gap: 1.5rem; }
  .routes-search-bar input { padding: 0.9rem 1rem 0.9rem 2.75rem; }
}
/* ToursPage Styles */
.tours-page {
  animation: fadeIn 0.5s ease-in-out;
}

.tours-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/Images/manali/BuPl-GttgPLjBteS3rI_03nYyMuA9kmf_emmNpZJ1dHxNjHcgYPlakLVTq-znNNCA0JD4FeoHMGddjUBxZGxKOjRbRLHOQYsPf4WfpAixHbqfY4k987hEjVvrlPmrKEumDL1HUZR8zV5bXrAvSM80OgJLpgzIcnbWtrBwPOSbyyxZ9uAefkQWC3-MG3H9HV3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
  padding: 7rem 0 5rem;
  margin-bottom: 0rem;
  position: relative;
  overflow: hidden;
}

.tours-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tours-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
}

.tours-header p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  color: #ffffff;
}

.tours-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tours-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.tours-section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.tours-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tour-detail-card {
  background: var(--glass-bg-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glass-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--glass-border-soft);
}

.tour-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass-lg);
  border-color: var(--primary-light);
}

.tour-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--surface-alt);
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.tour-detail-card:hover .tour-image {
  transform: scale(1.05);
}

.tour-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-alt), var(--border));
  color: var(--text-secondary);
}

.tour-meta-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  z-index: 2;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-secondary);
}

.tour-badge.rating {
  background: #FEF3C7;
  color: #D97706;
}

.tour-detail-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-detail-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tour-detail-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tour-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.tour-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
}

.tour-feature-list .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.cta-section {
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.mt-4 {
  margin-top: 1rem;
}

.w-full {
  width: 100%;
}
.page-header {
  background: var(--surface-alt);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--glow-primary), transparent 70%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.blog-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 3rem 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blog-category-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--glass-bg-strong);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.blog-card-date {
  color: var(--text-hint);
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.blog-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .page-header { padding: 7rem 0 3rem; }
  .page-header h1 { font-size: 2.25rem; }
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-post-page .page-header {
  background: var(--surface-alt);
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-post-page .page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--glow-primary), transparent 70%);
  pointer-events: none;
}

.blog-post-page .page-header .container {
  position: relative;
}

.blog-back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-category-badge {
  display: inline-block;
  background: var(--glass-bg-strong);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.blog-post-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-hint);
  font-size: 0.9rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.blog-meta-dot {
  opacity: 0.5;
}

.blog-post-cover {
  margin-top: 2.5rem;
}

.blog-post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-post-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.blog-post-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 1.25rem 1.5rem;
  list-style: disc;
}

.blog-post-content ol {
  list-style: decimal;
}

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

.blog-post-inline-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.blog-key-takeaways {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.blog-key-takeaways h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
}

.blog-key-takeaways ul {
  margin: 0 0 0 1.25rem;
  list-style: disc;
}

.blog-key-takeaways li {
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.blog-key-takeaways li:last-child {
  margin-bottom: 0;
}

.blog-faqs {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.blog-faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.blog-faq-item:last-child {
  border-bottom: none;
}

.blog-faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.blog-faq-item p {
  color: var(--text-secondary);
  margin: 0;
}

.blog-updated-note {
  margin-top: 2rem;
  color: var(--text-hint);
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .blog-post-page .page-header { padding: 7rem 0 2.5rem; }
  .blog-post-page h1 { font-size: 1.85rem; }
}
/* Use index.css for everything */


:root {
  --primary: #1152d4;
  --primary-light: #4a89f3;
  --primary-dark: #0a3a9c;
  --accent: #7daaff;
  
  --base-bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f4f7fe;
  
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #ffffff;
  --text-hint: #94a3b8;
  
  --border: #e2e8f0;
  --border-focus: #1152d4;
  --focus-ring: rgba(17, 82, 212, 0.15);
  
  --success: #10b981;
  --error: #f43f5e;
  --warning: #f59e0b;
  
  --shadow-color: 30, 58, 138; /* #1E3A8A in RGB */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(var(--shadow-color), 0.08);
  --shadow-lg: 0 8px 20px rgba(var(--shadow-color), 0.15);

  /* Ambient (glass) shadow scale — softer, wider, brand-tinted */
  --shadow-glass-sm: 0 4px 16px rgba(var(--shadow-color), 0.06);
  --shadow-glass-md: 0 12px 32px rgba(var(--shadow-color), 0.10);
  --shadow-glass-lg: 0 24px 60px rgba(var(--shadow-color), 0.14);

  /* Glass surface system */
  --glass-blur: 18px;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-bg-tint: rgba(244, 247, 254, 0.7); /* surface-alt tinted glass */
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-border-soft: rgba(255, 255, 255, 0.35);
  --glass-highlight: rgba(255, 255, 255, 0.5);

  /* On dark/brand-colored surfaces (hero banners, CTA) */
  --glass-dark-bg: rgba(255, 255, 255, 0.12);
  --glass-dark-border: rgba(255, 255, 255, 0.22);

  /* Ambient background glow (radial blobs, no images) */
  --glow-primary: rgba(17, 82, 212, 0.16);
  --glow-accent: rgba(125, 170, 255, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--base-bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Utilities */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Base Button Components moved from specialized areas to utilities */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-fast);
  gap: 0.5rem;
  font-size: 1rem;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 60%);
  color: var(--text-light);
  box-shadow: var(--shadow-glass-md), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 60%);
  box-shadow: var(--shadow-glass-lg), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--primary);
  background: var(--glass-bg);
}

.btn-outline:hover {
  background-color: var(--glass-bg-strong);
  border-color: var(--primary-light);
}

/* Layout Utilities */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }

.grid-3 { grid-template-columns: repeat(3, 1fr); }

.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 2rem; }
}
