/* ============================================
   TAXI SERVICE - COMPLETE CSS
   SPLIT HERO | PREMIUM DESIGN
   ============================================ */

/* ---------- GLOBAL CONTAINER ---------- */
.taxi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- SECTION 1: SPLIT HERO ---------- */
.taxi-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 40%, #2d1b4e 100%);
    overflow: hidden;
}

.taxi-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* ---------- HERO LEFT ---------- */
.taxi-hero-left {
    color: white;
    padding: 40px 0;
}

.taxi-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #FF6B35;
    margin-bottom: 20px;
}

.taxi-hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.taxi-hero-left h1 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: taxiGradient 6s ease-in-out infinite;
}

@keyframes taxiGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.taxi-hero-left > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.taxi-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
    margin-bottom: 30px;
}

.taxi-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.taxi-hero-feature span {
    color: #2EC4B6;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

.taxi-hero-feature strong {
    display: block;
    font-size: 15px;
    color: white;
}

.taxi-hero-feature small {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.taxi-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.taxi-hero-btn-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
}

.taxi-hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255,107,53,0.4);
    color: white;
}

.taxi-hero-btn-secondary {
    padding: 14px 36px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
}

.taxi-hero-btn-secondary:hover {
    border-color: #2EC4B6;
    background: rgba(46,196,182,0.08);
    transform: translateY(-4px);
    color: white;
}

/* ---------- HERO RIGHT ---------- */
.taxi-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.taxi-hero-car-display {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    background: radial-gradient(ellipse at center, rgba(255,107,53,0.08) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.taxi-hero-car-icon {
    font-size: 140px;
    animation: taxiFloat 3s ease-in-out infinite;
}

@keyframes taxiFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.taxi-hero-car-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    padding: 8px 20px;
    background: rgba(46,196,182,0.15);
    border: 1px solid rgba(46,196,182,0.3);
    border-radius: 50px;
    color: #2EC4B6;
    font-size: 13px;
    font-weight: 600;
}

.taxi-hero-car-stats {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.taxi-hero-car-stats div {
    text-align: center;
}

.taxi-hero-car-stats span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.taxi-hero-car-stats label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ---------- SECTION 2: FLEET ---------- */
.taxi-fleet {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.taxi-header {
    text-align: center;
    margin-bottom: 45px;
}

.taxi-badge {
    display: inline-block;
    padding: 5px 20px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.taxi-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
}

.taxi-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taxi-header p {
    color: #666;
    font-size: 16px;
    margin-top: 4px;
}

/* ---------- FLEET CARDS ---------- */
.taxi-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.taxi-fleet-card {
    background: white;
    padding: 30px 25px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
}

.taxi-fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255,107,53,0.08);
    border-color: #FF6B35;
}

.taxi-fleet-card.featured {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255,107,53,0.03), rgba(255,107,53,0.01));
}

.taxi-fleet-popular {
    position: absolute;
    top: -10px;
    right: 15px;
    padding: 4px 16px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.taxi-fleet-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 10px;
}

.taxi-fleet-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.taxi-fleet-details {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.taxi-fleet-details span {
    padding: 3px 12px;
    background: #f0f7f6;
    border-radius: 50px;
    font-size: 12px;
    color: #2EC4B6;
    font-weight: 500;
}

.taxi-fleet-card > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.taxi-fleet-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 10px;
}

.taxi-fleet-pricing div {
    text-align: center;
}

.taxi-fleet-pricing span {
    display: block;
    font-size: 12px;
    color: #888;
}

.taxi-fleet-pricing strong {
    font-size: 18px;
    color: #004E89;
}

.taxi-fleet-btn {
    display: block;
    padding: 12px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.taxi-fleet-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
    color: white;
}

/* ---------- SECTION 3: SERVICES ---------- */
.taxi-services {
    padding: 60px 0 70px;
    background: white;
}

.taxi-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.taxi-service-item {
    background: #f8f9fa;
    padding: 25px 16px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.taxi-service-item:hover {
    background: white;
    border-color: #2EC4B6;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(46,196,182,0.06);
}

.taxi-service-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.taxi-service-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.taxi-service-item p {
    color: #888;
    font-size: 12px;
    margin: 0;
}

/* ---------- SECTION 4: BOOKING FORM ---------- */
.taxi-booking {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.taxi-booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.taxi-booking-left {
    padding-top: 10px;
}

.taxi-booking-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #2EC4B6, #004E89);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.taxi-booking-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.taxi-booking-left h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taxi-booking-left > p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.taxi-booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.taxi-booking-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.taxi-booking-benefits > div span {
    font-size: 28px;
}

.taxi-booking-benefits > div strong {
    display: block;
    font-size: 15px;
    color: #1a1a2e;
}

.taxi-booking-benefits > div p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* ---------- FORM ---------- */
.taxi-booking-right {
    background: white;
    padding: 30px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.taxi-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.taxi-form-group {
    margin-bottom: 14px;
}

.taxi-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.taxi-form-group input,
.taxi-form-group select,
.taxi-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
    color: #1a1a2e;
    font-family: inherit;
}

.taxi-form-group input:focus,
.taxi-form-group select:focus,
.taxi-form-group textarea:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
    background: white;
}

