/* 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;
}

/* 4. Secondary Outline (Navy Blue Border) */
.btn-outline-secondary {
    background: #0276E233;

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

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

.btn:hover {
    transform: translateY(-4px);
    /* Upward Float Effect */
    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;
    /* Pill shape for Hero */
    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 {
    color: #1a1a1a !important;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.passenger-counter .btn-link:hover {
    color: #00c767 !important;
  
}

/* 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;
    /* Figma ka brand green */
    padding: 50px;
    border-radius: 25px;
    position: relative;
}

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

/* Footer Links & Socials */
.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;
    }
}