﻿/* --- Premium Transport Sections --- */
.premium-transport-section {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    direction: rtl;
}

.bg-light-soft {
    background-color: #f8fafc;
}

/* Image Styling & Effects */
.transport-img-wrapper {
    position: relative;
    padding: 20px;
    text-align: center;
    border-radius: 30px;
    z-index: 1;
}

.img-backdrop {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

    .img-backdrop.accent-green {
        background: linear-gradient(135deg, #dcfce7, #86efac);
    }

    .img-backdrop.accent-yellow {
        background: linear-gradient(135deg, #fef08a, #fde047);
    }

.transport-img-wrapper img {
    max-width: 100%;
    height: auto;
    width: 450px; /* حداکثر عرض کنترل شده */
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* برای عکس‌های دارای پس‌زمینه مثل تاکسی، سایه ملایم می‌دهیم */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.premium-transport-section:hover .transport-img-wrapper img {
    transform: scale(1.03) translateY(-10px);
}

/* Content Styling */
.transport-content {
    padding: 30px;
}

.transport-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

    .transport-badge.accent-green {
        background: linear-gradient(135deg, #10b981, #34d399);
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    }

    .transport-badge.accent-yellow {
        background: linear-gradient(135deg, #eab308, #facc15);
        color: #422006;
        box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
    }

.transport-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
}

/* List & Links */
.transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .transport-list li {
        margin-bottom: 15px;
    }

    .transport-list a {
        display: flex;
        align-items: center;
        color: #475569;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        padding: 12px 20px;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.04);
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        transition: all 0.3s ease;
    }

        .transport-list a:hover {
            color: #007bff;
            transform: translateX(-10px);
            box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
            border-color: rgba(0, 123, 255, 0.1);
        }

        .transport-list a svg {
            width: 22px;
            height: 22px;
            margin-left: 12px;
            color: #007bff;
            transition: transform 0.3s ease;
        }

        .transport-list a:hover svg {
            transform: scale(1.2);
        }

/* Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal-left.active, .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

/* Responsive */
@media (max-width: 991px) {
    .transport-content {
        margin-top: 30px;
        text-align: center;
    }

    .transport-list a {
        justify-content: center;
    }
}
