:root {
    --primary: #FFCC00; /* Taxi Yellow */
    --primary-dark: #E6B800;
    --dark-bg: #0d0d0d;
    --section-bg: #111111;
    --card-bg: rgba(25, 25, 25, 0.7);
    --text-white: #f5f5f5;
    --text-gray: #a3a3a3;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE55;
    --font-main: 'Outfit', sans-serif;
    --border: rgba(255, 204, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.highlight-text {
    color: var(--primary);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Base Page Padding for Subpages */
.subpage-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: calc(100vh - 300px);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.page-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.page-content h2 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.page-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-content ul {
    color: var(--text-gray);
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: square;
    font-size: 1.1rem;
}

.page-content li {
    margin-bottom: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid rgba(255,204,0,0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(255,204,0,0.1);
    transform: scale(1.05);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-100%);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links li a {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.3;
    z-index: -1;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Regions Box */
.regions-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.regions-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.region-tags span {
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

/* Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.pulse-eff {
    animation: pulse 2s infinite;
}

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

/* Sections Global */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
    margin-top: -40px;
}

/* How It Works Layer */
.how-it-works {
    padding: 100px 0;
    background: var(--section-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 204, 0, 0.15);
    position: absolute;
    top: -10px;
    right: 20px;
    z-index: 0;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* Features Layer */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 204, 0, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.feature-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Fleet Layer */
.fleet {
    padding: 100px 0;
    background: var(--section-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.fleet-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.fleet-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.fleet-badge.vip {
    background: #FF5A5F;
    color: #fff;
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.fleet-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.fleet-features {
    list-style: none;
}

.fleet-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials Layer */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(255,204,0,0.1);
    font-family: serif;
}

.stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.testimonial-card h4 {
    color: var(--text-white);
    font-size: 1.1rem;
}

.testimonial-card h4 span {
    color: var(--primary);
    font-weight: 400;
}

/* FAQ Layer */
.faq-section {
    padding: 100px 0;
    background: var(--section-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 30px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


/* Sticky Footer (Mobile Pinned CTA) */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    background: #000;
}

.sticky-footer .btn-full {
    flex: 1;
    text-align: center;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.sticky-footer .call-btn {
    background: var(--primary);
    color: #000;
}

.sticky-footer .wa-btn {
    background: var(--whatsapp);
    color: #fff;
}

/* Footer Section */
footer {
    background: #050505;
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-info h3 span {
    color: var(--primary);
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-contact {
    margin-top: 20px;
    display: inline-block;
    text-align: left;
    background: rgba(255,255,255,0.02);
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-white);
}

.footer-contact strong {
    color: var(--primary);
}

.footer-links h4 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-phone span {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    footer {
        padding-bottom: 120px;
    }
    .subpage-wrapper {
        padding-top: 120px;
    }
}
@media (min-width: 769px) {
    .sticky-footer {
        display: none; 
    }
    footer {
        padding-bottom: 60px;
    }
}
