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

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: #ff9500; }

/* HERO-SPECIFIC BUTTONS */
.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
========================================================= */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #000;
    color: #fff;
}

.logo img {
    display: block;
}

/* NAV MENU (DESKTOP DEFAULT) */
.nav-menu {
    display: flex;
    gap: 20px;
}

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

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

/* HAMBURGER (hidden on desktop) */
.hamburger {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* CALL NOW */
.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.webp');
    background-size: cover;
    background-position: center;
    color: white;
    width: 100%;
    height: 500px;
    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; }
}

/* =========================================================
   8. FOOTER
========================================================= */
.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-col a {
    color: #ddd;
    margin: 4px 0;
}

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

.footer-logo .logo-placeholder {
    width: 120px;
    height: 120px;
    background: #333;
    border-radius: 6px;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    font-size: 14px;
}

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

    .header-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .call-now {
        font-size: 1.4rem;
    }

    .hamburger {
        display: block;
    }

    /* Hide desktop nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        text-align: center;
        background: #000;
        width: 100%;
        padding: 20px 0;
        gap: 12px;
    }

    /* Open when .active added */
    .nav-menu.active {
        display: flex;
    }

    .home-hero {
        height: auto;
        padding: 40px 20px;
    }

    .home-hero h1 {
        font-size: 2.4rem;
    }

    .home-hero p {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
