/* PREMIUM DARK NEON THEME - ZERO FRICTION - MASSIVE CONVERSION */

:root {
    --bg-dark: #08080A;
    --bg-card: rgba(25, 25, 32, 0.6);
    --taxi-main: #FFB300;
    /* Premium Gold/Yellow */
    --taxi-glow: rgba(255, 179, 0, 0.4);
    --text-light: #F8F9FA;
    --text-muted: #ADB5BD;

    --whatsapp-color: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.5);

    --call-color: #EF233C;
    --call-glow: rgba(239, 35, 60, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    padding-bottom: 85px;
    /* For sticky footer padding */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* AMBIENT GLOW EFFECTS */
.glow-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--taxi-glow);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.15);
    /* Soft Whatsapp glow */
    bottom: 20%;
    left: -100px;
}

/* HERO SECTION */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 179, 0, 0.15);
    color: var(--taxi-main);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #FFFFFF 0%, #D1D5DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-subtext strong {
    color: var(--text-light);
}

.trust-bullets {
    list-style: none;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.trust-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.bullet-icon {
    font-size: 1.3rem;
}

/* DESKTOP CTA */
.desktop-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
    box-shadow: 0 8px 25px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px var(--whatsapp-glow);
}

.btn-call {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Pulse Animations for specific buttons */
@keyframes pulseGlowGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-green {
    animation: pulseGlowGreen 2s infinite;
}

/* CONTENT SECTION & SEO PUNCH */
.content-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    position: relative;
    z-index: 10;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.seo-article h2 {
    font-size: 2rem;
    color: var(--taxi-main);
    margin-bottom: 20px;
    font-weight: 800;
}

.seo-article p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.seo-article strong {
    color: var(--text-light);
}

/* SEO INTERNAL LINKS (Styling for anchor texts) */
.seo-link {
    color: var(--taxi-main);
    font-weight: 600;
    position: relative;
    transition: color 0.2s;
}

.seo-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--taxi-main);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.seo-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* INFO BLOCKS */
.info-blocks h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-2 .glass-card {
    margin-bottom: 0;
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    background: rgba(255, 179, 0, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 179, 0, 0.2);
}

.grid-2 h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
}

.zoom-hover {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.zoom-hover:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* SEO SILO PILLS */
.seo-silo {
    margin-top: 60px;
    text-align: center;
}

.seo-silo h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pill {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pill:hover {
    background: var(--taxi-main);
    color: #000;
    transform: scale(1.05);
    border-color: var(--taxi-main);
}

/* FOOTER */
footer {
    background-color: #040405;
    padding: 60px 20px 100px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 1.8rem;
    color: var(--taxi-main);
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.footer-logo strong {
    color: #fff;
}

.footer-phone {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 800;
}

.small-text {
    font-size: 0.85rem;
    color: #555 !important;
    max-width: 600px;
    margin: 20px auto;
}

.legal-links {
    margin-top: 20px;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--text-light);
}

/* AGGRESSIVE MOBILE CTA (Sticky Footer) */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: white;
    font-weight: 900;
    font-size: 0.95rem;
    gap: 6px;
    text-transform: uppercase;
}

.action-whatsapp {
    background-color: var(--whatsapp-color);
}

.action-whatsapp:active {
    background-color: #1a9e4b;
}

.action-call {
    background-color: var(--call-color);
}

.action-call:active {
    background-color: #ca1a2f;
}

/* Show sticky footer on mobile, hide desktop buttons */
@media (max-width: 768px) {
    .desktop-cta {
        display: none;
    }

    .trust-bullets {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .hero {
        align-items: flex-start;
        padding-top: 12vh;
        min-height: 90vh;
    }
}

/* Hide sticky footer on desktop, show desktop buttons */
@media (min-width: 769px) {
    .sticky-footer {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    footer {
        padding-bottom: 60px;
    }
}