/* transport.css - Transport section, cards, and features */

/* =============================================
   TRANSPORT SECTION
   ============================================= */
.transport {
    margin-top: 120px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.transport::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(243, 85, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 85, 37, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.transport .section-heading {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.transport .section-heading h3 {
    margin-top: 10px;
}

.transport .section-heading h6 {
    color: #f35525;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.transport .section-heading h6::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f35525, #ff7849);
    border-radius: 2px;
}

.transport .section-heading h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 56px;
    color: #1e1e1e;
    position: relative;
}

/* =============================================
   TRANSPORT SLIDER
   ============================================= */
.transport-slider-container {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.transport-item {
    padding: 0 15px;
}

.transport-item .item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(243, 85, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.transport-item .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f35525, #ff7849, #f35525);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.transport-item .item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(243, 85, 37, 0.2),
        0 0 30px rgba(243, 85, 37, 0.1);
}

.transport-item .item:hover::before {
    height: 6px;
}

.transport-item .item img {
    border-radius: 15px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
}

.transport-item .item:hover img {
    transform: scale(1.05);
}

/* =============================================
   TRANSPORT CATEGORIES & TITLES
   ============================================= */
.transport-item .item span.category {
    background: linear-gradient(135deg, #f35525, #ff7849);
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    display: inline-block;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(243, 85, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.transport-item .item span.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.transport-item .item:hover span.category::before {
    left: 100%;
}

.transport-item .item h4 {
    font-size: 22px;
    margin: 25px 0px 20px 0px;
    font-weight: 700;
}

.transport-item .item h4 a {
    color: #1e1e1e;
    transition: all 0.3s ease;
    position: relative;
}

.transport-item .item h4 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f35525, #ff7849);
    transition: width 0.3s ease;
}

.transport-item .item h4 a:hover {
    color: #f35525;
}

.transport-item .item h4 a:hover::after {
    width: 100%;
}

/* =============================================
   TRANSPORT FEATURES
   ============================================= */
.transport-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 1px solid rgba(243, 85, 37, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(243, 85, 37, 0.2);
}

.feature-icon:hover {
    background: rgba(243, 85, 37, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 85, 37, 0.2);
    z-index: 1000;
}

.feature-icon .transport-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.feature-icon:hover .transport-icon {
    opacity: 1;
}

.feature-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.feature-icon:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* =============================================
   TRANSPORT LIST FEATURES
   ============================================= */
.transport-item .item ul {
    border-bottom: 2px solid #f1f3f4;
    margin-bottom: 30px;
    padding-bottom: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.transport-item .item ul li {
    display: inline-block;
    font-size: 14px;
    color: #4a4a4a;
    margin-right: 12px;
    margin-bottom: 12px;
    position: relative;
    vertical-align: middle;
    line-height: 24px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 85, 37, 0.1);
}

.transport-item .item ul li:hover {
    background: rgba(243, 85, 37, 0.1);
    transform: translateY(-2px);
}

.transport-item .item ul li i {
    margin-right: 5px;
    font-size: 16px;
}

.transport-item .item ul li .fa-users {
    color: #f35525;
}

.transport-item .item ul li .fa-calendar {
    color: #f35525;
}

.transport-item .item ul li .feature-available {
    color: #28a745;
}

.transport-item .item ul li .feature-unavailable {
    color: #dc3545;
}

.transport-item .item ul li .text-success {
    color: #28a745 !important;
    margin-left: 3px;
}

.transport-item .item ul li .text-danger {
    color: #dc3545 !important;
    margin-left: 3px;
}

.transport-item .item ul li span {
    font-weight: 600;
    color: #1e1e1e;
}

.transport-item .item ul li span.number {
    font-weight: 700;
    color: #f35525;
    margin-left: 4px;
    font-size: 16px;
}

.transport-item .item h6 {
    font-size: 20px;
    color: #f35525;
    margin-top: 6px;
    display: inline-block;
    float: right;
    margin-top: 30px;
    font-weight: 600;
}

.transport-item .item .main-button {
    text-align: center;
    margin-top: 25px;
}

.transport-item .item .main-button a {
    background: linear-gradient(135deg, #1e1e1e 0%, #333 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    padding: 0px 35px;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(30, 30, 30, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.transport-item .item .main-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f35525, #ff7849);
    transition: left 0.4s ease;
    z-index: -1;
}

.transport-item .item .main-button a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(243, 85, 37, 0.4);
}

.transport-item .item .main-button a:hover::before {
    left: 0;
}

.transport-item .item .main-button a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.transport-item .item .main-button a:hover i {
    transform: scale(1.1);
}

/* =============================================
   TRANSPORT SLIDER NAVIGATION
   ============================================= */
.transport-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.transport-slider .owl-nav .owl-prev,
.transport-slider .owl-nav .owl-next {
    position: absolute;
    background: linear-gradient(135deg, #f35525, #ff7849) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-size: 22px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(243, 85, 37, 0.3);
}

.transport-slider .owl-nav .owl-prev {
    left: -30px;
}

.transport-slider .owl-nav .owl-next {
    right: -30px;
}

.transport-slider .owl-nav .owl-prev:hover,
.transport-slider .owl-nav .owl-next:hover {
    background: linear-gradient(135deg, #e04414, #f35525) !important;
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(243, 85, 37, 0.5);
}

.transport-slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.transport-slider .owl-dot {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #ddd, #ccc);
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.4s ease;
    border: none;
    position: relative;
}

.transport-slider .owl-dot::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.transport-slider .owl-dot.active {
    background: linear-gradient(135deg, #f35525, #ff7849);
    transform: scale(1.3);
}

.transport-slider .owl-dot.active::before {
    border-color: rgba(243, 85, 37, 0.3);
}

/* =============================================
   TRANSPORT ICONS
   ============================================= */
.transport-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
    vertical-align: middle;
}

.icon-ac { background-image: url('../../assets/images/icons/ac-icon.png'); }
.icon-gps { background-image: url('../../assets/images/icons/gps-icon.png'); }
.icon-wifi { background-image: url('../../assets/images/icons/wifi-icon.png'); }
.icon-microphone { background-image: url('../../assets/images/icons/microphone-icon.png'); }
.icon-dvd { background-image: url('../../assets/images/icons/dvd-icon.png'); }
.icon-wc { background-image: url('../../assets/images/icons/wc-icon.png'); }
.icon-cup { background-image: url('../../assets/images/icons/cup-icon.png'); }
.icon-voltage { background-image: url('../../assets/images/icons/voltage-icon.png'); }
.icon-seats { background-image: url('../../assets/images/icons/seats-icon.png'); }
.icon-usb { background-image: url('../../assets/images/icons/usb-icon.png'); }
.icon-refrigerator { background-image: url('../../assets/images/icons/refrigerator-icon.png'); }

.status-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../../assets/images/icons/yes.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 3px;
    vertical-align: middle;
}

.status-x {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../../assets/images/icons/x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 3px;
    vertical-align: middle;
}
