/* ===============================
   Taxi Detail Section
================================ */

.taxi-detail {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(42, 156, 100, 0.08),
        rgba(42, 156, 100, 0.02)
    );
    /* margin-top: 40px; */
}

.taxi-card {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 35px;
}

.taxi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.16);
}

/* Image */
.taxi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.taxi-info {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taxi-info h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.taxi-info .seats {
    font-size: 18px;
    font-weight: 500;
    color: rgba(42, 156, 100, 1);
    margin-bottom: 35px;
}

/* Button */
.book-btn {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: rgba(42, 156, 100, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(42, 156, 100, 0.35);
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: #218a5c;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(42, 156, 100, 0.45);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {
    .taxi-card {
        grid-template-columns: 1fr;
    }

    .taxi-info {
        padding: 35px 30px;
        text-align: center;
    }
}
