/* ========== RIDE-STYLE HERO ========== */
/* Dark cinematic hero: "Book a Creator Like a Ride" */

.hero-ride {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  width: 100%;
}

.hero-ride-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.75) 100%),
    url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?w=1920') center/cover;
  z-index: 0;
}

.hero-ride-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-ride-content {
  color: #000000;
}

.hero-ride-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #000000;
  text-shadow: none;
}

.hero-ride-title em {
  font-style: italic;
  color: #FF8C00;
  text-shadow: none;
}

.hero-ride-subtitle {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: none;
}

/* Service buttons row */
.hero-ride-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-ride-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 12px;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.hero-ride-btn:hover {
  background: rgba(255,140,0,0.1);
  border-color: #FF8C00;
}

.hero-ride-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #FF8C00;
}

/* Ribbon banner - orange */
.hero-ride-banner {
  display: inline-block;
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
  margin-top: 0.5rem;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4);
}

/* Phone mockup - right side */
.hero-ride-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-ride-phone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 9/19;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 
    0 0 0 3px #333,
    0 0 0 6px #1a1a1a,
    0 25px 50px -12px rgba(0,0,0,0.6),
    0 0 60px rgba(255, 140, 0, 0.15);
}

.hero-ride-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Fake app UI inside phone */
.hero-ride-phone-ui {
  padding: 1.5rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-ride-phone-map {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?w=400') center/cover;
  opacity: 0.5;
}

.hero-ride-phone-card {
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  position: relative;
  z-index: 2;
}

.hero-ride-phone-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.hero-ride-phone-card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.hero-ride-phone-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.hero-ride-phone-card-time {
  color: #4ADE80;
  font-weight: 600;
}

.hero-ride-phone-card-price {
  color: #FF8C00;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-ride-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .hero-ride-content {
    order: 1;
  }
  
  .hero-ride-phone {
    order: 0;
    padding: 0.5rem 0 0;
  }
  
  .hero-ride-phone-frame {
    width: 180px;
  }
  
  .hero-ride-buttons {
    justify-content: center;
  }
  
  .hero-ride-banner {
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-ride {
    min-height: auto;
    padding: 6.5rem 1rem 2.5rem;
  }
  
  .hero-ride-inner {
    gap: 1rem;
  }
  
  .hero-ride-title {
    font-size: 1.75rem;
  }
  
  .hero-ride-phone-frame {
    width: 140px;
  }
  
  .hero-ride-phone {
    padding: 0;
  }
  
  .hero-ride-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  
  .hero-ride-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }
  
  .hero-ride-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .hero-ride-banner {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
  }
}
