/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red: #e31e24;
  --red-dark: #b71c1c;
  --red-light: #ff5252;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1a1a1a;
  --card: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f0;
  --muted: #888;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
.gradient-text { background: linear-gradient(135deg, var(--red), #ff8a00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 4px 20px rgba(227,30,36,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,30,36,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADS ===== */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.section-tag { display: inline-block; background: rgba(227,30,36,0.12); color: var(--red); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; border: 1px solid rgba(227,30,36,0.25); }

/* ===== BADGE PILL ===== */
.badge-pill { display: inline-block; background: rgba(227,30,36,0.12); color: var(--red-light); font-size: 0.85rem; font-weight: 600; padding: 8px 18px; border-radius: 50px; margin-bottom: 20px; border: 1px solid rgba(227,30,36,0.3); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(13,13,13,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: 52px; object-fit: contain; }
.nav-links { display: flex; gap: 8px; margin-left: auto; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7); transition: var(--transition); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; background: radial-gradient(ellipse at 60% 50%, rgba(227,30,36,0.08) 0%, transparent 60%), var(--dark); padding-top: 80px; overflow: hidden; }
.hero-bg-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e31e24' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; padding: 80px 0; }
.hero-title { margin-bottom: 20px; }
.hero-sub { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 20px; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-size: 1.4rem; font-weight: 800; color: var(--white); font-family: 'Outfit', sans-serif; }
.trust-label { font-size: 0.75rem; color: var(--muted); }
.trust-divider { width: 1px; height: 36px; background: var(--border); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-glow { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(227,30,36,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-logo-img { width: 380px; height: 380px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 20px 60px rgba(227,30,36,0.3)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.floating-card { position: absolute; background: rgba(30,30,30,0.9); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; z-index: 3; box-shadow: var(--shadow); animation: float-card 3s ease-in-out infinite; }
.floating-card .fc-icon { font-size: 1.4rem; }
.floating-card strong { display: block; font-size: 0.85rem; color: var(--white); }
.floating-card small { font-size: 0.72rem; color: var(--muted); }
.card-1 { top: 10%; left: -20px; animation-delay: 0s; }
.card-2 { bottom: 25%; right: -30px; animation-delay: 1s; }
.card-3 { bottom: 5%; left: 0; animation-delay: 2s; }
@keyframes float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== PARTNERS ===== */
.partners { background: var(--dark2); padding: 32px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.partners-label { text-align: center; color: var(--muted); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.partners-track { overflow: hidden; }
.partners-list { display: flex; gap: 48px; animation: scroll-left 20s linear infinite; width: max-content; }
.partners-track:hover .partners-list { animation-play-state: paused; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-name { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.4); white-space: nowrap; transition: color 0.3s; }
.partner-name:hover { color: var(--white); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(227,30,36,0.04), transparent); opacity: 0; transition: var(--transition); }
.service-card:hover { border-color: rgba(227,30,36,0.4); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; color: var(--white); }
.service-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.service-tag { display: inline-block; margin-top: 16px; background: rgba(227,30,36,0.15); color: var(--red-light); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.service-tag-new { background: rgba(255,152,0,0.15); color: #ffb74d; }

/* ===== HOW IT WORKS ===== */
.howitworks { padding: 100px 0; background: var(--dark2); }
.steps-row { display: flex; align-items: stretch; gap: 0; justify-content: center; flex-wrap: wrap; }
.step-item { flex: 1; min-width: 180px; max-width: 240px; text-align: center; padding: 32px 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.step-item:hover { border-color: rgba(227,30,36,0.4); transform: translateY(-6px); }
.step-number { font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.step-icon { font-size: 2.8rem; margin-bottom: 14px; }
.step-item h3 { margin-bottom: 10px; }
.step-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.step-arrow { font-size: 1.8rem; color: var(--red); padding: 0 16px; flex-shrink: 0; }

/* ===== STATS ===== */
.stats { padding: 100px 0; position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(227,30,36,0.1) 0%, rgba(183,28,28,0.05) 100%); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 2; }
.stat-card { text-align: center; padding: 40px 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); backdrop-filter: blur(10px); transition: var(--transition); }
.stat-card:hover { border-color: rgba(227,30,36,0.4); transform: translateY(-4px); }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; color: var(--white); }
.stat-suffix { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--red); }
.stat-label { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* ===== APP SECTION ===== */
.app-section { padding: 100px 0; background: var(--dark3); }
.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-content h2 { margin-bottom: 16px; }
.app-content > p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.app-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.app-features li { color: var(--text); font-size: 0.95rem; }
.app-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.app-btn { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px 22px; transition: var(--transition); }
.app-btn:hover { border-color: var(--red); background: rgba(227,30,36,0.08); transform: translateY(-2px); }
.app-btn small { display: block; font-size: 0.72rem; color: var(--muted); }
.app-btn strong { display: block; font-size: 1rem; color: var(--white); }

/* Phone mockup */
.app-visual { display: flex; justify-content: center; }
.phone-mockup { width: 260px; background: var(--card); border-radius: 36px; border: 2px solid var(--border); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.phone-screen { padding: 0; }
.phone-header { display: flex; align-items: center; gap: 10px; padding: 16px; background: var(--dark2); border-bottom: 1px solid var(--border); font-weight: 700; font-size: 0.9rem; }
.phone-logo { width: 28px; height: 28px; object-fit: contain; }
.phone-map { position: relative; height: 160px; background: #1a2530; overflow: hidden; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 24px 24px; }
.map-pin { position: absolute; font-size: 1.4rem; }
.rider-pin { top: 40%; left: 30%; animation: move-rider 3s ease-in-out infinite; }
.dest-pin { top: 20%; right: 20%; }
@keyframes move-rider { 0%,100% { left: 30%; } 50% { left: 45%; } }
.map-route { position: absolute; top: 30%; left: 35%; width: 80px; height: 2px; background: linear-gradient(90deg, var(--red), transparent); border-radius: 2px; }
.phone-card { padding: 16px; }
.phone-card p { font-size: 0.85rem; margin-bottom: 10px; }
.progress-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--red), #ff8a00); border-radius: 4px; animation: progress 3s ease-in-out infinite; }
@keyframes progress { 0% { width: 40%; } 100% { width: 85%; } }
.phone-card small { color: var(--muted); font-size: 0.78rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.testi-card:hover { transform: translateY(-4px); border-color: rgba(227,30,36,0.3); }
.testi-card.featured { border-color: rgba(227,30,36,0.5); background: linear-gradient(135deg, rgba(227,30,36,0.06), var(--card)); }
.testi-stars { color: #ffd700; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testi-author small { font-size: 0.78rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--dark2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon { font-size: 1.4rem; width: 48px; height: 48px; background: rgba(227,30,36,0.1); border: 1px solid rgba(227,30,36,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 2px; }
.contact-item span { font-size: 0.9rem; color: var(--muted); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--dark3); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: var(--transition); outline: none; appearance: none; -webkit-appearance: none; }
.form-group select option { background: var(--dark3); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,30,36,0.1); }
.form-group textarea { resize: vertical; }
.form-success { display: none; margin-top: 16px; padding: 14px; background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.3); border-radius: 10px; color: #81c784; font-size: 0.9rem; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { height: 56px; width: 56px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.social-btn:hover { border-color: var(--red); background: rgba(227,30,36,0.1); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 24px 0; color: var(--muted); font-size: 0.85rem; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; background: var(--red); color: #fff; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(227,30,36,0.4); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(227,30,36,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0; top: 72px; background: rgba(13,13,13,0.98); backdrop-filter: blur(20px); padding: 40px 24px; gap: 8px; z-index: 999; }
  .nav-links.open + .nav-cta { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 0; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-logo-img { width: 260px; height: 260px; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 20px; }
  .step-arrow { transform: rotate(90deg); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .app-inner { grid-template-columns: 1fr; text-align: center; }
  .app-features { text-align: left; }
  .app-buttons { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .trust-divider { width: 36px; height: 1px; }
}
