@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ========================= */
/* RESET */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f9fa;
    color: #222;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: #000 !important;
}

.navbar a {
    font-weight: 600;
    font-size: 16px;
}

.nav-link {
    color: #333 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* ========================= */
/* CAROUSEL */
/* ========================= */

.carousel-item {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */

.carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* CAPTION */

.carousel-caption {
    z-index: 2;
    bottom: 12%;
    background: rgba(0, 0, 0, 0.60);
    padding: 35px;
    border-radius: 20px;
    max-width: 900px;
    margin: auto;
    left: 8%;
    right: 8%;
}

/* TITLE */

.carousel-caption h5 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 20px;
}

/* TEXT */

.carousel-caption p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    width: 100%;
    margin: auto;
    line-height: 1.7;
}

/* BUTTON */

.carousel-caption .btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 12px;
}

/* ========================= */
/* RIDE REQUEST SECTION */
/* ========================= */

.ride-request {
    background: #f8f9fa;
    padding: 60px 20px;
}

/* FORM BOX */

.ride-form {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

/* FORM TITLE */

.ride-request h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ride-request p {
    font-size: 22px;
    color: #555;
    margin-bottom: 30px;
}

/* INPUTS / SELECTS */

.ride-form .form-control,
.ride-form .form-select {
    font-size: 22px;
    font-weight: 500;
    padding: 18px 20px;
    height: 65px;
    border-radius: 12px;
    border: 2px solid #ddd;
    color: #222;
}

/* PLACEHOLDER TEXT */

.ride-form .form-control::placeholder,
.ride-form textarea::placeholder {
    font-size: 20px;
    color: #666;
    font-weight: 500;
}

/* SELECT TEXT */

.ride-form select {
    font-size: 22px;
    font-weight: 500;
}

/* TEXTAREA */

.ride-form textarea {
    min-height: 100px;
    font-size: 22px;
    padding-top: 18px;
    resize: none;
}

/* BUTTON */

.ride-form .btn {
    font-size: 24px;
    font-weight: 700;
    padding: 18px;
    height: auto;
    border-radius: 12px;
}

/* ========================= */
/* SECTION GENERAL */
/* ========================= */

section {
    padding: 90px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

section p {
    color: #555;
    line-height: 1.8;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services {
    background: #f8f9fa;
}

.service-box {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    height: 100%;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-box i {
    font-size: 50px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    color: #555;
}

/* ========================= */
/* ABOUT */
/* ========================= */

#about {
    background: #fff;
}

#about img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

#about h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

#about p {
    color: #555;
}

/* ========================= */
/* SAFETY */
/* ========================= */

#safety {
    background: #f8f9fa;
}

#safety .service-box {
    text-align: left;
}

/* ========================= */
/* FAQ */
/* ========================= */

.accordion-button {
    font-weight: 700;
    padding: 18px;
}

.accordion-body {
    line-height: 1.8;
    color: #555;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact {
    background: #fff;
}

.contact form {
    border-radius: 20px;
}

.contact .form-control {
    height: 55px;
    border-radius: 12px;
}

.contact textarea {
    height: auto !important;
}

.contact button {
    height: 55px;
    border-radius: 12px;
    font-weight: 700;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
    background: #111;
    padding: 25px 0;
}

footer p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

/* ========================= */
/* WHATSAPP FLOAT */
/* ========================= */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe5d;
    transform: scale(1.08);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width: 767px) {

    .navbar-brand {
        font-size: 22px;
    }

    .carousel-item {
        min-height: 850px;
    }

    .carousel-caption {
        bottom: 6%;
        padding: 20px;
        left: 5%;
        right: 5%;
    }

    .carousel-caption h5 {
        font-size: 1.7rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .ride-request {
        padding: 50px 15px;
    }

    .ride-request h2 {
        font-size: 34px;
    }

    .ride-request p {
        font-size: 18px;
    }

    .ride-form {
        padding: 25px 18px;
    }

    .ride-form .form-control,
    .ride-form .form-select,
    .ride-form textarea {
        font-size: 18px;
        height: auto;
        padding: 14px;
        margin-bottom: 10px;
    }

    .ride-form .btn {
        font-size: 20px;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    #about {
        text-align: center;
    }

    #about img {
        margin-bottom: 25px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }
}