:root {
    --primary-yellow: #ffd800;
    --primary-yellow-light: #fff5e1;
    --primary-accent: #ffd800;
    --bg-white: #FFFFFF;
    --text-main: #2D3436;
    --text-secondary: #636E72;
    --border-light: #DFE6E9;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    color: var(--text-main);
    padding-top: 120px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 0.5rem 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-container {
    flex: 0 0 auto;
    min-width: 400px;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 160px !important;
    width: auto !important;
    max-width: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    margin-top: 30px; /* Centering adjusted for 100px header */
}

.logo-container img:hover {
    transform: scale(1.05);
}

.header-links {
    display: flex;
    gap: 2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-accent);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-item {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-item:hover {
    color: var(--primary-accent);
    background: rgba(255, 216, 0, 0.05);
    border-bottom: 2px solid var(--primary-yellow);
    border-radius: 8px 8px 0 0;
}

.nav-item.company-badge:hover {
    transform: translateY(-2px);
}

.cta-nav-btn {
    background: var(--primary-yellow);
    color: var(--text-main) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 216, 0, 0.3);
    font-weight: 700;
    border: 2px solid var(--primary-yellow);
}

.cta-nav-btn:hover {
    background: transparent;
    color: var(--primary-accent) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 216, 0, 0.4);
}

@keyframes pulse-small {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse-small 2s infinite ease-in-out;
}

/* Hero Panel */
.hero-panel {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, var(--primary-yellow) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 216, 0, 0.4) 100%),
        url('img/fleet-taxis.png') center/cover no-repeat;
    opacity: 0.25;
    z-index: 1;
}

.hero-flex {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
}

/* Hero Left */
.hero-left {
    background: var(--bg-white);
    border-radius: 35px;
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    max-width: 600px;
    flex: 1;
    border: 1px solid var(--border-light);
    position: relative;
}

.hero-left h1 span.highlight {
    background: linear-gradient(120deg, rgba(253, 203, 110, 0.3) 0%, rgba(253, 203, 110, 0.3) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    padding: 0 4px;
}

.hero-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: left;
}

/* App Info Box - Standalone */
.hero-flex .app-info-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    max-width: 400px;
    width: 100%;
    flex: 0 0 auto;
}

/* Hero Images Group */
.hero-images-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-width: 800px;
    flex: 1;
}

/* App Info Box */

.app-info-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-info-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-info-header i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.app-info-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.app-features-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-features-list li i {
    color: var(--primary-accent);
    font-size: 0.8rem;
    width: 16px;
}

.app-info-box .download-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

.hero-user-image {
    width: 200%;
    max-width: 600px;
    text-align: center;
}

.hero-user-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.hero-user-image img:hover {
    transform: scale(1.02);
}

.hero-images-group .download-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: fit-content;
}

.hero-taxi-animation {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin: 2rem auto 0;
}

/* Taxi Animation */
.taxi-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-car {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #222 0%, #444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.taxi-car i {
    font-size: 4rem;
    color: var(--primary-yellow);
}

.taxi-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 3px dashed var(--primary-yellow);
    opacity: 0.5;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.speed-lines span {
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd800, transparent);
    border-radius: 2px;
    opacity: 0;
}

.speed-lines span:nth-child(1) {
    top: 20%;
    left: -10px;
    animation: speedLine 1.5s ease-in-out infinite;
}

