/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
    padding: 5px 60px 25px;
    overflow: hidden;
    width: 100%;
}

/* Banner Section - Responsive Padding */
.banner-section {
    background-position: center !important;
    padding: 400px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 720px) {
    .banner-section {
        padding: 150px 20px 0px;
    }
}

@media screen and (max-width: 480px) {
    .banner-section {
        padding: 150px 20px 0px;
    }
}

/* Banner Content Styles */
.banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Glassy Banner Card */
.banner-card {
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    padding: 25px 30px;
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); */
    display: inline-block;
    max-width: 100%;
}

.banner-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #ffffff;
}

.banner-title-highlight {
    color: #0ba1f7;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.banner-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.banner-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
}

.banner-contact-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.banner-contact-phone {
    font-size: 18px;
    font-weight: 700;
    color: #0ba1f7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.banner-contact-phone:hover {
    color: #ffffff;
    text-decoration: underline;
}

.banner-contact-mail {
    font-size: 15px;
    font-weight: 600;
    color: #0ba1f7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.banner-contact-mail:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Tablet View */
@media screen and (max-width: 1024px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-contact-item {
        font-size: 14px;
    }

    .banner-contact-item svg {
        width: 20px;
        height: 20px;
    }

    .banner-contact-phone {
        font-size: 16px;
    }
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .banner-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    .banner-contact {
        margin-top: 15px;
        gap: 15px;
    }

    .banner-contact-item {
        font-size: 14px;
    }

    .banner-contact-item svg {
        width: 20px;
        height: 20px;
    }

    .banner-contact-phone {
        font-size: 16px;
    }
}

@media screen and (max-width: 615px) {
    .banner-contact {
        margin-top: 15px;
        gap: 0px;
    }
}

/* Small Mobile View */
@media screen and (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    .banner-contact {
        flex-direction: column;
        gap: 0px;
    }

    .banner-contact-item {
        font-size: 13px;
        justify-content: center;
    }

    .banner-contact-phone {
        font-size: 15px;
    }

    .banner-card {
        padding: 15px 20px;
        border-radius: 12px;
    }
}

/* Ensure landscape image fits properly on all screens */
/* @media (min-width: 1025px) {
    /* .hero-section {
        /* min-height: 90vh; */
/* }  */
/* } */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    /* background: linear-gradient(135deg, #6377b5a6 0%, rgba(0, 0, 0, 0.7) 100%); */

    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    grid-template-columns: 1fr;
    /* gap: 30px; */

    justify-content: center !important;
}

.hero-content {
    color: white;
    /* font-size: 34px; */
    font-family: "Poppins", sans-serif;
}

.cab-booking-form-header {
    /* text-align: center;
    background-color: #13111161;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 20px;
    width: fit-content;
    margin-bottom: 15px; */
    align-self: center;

    text-align: center;
    /* background-color: #13111161; */
    margin-top: 15px;
    padding: 10px 30px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    /* margin-bottom: 15px; */
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-title-highlight {
    color: #0ba1f7;
    /* position: relative; */
    display: inline-block;
}

.hero-title-highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0ba1f7;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.hero-form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-form-wrapper #cab-booking-form-container {
    background: #a9aab040;
    max-width: 1160px;
    border: 1px solid #a9aab040;
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Main Content Container */
.main-home-container {
    position: relative;
    background: #f5f5f5;
    padding: 40px 50px;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.content-box p {
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-box + .content-box {
    margin-top: 30px;
}

.content-box h1,
.content-box h2 {
    font-weight: 400;
    margin-bottom: 20px;
}

#cab-booking-form-container {
    margin: 0px;
    min-width: 400px;
    z-index: 2;
}

.hero-form-wrapper #cab-booking-form-container {
    margin: 0;
    min-width: auto;
    width: 100%;
}

#cab-booking-form-container #progressbar {
    margin: 0px;
    margin-bottom: 20px;
}

.content-box img {
    max-width: 120px;
    margin: 10px;
}

