/*
Theme Name: Taxi Uber Style Child
Theme URI: https://vtaxi-lille.fr
Description: Child theme optimisé SEO style Uber pour taxis conventionnés - VTAXI LILLE
Author: Expert SEO
Template: generatepress
Version: 1.0.1
*/

/* ==========================================================================
   VARIABLES CSS - Style Uber
   ========================================================================== */
:root {
  --uber-black: #000000;
  --uber-white: #FFFFFF;
  --uber-grey: #545454;
  --uber-light-grey: #EEEEEE;
  --taxi-blue: #0066CC;
  --taxi-yellow: #FFD700;
  --success-green: #00B140;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--uber-grey);
  line-height: 1.6;
  background: var(--uber-white);
}

/* ==========================================================================
   HEADER STYLE UBER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--uber-white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.site-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--uber-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--taxi-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

/* Badge réseau dans header */
.reseau-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--uber-light-grey);
  border-radius: 20px;
  font-size: 12px;
  color: var(--uber-grey);
}

.reseau-badge a {
  color: var(--taxi-blue);
  text-decoration: none;
  font-weight: 600;
}

/* Navigation principale */
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: var(--uber-grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--uber-black);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--taxi-blue);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

/* CTA Button Header */
.btn-call {
  background: var(--uber-black);
  color: var(--uber-white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--taxi-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   HERO SECTION - STYLE UBER
   ========================================================================== */
.hero-uber {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,102,204,0.6) 100%), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 20px 50px;
}

.hero-content {
  max-width: 600px;
  text-align: center;
  color: var(--uber-white);
  z-index: 10;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.btn-primary {
  background: var(--uber-white);
  color: var(--uber-black);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--uber-white);
  padding: 18px 40px;
  border: 2px solid var(--uber-white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--uber-white);
  color: var(--uber-black);
  transform: translateY(-3px);
}

/* ==========================================================================
   SECTIONS SERVICES
   ========================================================================== */
.services-section {
  padding: 60px 20px;
  background: var(--uber-white);
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--uber-black);
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--uber-grey);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--uber-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--taxi-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.service-card.conventionne .service-icon {
  background: var(--taxi-blue);
}

.service-card.classique .service-icon {
  background: var(--taxi-yellow);
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--uber-black);
  margin-bottom: 15px;
}

.service-description {
  color: var(--uber-grey);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: var(--uber-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
  font-size: 18px;
}

/* ==========================================================================
   FOOTER STYLE UBER
   ========================================================================== */
.site-footer {
  background: var(--uber-black);
  color: var(--uber-white);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--uber-white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--uber-white);
}

/* Hubs principaux dans footer */
.liste-hubs {
  list-style: none;
}

.hub-item {
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.hub-item:hover {
  background: rgba(255,255,255,0.1);
}

.hub-item strong {
  color: var(--taxi-yellow);
  font-size: 16px;
}

.hub-item small {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-legal {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.reseau-inline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.reseau-inline a {
  color: var(--taxi-blue);
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   FORMULAIRE CONTACT UBER-STYLE
   ========================================================================== */
.contact-form-uber {
  background: var(--uber-white);
  padding: 60px 20px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--uber-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--uber-black);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--uber-light-grey);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--taxi-blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.btn-submit {
  width: 100%;
  background: var(--uber-black);
  color: var(--uber-white);
  padding: 18px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--taxi-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   ANIMATIONS AU SCROLL
   ========================================================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu burger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--uber-black);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}