.speed-lines span:nth-child(2) {
    top: 50%;
    left: -20px;
    width: 60px;
    animation: speedLine 1.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.speed-lines span:nth-child(3) {
    top: 80%;
    left: -10px;
    animation: speedLine 1.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes speedLine {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(200px);
    }
}

/* Services Section */
.services-section {
    background: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.services-title {
    font-size: 2.22rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.services-desc {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--primary-yellow);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(253, 203, 110, 0.15);
    border-color: var(--primary-yellow);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%);
    color: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 216, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #FFB300 0%, var(--primary-yellow) 100%);
    color: var(--bg-white);
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 15px 30px rgba(255, 216, 0, 0.4);
}

.service-card h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.how-it-works-title {
    font-size: 2.2rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.how-it-works-desc {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(253, 203, 110, 0.15);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    background: var(--primary-yellow);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
    position: relative;
    z-index: 2;
}

.step-card h3 {
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #F8F9FA;
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.faq-title {
    font-size: 2.2rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.faq-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

.faq-contact-banner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--primary-yellow-light);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--primary-yellow);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.faq-contact-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.2;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-size: 1rem;
}

.faq-contact-icon {
    font-size: 1.4rem;
    color: var(--primary-accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    text-align: left;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.15);
}

.faq-question {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.contact-title {
    font-size: 2.22rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.contact-subtitle {
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.contact-info-side {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-accent);
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--bg-white);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.icon-phone { background: linear-gradient(180deg, #34C759 0%, #28CD41 100%); }
.icon-mail { background: linear-gradient(180deg, #FFCC00 0%, #FFB300 100%); }
.icon-map { background: linear-gradient(180deg, #FF3B30 0%, #FF2D55 100%); }
.icon-clock { background: linear-gradient(180deg, #5856D6 0%, #007AFF 100%); }

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.contact-info-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-form-side {
    flex: 1;
    max-width: 600px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.form-title {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(255, 216, 0, 0.1);
}

.contact-form textarea {
    resize: none;
    min-height: 100px;
}

.submit-btn {
    padding: 1.1rem 2.5rem;
    background: var(--primary-yellow);
    color: var(--text-main);
    font-weight: 700;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 203, 110, 0.4);
    filter: brightness(1.05);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
    font-size: 0.9rem;
}

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

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-info .icon {
    color: var(--primary-yellow);
    font-size: 1rem;
    min-width: 18px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--text-main);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-right a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: var(--primary-yellow);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.8s ease forwards;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

.animate-delay-3 {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header {
        padding: 1rem 2rem;
    }

    .hero-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
        gap: 3rem;
    }

    .hero-left {
        max-width: 100%;
        padding: 2.5rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-left p {
        text-align: center;
    }

    .hero-images-group {
        width: 100%;
        align-items: center;
        min-width: auto;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .logo-container img {
        height: 120px !important;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }

    .header-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .header-links.active {
        height: auto;
        padding: 2rem 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-item:hover {
        background: var(--primary-yellow-light);
        border-bottom: 1px solid var(--primary-yellow);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    .logo-container img {
        height: 100px !important;
        margin-top: 20px;
    }

    .hero-panel {
        padding: 4rem 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .services-grid, 
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-contact-banner {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .contact-layout {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-side,
    .contact-form-side {
        width: 100%;
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.6rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .hero-panel {
        padding: 3rem 1rem;
    }

    .hero-taxi-animation {
        transform: scale(0.8);
        margin-top: 1rem;
    }

    .contact-form-side {
        padding: 2rem 1.5rem;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Chatbot RTAXITO */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-accent);
    color: var(--bg-white);
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 216, 0, 0.3);
    z-index: 9999;
    border: none;
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 216, 0, 0.4);
}

.chatbot-toggle i {
    font-size: 1.2rem;
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: 90vw;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    background: var(--primary-accent);
    color: var(--bg-white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.chatbot-title i {
    font-size: 1.3rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message {
    background: #F1F2F6;
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-message {
    background: var(--primary-accent);
    color: var(--bg-white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chatbot-options button {
    background: var(--bg-white);
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-options button:hover {
    background: var(--primary-accent);
    color: var(--bg-white);
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.chatbot-input button {
    background: var(--primary-accent);
    border: none;
    color: var(--bg-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(9, 132, 227, 0.2);
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .chatbot-toggle {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .chatbot-container {
        bottom: 70px;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .chatbot-messages {
        height: 250px;
    }
}

/* Download App Section */
.download-app-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2D3436 0%, #000000 100%);
    color: white;
    text-align: center;
}

.download-container {
    max-width: 1000px;
    margin: 0 auto;
}

.download-app-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.download-app-section p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 220px;
}

.app-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 20px rgba(255, 216, 0, 0.2);
}

.app-btn i {
    font-size: 2rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .download-app-section {
        padding: 4rem 1rem;
    }
    
    .download-app-section h2 {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Payments Section */
.payments-section {
    background: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.payments-title {
    font-size: 2.22rem;
    color: #1A2B4C;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.payments-desc {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payments-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.payment-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.payment-card:hover:not(.disabled-card) {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.payment-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.disabled-card {
    cursor: default;
}

.badge-proximamente {
    position: absolute;
    top: -12px;
    right: -10px;
    background: #ED646D;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(237, 100, 109, 0.3);
}


/* ==========================================================================
   RESPONSIVE OPTIMIZATIONS (ADDED FOR CROSS-DEVICE COMPATIBILITY)
   ========================================================================== */

/* Max Width 991px (Tablets and smaller) */
@media (max-width: 991px) {
    /* Header & Navigation */
    .main-header {
        padding: 0.5rem 2rem;
    }
    
    .logo-container {
        min-width: auto;
    }
    
    .logo-container img {
        height: 100px !important;
        margin-top: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .header-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at top right);
        transition: all 0.4s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }
    
    .header-links.active {
        clip-path: circle(150% at top right);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .cta-nav-btn {
        margin-top: 1rem;
    }

    /* Hero Section */
    .hero-flex {
        flex-wrap: wrap !important;
        flex-direction: column !important;
        padding: 0 1.5rem;
    }
    
    .hero-left, .hero-images-group {
        max-width: 100%;
        min-width: 100%;
    }
    
    .app-info-box {
        max-width: 100% !important;
        margin-top: 2rem;
    }

    /* Services & Steps */
    .services-grid, .steps-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}

/* Max Width 768px (Mobile Phones) */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    /* Typography adjustments */
    .hero-left h1 {
        font-size: 2.2rem;
    }
    
    .services-title, .how-it-works-title, .faq-title, .contact-title, .payments-title {
        font-size: 1.8rem;
    }
    
    /* Hero Panel adjustments */
    .hero-panel {
        padding: 3rem 0;
    }
    
    .hero-user-image {
        width: 100%;
    }
    
    /* Payments section */
    .payments-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-card {
        width: 100%;
        max-width: 250px;
        height: 120px;
    }

    /* FAQ contact banner */
    .faq-contact-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .faq-contact-item {
        justify-content: center;
    }
}

/* Specific Fix for taxi animation overlap */
@media (max-width: 480px) {
    .taxi-illustration {
        width: 150px;
        height: 150px;
    }
    
    .taxi-circle {
        width: 130px;
        height: 130px;
    }
    
    .taxi-car {
        width: 100px;
        height: 100px;
    }
    
    .taxi-car i {
        font-size: 3rem;
    }
}
