/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-elementor/
Description: Child theme for Hello Elementor Theme
Author: Elementor Team
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Import Parent Styles */
@import url('../hello-elementor/style.css');

/* Bharat One Way Taxi Custom CSS */
:root {
    --primary-color: #E64A19;
    --primary-color-dark: #BF360C;
    --secondary-color: #FF8A65;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #F5F5F5;
    --white: #FFFFFF;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --info-color: #2196F3;
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

/* Navigation Styles */
.primary-navigation {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.nav-menu a {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    transition: all 0.3s !important;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color) !important;
}

.nav-menu .current-menu-item > a {
    color: var(--primary-color) !important;
}

/* Button Styles */
.button {
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.button-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.button-primary:hover {
    background: var(--primary-color-dark) !important;
    transform: translateY(-2px) !important;
}

/* Section Styles */
.section-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.section-bg-light {
    background: var(--background-light);
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #cccccc;
}

.footer a {
    color: #cccccc;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .section-hero {
        min-height: 100vh;
        padding: 60px 20px;
    }

    .button {
        font-size: 14px !important;
        padding: 12px 24px !important;
    }
}

/* Elementor Specific */
.elementor-section {
    position: relative;
}

.elementor-widget-container {
    width: 100%;
}

/* Hide Elementor's default CSS for better custom control */
.hfe-top-bar {
    background: var(--primary-color);
}

.hfe-main-header {
    background: var(--white);
}

/* Hero Section Specific */
.hero-promo-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: #FFEB3B;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-heading {
    color: var(--white);
    margin-bottom: 30px;
}

.hero-subheading {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 20px;
}

.hero-stats {
    color: #FFEB3B;
    margin-bottom: 40px;
}

/* Trip Type Toggle */
.trip-type-button {
    border-radius: 20px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

.trip-type-button.active {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.trip-type-button:not(.active) {
    background: #F5F5F5;
    color: var(--text-dark);
    border: 2px solid transparent;
}

.trip-type-button:not(.active):hover {
    border-color: var(--primary-color);
}

/* Form Inputs */
.hero-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-cta-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* Trust Icons */
.trust-icons {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dark);
}