/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Maven+Pro:wght@400;500;600;700;800&display=swap');

/* Bootstrap Icons (Optional but recommended) */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
    --brand-green: #00c767;

    --dark-navy: #0d1223;
    --text-gray: #6c757d;
    --white: #ffffff;
    --bg-light: #fdfdfd;
}

body {
    font-family: 'Maven Pro', sans-serif;
    background-color: var(--bg-light);

    overflow-x: hidden;
}

/* Hero Title (Large) */
h1,
.main-heading {
    font-family: 'ADLaM Display', cursive;
    font-size: 64px;
    color: var(--brand-green);
    line-height: 1.1;
    font-weight: 400;
}

/* Section Headings */
h2,
.normal-heading {
    font-family: 'ADLaM Display', cursive;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Form Headings */
h4,
.card-title {
    font-family: 'ADLaM Display', cursive;
    font-size: 36px;
    color: var(--brand-green);
    font-weight: 400;
    line-height: 100%;
}

.btn {
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    height: 58px;
    /* Figma Exact Height */
    width: 243px;
    /* Figma Exact Width */
    border-radius: 12px;
    /* Rounded Corners */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

/* 1. Primary (Solid Green) */
.btn-primary {
    background-color: #00c767 !important;
    border-color: #00c767 !important;
    color: #ffffff !important;
}

/* 2. Secondary (Solid Navy Blue) */
.btn-secondary {
    background-color: #0d1223 !important;
    border-color: #0d1223 !important;
    color: #ffffff !important;
}

/* 3. Primary Outline (Green Border) */
.btn-outline-primary {
    background: #00B05033;

    border-color: #00c767 !important;
    color: #ffff !important;
}

.btn-outline-secondary {
    background: #0276E233;

    border-color: #0276E233 !important;
    color: #ffffff !important;
}

/* --- Hover Effects --- */

.btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    opacity: 0.95;
}


.btn-outline-primary:hover {
    background-color: #00c767 !important;
    color: #ffffff !important;
}

.btn-outline-secondary:hover {
    background-color: #0d1223 !important;
    color: #ffffff !important;
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
        font-size: 16px;
    }
}

.normal-text {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
}

.btn-primary-green {
    background-color: var(--brand-green);
    color: white;
    border-radius: 12px;
    padding: 12px 30px;
    border: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-dark-navy {
    background-color: var(--dark-navy);
    color: white;
    border-radius: 50px;

    padding: 10px 30px;
    border: none;
}

/* Global Form Inputs */
.form-control,
.form-select {
    border: 1px solid #919191 !important;
    border-radius: 12px !important;
    height: 54px;
    font-weight: 600;
    font-size: 16px;
}

@media (min-width: 1400px) {

    .container,
    .container-fluid {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
        max-width: 100% !important;
    }

    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}


@media (max-width: 1399px) {

    .container,
    .container-fluid {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }

    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.main-heading {
    font-family: 'ADLaM Display', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--brand-green);
}

.normal-heading {
    font-family: 'ADLaM Display', sans-serif;
    font-size: 36px;
    font-weight: 400;
}

.hero-sub-bold {
    font-family: 'Maven Pro', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.sub-normal-heading {
    font-family: 'Maven Pro', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.normal-text {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.heading-with-text {
    font-family: 'Maven Pro', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.btn-custom {
    font-family: 'Maven Pro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 35px;
}


@media (max-width: 768px) {
    .main-heading {
        font-size: 40px;
    }

    .hero-sub-bold {
        font-size: 22px;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;

    background-image: url('../assets/img/hero-woman.png');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0) 100%);

    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;

}

.hero-title {
    color: #00c767;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}


.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Buttons Styling */
.btn-dark-blue {
    background-color: #0d1223;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    margin-right: 15px;
    border: none;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: bold;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: black;
}

.passenger-counter {
    height: 58px;

    border: 1px solid #919191 !important;
    /* Standard border color */
    border-radius: 12px !important;
    padding: 0 12px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
}

.passenger-counter .btn-link:hover {
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    background: transparent !important;
}


.passenger-counter .btn-link:active,
.passenger-counter .btn-link:focus {
    transform: none !important;
    box-shadow: none !important;
}

.passenger-counter .btn-link {
    color: #1a1a1a !important;
    font-size: 20px;
    text-decoration: none;

    display: flex;
    align-items: center;
}


/* Number Input */
#passengerCount {
    background: transparent;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    border: none !important;
    box-shadow: none !important;
    pointer-events: none;

}


#passengerCount::-webkit-inner-spin-button,
#passengerCount::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form label {
    font-size: 16px;
    font-weight: 500 !important;
}

.custom-date-input {
    border-radius: 10px;
    border: 1px solid #919191 !important;
}

.custom-select {

    border-radius: 10px;
    border: 1px solid #919191 !important;
}

.drive-with-us-section-img {
    padding: 100px 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('../assets/img/driver-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.drive-card {
    background-color: #00B050;

    padding: 50px;
    border-radius: 25px;
    position: relative;
}

.drive-card i {
    font-size: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00c767;
}

.social-icons a {
    color: #00c767;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Response Fix for Mobile */
@media (max-width: 991px) {
    .drive-card {
        padding: 30px 20px;
    }

    .drive-with-us-section {
        padding: 50px 0;
    }
}

.icon:hover {
    animation: softBounce 0.5s ease-in-out;
    cursor: pointer;
}

@keyframes softBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.form-check-input:checked {
    background-color: #00b050;

    border-color: #00b050;
}


.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 176, 80, 0.25);
    border-color: #00b050;
}

.select2-container--default .select2-selection--single {
    /* background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important; */
    border-radius: 6px !important;
    height: 41px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.25s ease-in-out !important;
}

/* Default Text/Number Color */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    /* color: #94a3b8 !important; */
    font-size: 0.85rem !important;
    padding-left: 12px !important;
    padding-right: 20px !important;
    line-height: 38px !important;
}

/* Chota Arrow Icon */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    /* Arrow ko vertically center lock karna */
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #94a3b8 transparent transparent transparent !important;
}

/* 2. HOVER EFFECT (Mouse upar lane par Green Border aur Soft BG) */
.select2-container--default .select2-selection--single:hover {
    border-color: #00b050 !important;
    /* Premium Green */
    /* background-color: rgba(0, 176, 80, 0.05) !important; */
}

.select2-container--default .select2-selection--single:hover .select2-selection__rendered {
    color: #2e333d !important;
}

/* 3. FOCUS / ACTIVE EFFECT (Jab Dropdown par Click karein) */
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #00b050 !important;
    /* background-color: rgba(0, 176, 80, 0.08) !important; */
    box-shadow: 0 0 8px rgba(0, 176, 80, 0.4) !important;
    /* Neon Green Glow */
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #00b050 transparent !important;
}

