/**
 * TAXI HITS - Style Override 2025
 * Couleurs et polices seulement - pas de changement de layout
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --th-primary: #F59E0B;
    --th-primary-dark: #D97706;
    --th-dark: #111827;
    --th-gray: #6B7280;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-default {
    background: rgba(255, 255, 255, 0.98) !important;
    border: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-default .navbar-nav > li > a {
    font-weight: 500;
    color: #111827 !important;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #F59E0B !important;
}

/* Boutons navbar */
.navbar-default .navbar-nav > li.login-item > a {
    border: 2px solid #F59E0B !important;
    color: #F59E0B !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    background: transparent !important;
}

.navbar-default .navbar-nav > li.login-item > a:hover {
    background: #F59E0B !important;
    color: white !important;
}

.navbar-default .navbar-nav > li.signup-item > a {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    border: none !important;
}

/* ============================================
   HERO BANNER - Couleur de fond seulement
   ============================================ */

.cps-banner .cps-banner-item,
.cps-banner-item-10 {
    background: linear-gradient(135deg, #111827 0%, #1F2937 50%, #374151 100%) !important;
}

.cps-banner .overlay {
    background: transparent !important;
}

/* Titre avec "Transportation" en orange */
.cps-banner-title {
    color: #F59E0B !important;
}

.cps-banner-title span {
    color: #F59E0B !important;
}

/* Texte hero */
.cps-banner-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ============================================
   FORMULAIRE - Fond blanc/glass
   ============================================ */

.booking-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100% !important;
    max-width: 100% !important;
}

.booking-form input.form-control,
.booking-form select.form-control {
    background: #F9FAFB !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 10px !important;
    color: #111827 !important;
    transition: all 0.3s ease;
}

.booking-form input.form-control:focus,
.booking-form select.form-control:focus {
    border-color: #F59E0B !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15) !important;
}

/* ============================================
   BOUTONS - Couleur orange
   ============================================ */

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    border: none !important;
    color: white !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Bouton Sign up hero - plus gros et arrondi */
.cps-button-group .btn-primary {
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-size: 16px !important;
}

/* ============================================
   SECTIONS - Titres avec span orange
   ============================================ */

.cps-section-title span,
.cps-banner-title span,
.blue-color {
    color: #F59E0B !important;
}

/* ============================================
   TEXTE - Taille augmentée
   ============================================ */

.cps-service-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #6B7280 !important;
}

.cps-section-text {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

/* ============================================
   SERVICE BOXES - Hover effect
   ============================================ */

.cps-service-box {
    transition: all 0.3s ease;
}

.cps-service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CTA SECTION - Orange gradient
   ============================================ */

.cps-cta.cps-gray-bg {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
}

.cps-cta .cps-cta-title {
    color: white !important;
}

.cps-cta .cps-cta-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================
   FOOTER
   ============================================ */

footer,
footer .cps-footer-upper {
    background: #111827 !important;
}

footer .widget-menu li a,
footer .cps-footer-widget-area a,
footer p {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .cps-socials a {
    transition: all 0.3s ease;
}

footer .cps-socials a:hover {
    background: #F59E0B !important;
}

footer .widget-menu li a:hover,
footer .cps-footer-widget-area a:hover {
    color: #F59E0B !important;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background: #9CA3AF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6B7280;
}
