/* Custom Premium Style for Ride07 Taxi Services (ride07.in) */

:root {
    --primary-color: #f49420;
    --primary-hover: #d37c16;
    --secondary-color: #1c2331;
    --accent-success: #25d366;
    --accent-success-hover: #20ba56;
    --bg-light: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
}

body {
    font-family: 'Outfit', sans-serif !important;
    background-color: #fdfdfd;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Header & Top Bar Navigation */
.top-info-bar {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}
.top-info-bar .phone-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.top-info-bar .phone-link:hover {
    color: var(--primary-color);
}
.main-navbar-header .navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.site-logo {
    max-height: 65px;
    width: auto;
    margin: 0;
}
.logo-text {
    font-weight: 800;
    font-size: 20px;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}
.main-navbar-header .nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 15px;
    transition: color 0.2s ease;
}
.main-navbar-header .nav-link:hover,
.main-navbar-header .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.home-hero-section {
    background-image: url("../../storage/app_img/banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.local-hero-section {
    background-image: url("../../storage/app_img/taxi-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Glassmorphism Quote Form */
.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}
.form-group label {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.form-control {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 148, 32, 0.15);
}

/* Card Hover Interactions */
.location-card, .fleet-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    border-radius: 12px !important;
    overflow: hidden;
}
.location-card img {
    height: 220px;
    object-fit: cover;
}
.location-card:hover, .fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Primary/Secondary Buttons */
.btn-warning {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-warning:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-1px);
}
.btn-success {
    background-color: var(--accent-success) !important;
    border-color: var(--accent-success) !important;
    color: #fff !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-success:hover {
    background-color: var(--accent-success-hover) !important;
    border-color: var(--accent-success-hover) !important;
    transform: translateY(-1px);
}

/* Trust Signals section */
.trust-signals {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* FAQ Collapsible Items */
.faq-item {
    transition: background-color 0.2s ease;
}
.faq-trigger {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.faq-trigger:hover {
    color: var(--primary-color) !important;
}

/* Footer Section */
.main-footer {
    background-color: #0f141f !important;
}
.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
.footer-links li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
    padding: 6px 0;
}
.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Sticky Mobile Conversion Bar */
.sticky-mobile-cta-bar {
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: none;
    background-color: #fff;
}
.btn-mobile-call {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    line-height: 60px;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-mobile-call:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-hover);
}
.btn-mobile-whatsapp {
    background-color: var(--accent-success);
    color: #fff;
    text-decoration: none;
    line-height: 60px;
    font-size: 16px;
}
.btn-mobile-whatsapp:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--accent-success-hover);
}

/* Custom Error Label Styling for Validation */
label.error {
    color: #e53e3e !important;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

/* Media Queries for Mobile Responsiveness & Viewports */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px; /* Space for mobile sticky CTA bar */
    }
    .sticky-mobile-cta-bar {
        display: flex !important;
    }
    .home-hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .display-3 {
        font-size: 38px !important;
        font-weight: 800 !important;
    }
    .lead {
        font-size: 16px !important;
    }
    .site-logo {
        max-height: 55px;
        margin: 0;
    }
}

/* ----------------------------------------------------
   UX/UI & CONVERSION OPTIMIZATIONS
   ---------------------------------------------------- */

/* Trust Badges Bar Styling */
.trust-badge-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.trust-badge-item {
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.trust-badge-icon {
    font-size: 24px;
    color: var(--primary-color);
}
.trust-badge-text h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trust-badge-text p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Fleet Grid Section */
.fleet-card {
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
    border-radius: 8px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    border-color: #cbd5e1 !important;
}
.fleet-card-img-wrapper {
    height: 170px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px;
}
.fleet-card-img-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}
.fleet-features {
    font-size: 12px;
    color: #475569;
    background-color: #f8fafc;
    border-radius: 6px;
    padding: 8px 12px;
}
.fleet-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--secondary-color);
}

/* 3-Step Booking Process Timeline */
.process-step {
    text-align: center;
    position: relative;
    padding: 15px;
}
.process-step-num {
    width: 48px;
    height: 48px;
    background-color: #f8fafc;
    color: var(--secondary-color);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 12px auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.process-step.active .process-step-num {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Floating Actions for Mobile */
.floating-mobile-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.floating-cta-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.floating-cta-btn:hover {
    transform: scale(1.05);
    color: #ffffff;
}
.floating-cta-whatsapp {
    background-color: #25d366;
}
.floating-cta-call {
    background-color: #f49420;
}

@media (max-width: 767px) {
    .floating-mobile-cta {
        display: none !important;
    }
}

