:root {
    --taxi-yellow: #FFCC00;
    --dark-asphalt: #141414;
    --panel-bg: rgba(25, 25, 25, 0.85);
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-asphalt);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h4 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h5 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h6 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--taxi-yellow); }

.text-yellow { color: var(--taxi-yellow); }
p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 1rem; }
a { text-decoration: none; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: 1px; }
.logo span { color: var(--taxi-yellow); }
.phone-btn {
    background: var(--taxi-yellow); color: #000;
    padding: 10px 20px; border-radius: 30px; font-weight: 700;
    font-size: 1.1rem; transition: transform 0.2s, box-shadow 0.2s;
}
.phone-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

/* Fixed Road Background */
.road-background {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 1;
    background: #111;
    background-image: radial-gradient(#222 2px, transparent 2px);
    background-size: 12px 12px; /* Asphalt texture */
}

/* Center Line */
.lane-line {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 12px; height: 100%;
    background-image: repeating-linear-gradient(to bottom, var(--taxi-yellow) 0, var(--taxi-yellow) 60px, transparent 60px, transparent 120px);
    background-position-y: 0px;
    will-change: background-position-y;
}

/* Top-Down Taxi */
.taxi-wrapper {
    position: absolute;
    bottom: 10%; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    will-change: transform;
}

.taxi-top-down {
    width: 90px; height: 190px;
    background: var(--taxi-yellow);
    border-radius: 20px 20px 15px 15px;
    position: relative;
    box-shadow: 
        inset 0 0 15px rgba(0,0,0,0.2), 
        0 30px 40px rgba(0,0,0,0.8);
    border: 1px solid #cca300;
}

/* Taxi Details */
.taxi-hood { position: absolute; top: 10px; left: 10px; width: 70px; height: 35px; background: rgba(0,0,0,0.05); border-radius: 10px; }
.taxi-windshield { position: absolute; top: 45px; left: 8px; width: 74px; height: 25px; background: linear-gradient(180deg, #111, #333); border-radius: 15px 15px 5px 5px; border: 2px solid #222; }
.taxi-roof { position: absolute; top: 75px; left: 12px; width: 66px; height: 60px; background: #e6b800; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1); }
.taxi-sign { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 34px; height: 14px; background: #fff; border-radius: 3px; font-size: 8px; font-weight: 900; text-align: center; line-height: 14px; color: #000; box-shadow: 0 0 8px #fff; }
.taxi-rear-window { position: absolute; bottom: 25px; left: 10px; width: 70px; height: 20px; background: linear-gradient(0deg, #111, #222); border-radius: 5px 5px 10px 10px; border: 2px solid #222; }
.taxi-trunk { position: absolute; bottom: 5px; left: 15px; width: 60px; height: 15px; background: rgba(0,0,0,0.05); border-radius: 5px; }

/* Lights */
.taxi-light-left, .taxi-light-right { position: absolute; top: 3px; width: 16px; height: 10px; background: #fff; border-radius: 5px 5px 3px 3px; box-shadow: 0 0 15px #fff; }
.taxi-light-left { left: 10px; }
.taxi-light-right { right: 10px; }

.taxi-tail-left, .taxi-tail-right { position: absolute; bottom: 2px; width: 20px; height: 6px; background: #ff0000; border-radius: 2px; box-shadow: 0 5px 15px rgba(255,0,0,0.8); }
.taxi-tail-left { left: 8px; }
.taxi-tail-right { right: 8px; }

/* Side Mirrors */
.mirror-left, .mirror-right { position: absolute; top: 55px; width: 8px; height: 14px; background: var(--taxi-yellow); border-radius: 4px; box-shadow: 0 5px 10px rgba(0,0,0,0.5); }
.mirror-left { left: -6px; border-radius: 4px 0 0 4px; }
.mirror-right { right: -6px; border-radius: 0 4px 4px 0; }

/* Light Cone */
.light-cone {
    position: absolute;
    bottom: 180px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle at bottom, rgba(255,255,255,0.15) 0%, transparent 60%);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
    pointer-events: none;
    z-index: -1;
}

/* Content Layer */
.content-layer {
    position: relative; z-index: 10;
    padding-top: 15vh; padding-bottom: 30vh;
}

.panel {
    width: 90%; max-width: 600px;
    margin: 150px auto; padding: 3rem;
    background: var(--panel-bg);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 204, 0, 0.2); border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    opacity: 0; transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.panel.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1200px) {
    .panel.left { margin-left: 10vw; margin-right: auto; }
    .panel.right { margin-right: 10vw; margin-left: auto; }
}

.cta-btn {
    display: inline-block; margin-top: 1.5rem;
    background: var(--taxi-yellow); color: #000;
    padding: 15px 30px; border-radius: 40px;
    font-size: 1.2rem; font-weight: 800; text-transform: uppercase;
    transition: all 0.3s;
}
.cta-btn:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item strong { display: block; color: var(--text-white); font-size: 1.2rem; margin-bottom: 5px; }
.faq-item span { color: var(--text-gray); }

.site-footer {
    text-align: center; padding: 5rem 2rem; margin-top: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.footer-content h2 { font-size: 3rem; margin-bottom: 0.5rem; }
.footer-phone { display: block; font-size: 2.5rem; color: var(--taxi-yellow); font-weight: 900; margin-bottom: 2rem; }

@media (max-width: 768px) {
    .panel { padding: 2rem; margin: 100px auto; }
    .taxi-top-down { transform: scale(0.7); transform-origin: bottom center; }
    .light-cone { width: 400px; height: 400px; }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    pointer-events: none;
    z-index: 1000;
}
.float-btn {
    position: absolute;
    bottom: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
}

.phone-float {
    left: 30px;
    background-color: var(--taxi-yellow);
    color: #000;
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    animation: pulse-yellow 2s infinite;
}
.phone-float svg { width: 32px; height: 32px; }

.wp-float {
    right: 30px;
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
    animation-delay: 1s; /* Offset for aesthetic */
}
.wp-float svg { width: 40px; height: 40px; }

@keyframes pulse-yellow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 204, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .phone-float { left: 15px; width: 55px; height: 55px; }
    .wp-float { right: 15px; width: 55px; height: 55px; }
    .phone-float svg { width: 26px; height: 26px; }
    .wp-float svg { width: 34px; height: 34px; }
}


.logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-icon { width: 32px; height: 32px; filter: drop-shadow(0 2px 8px rgba(255, 204, 0, 0.4)); }


/* Hamburger Menu */
.hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 200; background: none; border: none; padding: 10px; }
.hamburger span { display: block; width: 35px; height: 4px; background-color: var(--text-white); border-radius: 4px; transition: 0.3s ease-in-out; }
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); background-color: var(--taxi-yellow); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); background-color: var(--taxi-yellow); }

.nav-actions { display: flex; align-items: center; gap: 20px; z-index: 200; }

.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 150; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
    opacity: 0; pointer-events: none; transition: 0.4s ease-in-out;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }
.nav-overlay a { color: var(--text-white); font-size: 2rem; font-weight: 700; text-transform: uppercase; transition: 0.3s; }
.nav-overlay a:hover { color: var(--taxi-yellow); transform: scale(1.1); }
@media (max-width: 768px) { .nav-overlay a { font-size: 1.5rem; } }


/* New Content Sections */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.feature-card { background: rgba(0,0,0,0.4); padding: 15px; border-radius: 12px; font-weight: 700; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.05); }
.fleet-list { list-style: none; margin-top: 15px; }
.fleet-list li { margin-bottom: 15px; padding-left: 25px; position: relative; color: var(--text-gray); }
.fleet-list li::before { content: "\1F695"; position: absolute; left: -5px; top: 0; font-size: 1.1rem; }
.fleet-list li strong { color: #fff; }
.routes-box { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
.route-item { background: rgba(255, 204, 0, 0.1); padding: 15px; border-radius: 10px; border-left: 4px solid var(--taxi-yellow); display: flex; justify-content: space-between; align-items: center; }
.route-item span { font-weight: 700; color: #fff; }
.route-item small { color: var(--taxi-yellow); font-weight: 700; }
.review { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 15px; position: relative; }
.review .stars { color: var(--taxi-yellow); margin-bottom: 10px; letter-spacing: 2px; }
.review p { font-style: italic; color: #ddd; margin-bottom: 10px; }
.review small { color: var(--taxi-yellow); font-weight: 700; }
.tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tag { background: rgba(255, 204, 0, 0.15); color: var(--taxi-yellow); padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; border: 1px solid rgba(255, 204, 0, 0.3); }

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .route-item { flex-direction: column; align-items: flex-start; gap: 5px; }
}