/* Tablet View */
@media screen and (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding: 5px 40px 25px;
        background-attachment: scroll;
    }

    .cab-booking-form-header {
        font-size: 14px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        /* gap: 30px; */
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .main-home-container {
        padding: 30px 40px;
    }

    .content-box + .content-box {
        margin-top: 15px;
    }

    #cab-booking-form-container {
        max-width: 100%;
        min-width: auto;
    }

    .main-home-container p {
        font-size: 14px !important;
    }
}

/* Mobile View - OTS Taxi Style */
@media screen and (max-width: 768px) {
    .about-us-image {
        display: none !important;
    }

    .elementor-111 {
        background-color: #1a4563 !important;
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 5px 0 0 0;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        width: 100%;
        display: block;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0px 10px 10px;
    }

    .hero-content {
        padding: 15px 10px;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-title-highlight::after {
        height: 3px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-form-wrapper {
        padding: 0;
    }

    .hero-form-wrapper #cab-booking-form-container {
        background: #a9aab040;
        border-radius: 12px;
        padding: 25px 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin: 0;
    }

    .main-home-container {
        flex-direction: column;
        padding: 10px 20px;
        gap: 10px !important;
        min-height: auto;
        background-color: #f5f5f5;
        display: block;
    }

    #cab-booking-form-container {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #cab-booking-form-container #progressbar {
        margin-bottom: 25px;
        padding: 0 10px;
    }

    #cab-booking-form-container #progressbar li {
        font-size: 10px;
        padding: 0 5px;
    }

    #cab-booking-form-container #progressbar li:before {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }

    .content-wrapper {
        width: 100%;
        padding: 0;
        background: #f5f5f5;
    }

    .content-box {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
    }

    .content-box:last-child {
        border-bottom: none;
    }

    .content-box + .content-box {
        margin-top: 0;
    }

    .content-box h1,
    .content-box h2 {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .content-box p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .content-box img {
        max-width: 80px;
        margin: 8px;
    }

    .vehicle-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .rate-options {
        flex-direction: column;
        gap: 12px;
    }

    /* Form field improvements for mobile */
    #msform input,
    #msform select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }

    #msform .fs-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    #msform .fs-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .location-row {
        margin-bottom: 15px;
    }

    .autocomplete-container {
        margin-bottom: 12px;
    }
}

/* Small Mobile View */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 5px 0 0 0;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-form-wrapper {
        padding: 0;
    }

    .hero-form-wrapper #cab-booking-form-container {
        padding: 20px 15px;
    }

    #cab-booking-form-container {
        padding: 0;
        border-radius: 0;
    }

    #cab-booking-form-container #progressbar {
        margin-bottom: 20px;
    }

    #cab-booking-form-container #progressbar li {
        font-size: 9px;
    }

    #cab-booking-form-container #progressbar li:before {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 11px;
    }

    .content-wrapper {
        padding: 0;
    }

    .content-box {
        padding: 25px 15px;
    }

    .content-box h1,
    .content-box h2 {
        font-size: 20px;
    }

    .content-box p {
        font-size: 13px;
    }

    #msform .fs-title {
        font-size: 20px;
    }

    #msform .fs-subtitle {
        font-size: 13px;
    }

    #msform input,
    #msform select {
        padding: 10px 12px;
        font-size: 15px;
    }
}

/* Banner Form Header - At bottom of banner, sitting on hero */
.banner-form-header {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    padding: 10px 30px;
    border-radius: 12px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-form-header .fs-title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.banner-form-header .fs-title span {
    color: #ffffff;
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .banner-form-header {
        font-size: 14px;
    }

    .banner-form-header .fs-title {
        font-size: 14px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .banner-form-header {
        font-size: 14px;
        padding: 8px 30px;
    }

    .banner-form-header .fs-title {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .banner-form-header {
        font-size: 14px;
        padding: 6px 30px;
    }

    .banner-form-header .fs-title {
        font-size: 14px;
    }
}
