/* =========================================================
   0. BASE RESET
========================================================= */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
    background: #727B72;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2 {
    text-align: center;
}

/* =========================================================
   1. GLOBAL CONTAINER
========================================================= */
.container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
}

/* =========================================================
   2. BUTTONS
========================================================= */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
    line-height: 1;
    color: #fff;
}

.btn-call { background: #0078ff; }
.btn-whatsapp { background: #25D366; }
.btn-form { background: #28A745; }

.home-hero .btn {
    width: 200px;
    padding: 12px 20px;
    border-radius: 50px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.home-hero .btn-call {
    background: black;
}

/* =========================================================
   3. FORMS
========================================================= */
form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

input, textarea, select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    padding: 15px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* =========================================================
   4. LANGUAGE BAR + STATUS
========================================================= */
.lang-bar {
    background: #3A7797;
    color: #fff;
    font-size: 14px;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #9cff9c;
}

.status-indicator .dot {
    width: 10px;
    height: 10px;
    background: #2aff2a;
    border-radius: 50%;
    box-shadow: 0 0 6px #53ff53, 0 0 12px #2aff2a;
    animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.lang-links a:hover {
    text-decoration: underline;
}

/* =========================================================
   5. HEADER (DESKTOP)
========================================================= */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #000;
    color: #fff;
}

.logo img {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 15px;
}

.nav-menu a:hover {
    color: #FFD400;
    text-decoration: underline;
}

.hamburger {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.call-now {
    font-size: 1.7rem;
    font-weight: bold;
    color: white;
}

.call-now:hover {
    color: #FFD400;
}

/* =========================================================
   6. HERO SECTION
========================================================= */
.home-hero {
    background-image: url('/assets/images/the-la-taxi-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
}

.home-hero h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.home-hero p {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* =========================================================
   7. TAXI BARS
========================================================= */
.taxi-bar {
    width: 100%;
    height: 20px;
    overflow: hidden;

    background-image:
        repeating-linear-gradient(90deg, #000 0 20px, #FFD400 20px 40px),
        repeating-linear-gradient(90deg, #FFD400 0 20px, #000 20px 40px),
        repeating-linear-gradient(90deg, #000 0 20px, #FFD400 20px 40px);

    background-size: 40px 20px, 40px 20px, 40px 20px;
    background-position: 0 0, 0 20px, 0 40px;

    animation: taxi-slide 8s linear infinite;
}

.taxi-bar.reverse {
    background-image:
        repeating-linear-gradient(90deg, #FFD400 0 20px, #000 20px 40px),
        repeating-linear-gradient(90deg, #000 0 20px, #FFD400 20px 40px),
        repeating-linear-gradient(90deg, #FFD400 0 20px, #000 20px 40px);
}

@keyframes taxi-slide {
    from { background-position: 0 0, 0 20px, 0 40px; }
    to   { background-position: -40px 0, -40px 20px, -40px 40px; }
}

/* =========================================================
   FIXED FOOTER LAYOUT — CLEAN DESKTOP + MOBILE STACKING
========================================================= */

/* --- Desktop Layout --- */
.site-footer {
    background: #111;
    color: #fff;
    padding: 50px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col a,
.footer-col p {
    color: #ddd;
    display: block;          /* ⬅ ensures one item per line */
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-col a:hover {
    color: #fff;
}

/* Right-side logo */
.footer-logo-img {
    width: 240px;
    filter: brightness(1.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
}


/* --- Mobile Layout --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;   /* ⬅ stacks all columns */
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-logo-img {
        width: 100px;
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        font-size: 14px;
    }
}


/* =========================================================
   9. MOBILE RESPONSIVE (THE FIX)
========================================================= */
@media (max-width: 768px) {

    /* MOBILE GRID LAYOUT — FIXED so hamburger never disappears */
    .header-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo phone"
            "burger burger"
            "menu menu";
        align-items: center;
        background: #000;
        padding: 12px 15px;
    }

    .logo {
        grid-area: logo;
    }

    .logo img {
        width: 120px;
    }

    .call-now {
        grid-area: phone;
        justify-self: end;
        font-size: 1.3rem;
        white-space: nowrap;
        align-self: center;
    }

    /* HAMBURGER stays visible even when menu is open */
    .hamburger {
        grid-area: burger;
        justify-self: center;
        margin-top: 8px;
        display: block;
        font-size: 32px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        z-index: 999; 
    }

    /* NAV MENU — appears below hamburger */
    .nav-menu {
        grid-area: menu;
        display: none;
        flex-direction: column;
        background: #FFD400;
        width: 100%;
        padding: 20px 0;
        gap: 12px;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 10px 15px;
    }
}

/* =========================================================
   USP SECTION
========================================================= */

.usp-section {
    background: white; 
            /* same grey you showed */
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* desktop: 4 across */
    max-width: 2400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0;                    /* no space between, like your mockup */
}

.usp-item {
    padding: 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid silver;
    background: #6B8C8D;     /* slightly lighter grey */
}

/* Placeholder black square */
.usp-placeholder,
.usp-icon {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    
}

/* If you use real icons */
.usp-icon {
    object-fit: contain;
    background: none;
}

.usp-text {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    color: white;
}

/* =========================================================
   MOBILE — 2×2 GRID
========================================================= */
@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 5px;
    }

    .usp-item {
        padding: 20px 10px;
    }

    .usp-text {
        font-size: 1.4rem;
    }
}

/* =========================================================
   FLOATING CALL BUTTON
========================================================= */

.floating-call-btn {
    position: fixed;
    bottom: -120px;    /* Hidden initially */
    right: 20px;
    width: 70px;
    height: 70px;
    background: #FFD437;
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 999;
    transition: bottom 0.4s ease;
}

.floating-call-btn.show {
    bottom: 20px;      /* Desktop visible position */
}

.call-icon {
    width: 50px;
    height: 50px;
    animation: phoneShake 8s ease-in-out infinite;
}

/* Hover */
.floating-call-btn:hover {
    transform: scale(1.07);
}

/* Shake animation */
@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

/* Mobile adjustments */
@media (max-width: 768px) {

    .floating-call-btn {
        width: 80px;
        height: 80px;
        right: 18px;
    }

    /* Mobile visible location */
    .floating-call-btn.show {
        bottom: 18px;
    }

    .call-icon {
        width: 45px;
        height: 45px;
    }
}



/* =========================================================
   HOMEPAGE — NEW SECTIONS
========================================================= */

/* Shared section styling */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ------------------------------
   QUICK ACTION SECTION
------------------------------ */

.quick-action {
    background: black;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.quick-action h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.quick-action p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.center-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.center-buttons .btn {
    width: 200px;
    margin: 0 auto;
    border: 3px solid white;
    border-radius: 50px;
}

.center-buttons .btn-call {
    background: #FFD437;
    color: black;
}


/* ------------------------------
   IMAGE BAR ONE
------------------------------ */
.image-bar {
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.image-bar-one {
    background-image: url("/assets/images/couple-taxis.webp");
}

.image-bar-two {
    background-image: url("/assets/images/la-aerial-shot.webp");
}

.image-bar-three {
    background-image: url("/assets/images/outside-hotel.jpg");
}

 



/* ------------------------------
   SERVICES SECTION
------------------------------ */

.services-section {
    background: #F3EEE2;
    padding: 70px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}


/* ------------------------------
   HOW IT WORKS SECTION
------------------------------ */

.how-section {
    background: #fff;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.how-step {
    text-align: center;
    padding: 25px;
}

.step-number {
    background: #FFD400;
    color: #000;
    font-weight: bold;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    border: 5px solid black;
}


/* ------------------------------
   SERVICE AREAS
------------------------------ */

.areas-section {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 30px;
}

.areas-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
}


/* ------------------------------
   SAFETY SECTION
------------------------------ */

.safety-section {
    background: #fff;
}

.safety-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.safety-section li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.safety-section li::before {
    content: "✔";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}


/* ------------------------------
   REVIEWS SECTION
------------------------------ */

.reviews-section {
    background: #f2f2f2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.review {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.review span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}


/* ------------------------------
   FINAL CTA
------------------------------ */

.final-cta {
    background: #F3EEE2;
    color: #000;
    text-align: center;
    padding: 80px 30px;
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}



/* =========================================================
   RESPONSIVE ADJUSTMENTS
========================================================= */

@media (max-width: 900px) {
    .services-grid,
    .how-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid,
    .how-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .center-buttons {
        flex-direction: column;
    }

    .center-buttons .btn {
        width: 100%;
    }
}

/* ABOUT PAGE HERO */
.about-hero {
    background-image: url('/assets/images/cab-about-us.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    height: 400px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.3rem;
}


/* GENERIC ABOUT CONTENT SECTION */
.about-section {
    /*max-width: 900px;*/
    /*margin: 50px auto;
    padding: 0 20px;*/
    text-align: center;
    background-color: white;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* VALUES GRID */
.values-section {
    background: #f3f3f3;
    padding: 50px 20px;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-item {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-item h3 {
    margin-bottom: 10px;
}


/* CONTACT PANEL */
.contact-hero {
    background-image: url('/assets/images/taxi-contact.jpg');
    background-size: cover;
    background-position: bottom;
    color: white;
    text-align: center;
    padding: 80px 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    height: 400px;
}
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.3rem;
}
.contact-panel {
    text-align: center;
    padding: 60px 20px;
    background-color: #F3EEE2;
}

.contact-panel p {
    font-size: 1.2rem;
}

.contact-form {
    max-width: 75%;
    margin: 30px auto 60px auto;
    text-align: left;
}

/* MOBILE */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .contact-form {
        max-width: 90%;
        margin: 30px auto 60px auto;
        text-align: left;
}
}

.other-pages-body {
    background-color: white;
}

/* SERVICES */
.services-hero {
    background-image: url('/assets/images/services.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    height: 400px;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 1.3rem;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
}

/* BOOK PAGE */
.book-hero {
    background-image: url('/assets/images/airport-ride.jpg'); /* Or swap to a dedicated image */
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 80px 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    height: 400px;
}

.book-page {
    background-color: #F3EEE2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.book-intro {
    max-width: 700px;
    margin: 40px auto 30px auto;
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: center;
    color: #333;
}

.book-form-container {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 10px;
}

.book-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.book-hero p {
    font-size: 1.3rem;
}