/* 4. KHULNE WALE OPTIONS MENU PANEL KI STYLE */
.select2-dropdown {
    /* background-color: #1e293b !important; */
    /* Dark theme container background */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Menu ke ander ke Options Text */
.select2-container--default .select2-results__option {
    color: #242527 !important;
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
}

/* Options par Hover karne se Solid Green background */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #00b050 !important;
    color: #2e333d !important;
}

/* Jo option selected hai uska text green ho jaye menu mein */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(0, 176, 80, 0.15) !important;
    color: #00b050 !important;
    font-weight: 600;
}

.select2-container--default .select2-selection--single {
    position: relative !important;
}

/* 2. Text rendered element ko right side par padding dena taake text cross ke niche na aaye */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 45px !important;
    /* Spacing for cross and arrow both */
}

/* 3. Cross button ko right side par absolute position karna */
.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    /* Vertically center lock */
    margin: 0 !important;
    z-index: 2 !important;
    cursor: pointer !important;
}

/* 4. Arrow icon ki position static lock rakhna */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px !important;
    z-index: 1 !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #334155 !important;
    /* Dark Slate text */
    font-weight: 600 !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #00b050 !important;
    /* Hover arrows turns green */
}

/* 2. Days of the Week Header (Sun, Mon, Tue...) */
span.flatpickr-weekday {
    color: #64748b !important;
    /* Muted corporate blue-gray */
    font-weight: 600 !important;
}

/* 3. SELECTED DATE (Jo date user select karega - Active Highlight) */
.flatpickr-day.selected,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #00b050 !important;
    /* Perfect Premium Green */
    border-color: #00b050 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 176, 80, 0.25) !important;
    /* Custom Glow shadow */
}

/* 4. TODAY DATE FIELD (Aaj ki date ka subtle outline circular shape) */
.flatpickr-day.today {
    border-color: rgba(0, 176, 80, 0.5) !important;
    color: #334155 !important;
    font-weight: 700;
}

.flatpickr-day.today:hover {
    background: rgba(0, 176, 80, 0.1) !important;
    color: #00b050 !important;
}

/* 5. HOVER EFFECT (Normal calendar days par mouse le jane par) */
.flatpickr-day:hover,
.flatpickr-day.focused:hover {
    background: rgba(0, 176, 80, 0.08) !important;
    border-color: transparent !important;
    color: #00b050 !important;
}


.flatpickr-calendar {
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
}

.flatpickr-monthDropdown-months,
.numInputWrapper span {
    background-color: #ffffff !important;
    color: #334155 !important;
    outline: none !important;
}

.flatpickr-monthDropdown-months option {
    background-color: #ffffff !important;
    color: #334155 !important;
    padding: 4px 8px !important;
}


.flatpickr-monthDropdown-months option:hover,
.flatpickr-monthDropdown-months option:focus,
.flatpickr-monthDropdown-months option:active,
.flatpickr-monthDropdown-months option:checked {
    background-color: #00b050 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px #00b050 !important;
}

.flatpickr-months .flatpickr-month {
    fill: #334155 !important;
    color: #334155 !important;
}

/* Static month wrapper text spacing alignment */
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 0 !important;
}

/* Arrows hover dynamic feedback change to Green */
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #00b050 !important;
}

#filterDate.flatpickr-input {
    display: inline-block !important;
    visibility: visible !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
}