/* ================================
   GLOBAL STYLES
==================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;   /* prevent sideways scroll */
}

body {
    background: #ffffff;
    color: #000;
}


/* ================================
   NAVIGATION
==================================*/
.header {
    background: black;
    padding: 10px 0;
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-logo img {
    width: 260px;
}

/* Hamburger button */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 35px;
    cursor: pointer;
    margin-top: 10px;
}

.nav-toggle div {
    height: 4px;
    background: white;
    width: 100%;
}


/* ================================
   FULLSCREEN OVERLAY MENU
==================================*/
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.nav-overlay.open {
    display: flex;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.nav-overlay-menu {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.nav-overlay-menu a {
    color: #ffd200;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}


/* ================================
   HERO SECTION
==================================*/
.hero {
    position: relative;
    width: 100%;
    height: 650px;                        /* slightly taller for nice spacing */
    background: url("images/hero-bg.png") center/cover no-repeat;
    overflow: visible;                     /* allow cars to overflow downward */
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: absolute;
    top: 28%;
    width: 100%;
    text-align: center;
    color: white;
}

.phone-btn {
    display: inline-block;
    margin: 15px auto;
    padding: 12px 40px;
    background: black;
    border: 2px solid #ffd200;
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}

.hero-cars {
    position: absolute;
    bottom: -155px;             /* makes cars overlap into next section */
    width: 65%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    max-width: 780px;
    pointer-events: none;
}
.hero-subtext {
    color: white;             /* taxi yellow */
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.6); /* helps visibility on dark bg */
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.call-btn {
    background: #FFD400;
    color: #000;
    border: 2px solid white;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: 2px solid white;
}



/* ================================
   SERVICES SECTION (3-CARD)
==================================*/

.services {
    padding: 180px 20px 60px 20px;   /* 180px top allows hero cars to overlap */
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.services-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding-bottom: 25px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.service-card h3 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 20px;
    color: #1e70ff;
    letter-spacing: 1px;
}

.service-card p {
    padding: 0 20px 10px 20px;
    line-height: 1.6;
    color: #444;
}


/* ================================
   INTRO
==================================*/
.intro {
    background: #ffd200;
    padding: 60px 20px;
    text-align: center;
}

.intro h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.intro h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.intro p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.btn-black {
    display: inline-block;
    padding: 12px 40px;
    background: black;
    color: white;
    text-decoration: none;
    border: 2px solid #ffd200;
    font-weight: bold;
}


/* ================================
   WHY US
==================================*/
.why-us {
    background: #eee;
    padding: 60px 20px;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 40px;
}

.why-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-item {
    text-align: center;
}

.why-item img {
    width: 60px;
    margin-bottom: 15px;
}

.why-item h4 {
    margin-bottom: 10px;
}


/* ================================
   OPTIONS
==================================*/
.options {
    padding: 60px 20px;
}

.options h2 {
    text-align: center;
    margin-bottom: 40px;
}

.options-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.options-text {
    flex: 1;
    min-width: 280px;
}

.options-text h3 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.options-text p {
    line-height: 1.6;
}

.options-images img {
    width: 100%;
    max-width: 480px;
    border-radius: 8px;
}

.contact-section {
    padding: 60px 20px;
    text-align: center;
    background: #f6f6f6;
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-submit {
    background: #000;
    color: #fff;
    padding: 14px 26px;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    display: block;
    margin: 30px auto 0;
}

.contact-submit:hover {
    background: #333;
}

/* ================================
   FINAL CTA
==================================*/
.final-cta {
    background: #000;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.final-cta h3 {
    margin-bottom: 20px;
}


/* ================================
   MOBILE ONLY
==================================*/
@media (max-width: 900px) {

    .hero {
        height: 600px;
    }

    .hero-cars {
        width: 90%;
        bottom: -90px;
    }

    .services {
        padding-top: 150px;
    }
}

.year-footer {
    background-color: black;
    color: white;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

