/* =============================================
   TAXI DETAIL PAGE — Common Stylesheet
   taxi-detail.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ======= HERO BANNER ======= */
.breadcumb-wrapper {
    position: relative;
    background-color: #022243;
    height: 420px;
    background-size: cover !important;
    background-position: center !important;
}

.breadcumb-wrapper-opacity {
    background: linear-gradient(135deg, rgba(2, 34, 67, 0.85) 0%, rgba(0,0,0,0.60) 100%);
    height: 420px;
    display: flex;
    align-items: center;
}

/* ======= MAIN SECTION ======= */
.taxi-detail-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

/* ======= CAR IMAGE ======= */
.taxi-detail-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.taxi-detail-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.taxi-detail-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #fb960a, #f59e0b);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(251, 150, 10, 0.4);
}

/* Image placeholder (for Toyota Etios without image) */
.taxi-detail-img-placeholder {
    width: 100%;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #022b50 0%, #044f82 100%);
}

.taxi-detail-img-placeholder i {
    font-size: 90px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
}

.taxi-detail-img-placeholder span {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
}

/* ======= OVERVIEW ======= */
.taxi-detail-overview {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.taxi-detail-title {
    font-size: 30px;
    font-weight: 800;
    color: #0c1c38;
    margin-bottom: 14px;
}

.taxi-detail-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ======= SPECS GRID ======= */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #eef0f2;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: #fb960a;
    background: #fff8ee;
    transform: translateY(-2px);
}

.spec-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffecd2, #ffd89b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fb960a;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 14px;
    font-weight: 700;
    color: #0c1c38;
}

/* ======= FEATURES LIST ======= */
.features-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0c1c38;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.features-list li i {
    color: #fb960a;
    margin-top: 2px;
    font-size: 15px;
    flex-shrink: 0;
}

/* ======= BEST FOR TAGS ======= */
.best-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.best-for-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef6ff;
    color: #022243;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    border: 1px solid #cce0f5;
    transition: all 0.3s ease;
}

.best-for-tags span:hover {
    background: #022243;
    color: #ffffff;
    border-color: #022243;
}

.best-for-tags span i {
    color: #fb960a;
    font-size: 12px;
}

.best-for-tags span:hover i {
    color: #fb960a;
}

/* ======= BOOKING FORM STICKY ======= */
.booking-form-sticky {
    position: sticky;
    top: 100px;
}

.booking-form-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    margin-bottom: 16px;
}

.booking-form-header {
    background: linear-gradient(135deg, #022243 0%, #044f82 100%);
    padding: 24px 28px;
    color: white;
}

.booking-form-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.booking-form-header p {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    margin: 0;
}

/* Form body */
.booking-form-card form {
    padding: 24px 28px 28px;
}

.booking-form-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    font-size: 14px;
    padding: 10px 14px;
    color: #374151;
    background: #f9fafb;
    height: auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: #fb960a;
    box-shadow: 0 0 0 3px rgba(251, 150, 10, 0.12);
    background: #fff;
    outline: none;
}

.booking-form-card textarea.form-control {
    resize: none;
}

.booking-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #fb960a 0%, #f59e0b 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 150, 10, 0.4);
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, #022243 0%, #044f82 100%);
    box-shadow: 0 8px 25px rgba(2, 34, 67, 0.4);
    transform: translateY(-2px);
}

/* ======= QUICK CONTACT BOX ======= */
.quick-contact-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
}

.quick-contact-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0c1c38;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-contact-box p i {
    color: #fb960a;
    font-size: 16px;
}

.quick-contact-box p a {
    color: #0c1c38;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact-box p a:hover {
    color: #fb960a;
}

/* Input override */
input[type="text"],
input[type="tel"],
input[type="date"],
textarea,
select {
    font-family: 'Poppins', sans-serif;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1199px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .booking-form-sticky {
        position: static;
        margin-top: 16px;
    }

    .taxi-detail-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 767px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .taxi-detail-title {
        font-size: 24px;
    }

    .taxi-detail-overview {
        padding: 24px 20px;
    }

    .quick-contact-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}