.taxi-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.taxi-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.full-width {
    grid-column: 1 / -1;
}

.taxi-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.taxi-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.3);
}

.taxi-form-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 12px;
}

/* ---------- SECTION 5: WHY US ---------- */
.taxi-why {
    padding: 50px 0;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.taxi-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.taxi-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.taxi-why-item:hover {
    background: #f8f9fa;
    transform: translateY(-4px);
}

.taxi-why-item span {
    font-size: 32px;
    flex-shrink: 0;
}

.taxi-why-item strong {
    display: block;
    font-size: 15px;
    color: #1a1a2e;
}

.taxi-why-item p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* ---------- SECTION 6: CTA ---------- */
.taxi-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 40%, #2d1b4e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.taxi-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: taxiCtaGlow 8s ease-in-out infinite;
}

.taxi-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,196,182,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: taxiCtaGlow 10s ease-in-out infinite reverse;
}

@keyframes taxiCtaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.taxi-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.taxi-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.taxi-cta-content h2 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: taxiGradient 5s ease-in-out infinite;
}

.taxi-cta-content p {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    margin-bottom: 28px;
}

.taxi-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.taxi-cta-primary {
    padding: 14px 38px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(37,211,102,0.3);
}

.taxi-cta-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(37,211,102,0.4);
    color: white;
}

.taxi-cta-secondary {
    padding: 14px 38px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
}

.taxi-cta-secondary:hover {
    border-color: #2EC4B6;
    background: rgba(46,196,182,0.08);
    transform: translateY(-4px);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .taxi-hero-container {
        padding: 0 30px;
        gap: 40px;
    }
    .taxi-fleet-grid {
        gap: 20px;
    }
    .taxi-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .taxi-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
    .taxi-hero-left > p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .taxi-hero-features {
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .taxi-hero-buttons {
        justify-content: center;
    }
    .taxi-hero-car-display {
        max-width: 300px;
    }
    .taxi-hero-car-icon {
        font-size: 100px;
    }
    .taxi-hero-car-stats span {
        font-size: 22px;
    }

    .taxi-booking-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .taxi-booking-left {
        text-align: center;
    }
    .taxi-booking-benefits {
        max-width: 400px;
        margin: 0 auto;
    }

    .taxi-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .taxi-hero-left h1 {
        font-size: 36px;
    }
    .taxi-hero-left > p {
        font-size: 16px;
    }
    .taxi-hero-features {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .taxi-hero-car-display {
        max-width: 240px;
    }
    .taxi-hero-car-icon {
        font-size: 80px;
    }
    .taxi-hero-car-stats {
        gap: 15px;
    }
    .taxi-hero-car-stats span {
        font-size: 18px;
    }
    .taxi-hero-car-badge {
        font-size: 11px;
        padding: 5px 14px;
        top: 5%;
    }

    .taxi-fleet-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .taxi-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .taxi-why-grid {
        grid-template-columns: 1fr;
    }

    .taxi-header h2 {
        font-size: 28px;
    }
    .taxi-booking-left h2 {
        font-size: 28px;
    }

    .taxi-form-row {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: 1;
    }

    .taxi-booking-right {
        padding: 20px 16px;
    }

    .taxi-cta-content h2 {
        font-size: 30px;
    }
    .taxi-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .taxi-cta-primary,
    .taxi-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .taxi-hero-left h1 {
        font-size: 28px;
    }
    .taxi-hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    .taxi-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .taxi-hero-btn-primary,
    .taxi-hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
    .taxi-hero-car-display {
        max-width: 200px;
    }
    .taxi-hero-car-icon {
        font-size: 60px;
    }
    .taxi-hero-car-stats span {
        font-size: 16px;
    }

    .taxi-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .taxi-service-item {
        padding: 18px 12px;
    }
    .taxi-service-icon {
        font-size: 26px;
    }
    .taxi-service-item h4 {
        font-size: 13px;
    }

    .taxi-fleet-pricing {
        grid-template-columns: 1fr 1fr;
    }
    .taxi-fleet-pricing strong {
        font-size: 16px;
    }
}