.elementor-button:hover{
    color:#54b435!important;
}

.shadow-right {
    box-shadow: -13px 8px 40px -10px rgb(0 0 0 / 49%);
}
/* Main Card - Full Width Background */
.em-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: .35s;
    display: flex;
    flex-direction: column;
    border-radius: 20px;;
    background: transparent; /* Remove background, image will be background */
    max-height: 400px;
}

/* Background Image Container - Full Size */
.em-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.em-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s ease; /* Slow zoom effect */
    filter: brightness(0.85); /* Darken slightly for text contrast */
}

.em-card:hover .em-card-img img {
    transform: scale(1.1);
}

/* Premium Overlay for Text Readability */
.em-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
    transition: opacity 0.5s ease;
}

.em-card:hover::before {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Badge Positioning */
.em-badge {
    position: absolute;
    top: 14px;
    left: 40px;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.available {
    background: #5ecc0f;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.low {
    background: #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.booked {
    background: #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Card Body - Caption Overlay */
.em-card-body {
    position: relative;
    z-index: 3;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;

    flex: 1;
    justify-content: flex-end; /* Push content to bottom */
    max-width: 800px; /* Limit text width for better readability */
    height: 100%;
    background: transparent;
}

/* Premium Title */
.em-title {
    font-size:25px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: -0.5px;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.em-card:hover .em-title {
    transform: translateY(-5px);
}

/* Animated Underline for Title */
.em-title::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #5ecc0f, #ffffff);
    margin-top: 12px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.em-card:hover .em-title::after {
    width: 120px;
}

/* Specs Container */
.em-specs {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Individual spec items */
.em-specs span,
.em-specs [em_specs] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.em-specs span:hover,
.em-specs [em_specs]:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Premium Price */
.em-price {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.em-price::before {
    content: '$';
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 4px;
}


/* Premium Button */
.em-btn {
    display: inline-block;
    width: fit-content;
    min-width: 200px;
    background: #5ecc0f;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 5;
    margin-top: 20px;
}

.em-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.em-btn:hover {
    background: #edfbe2;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px #edfbe2;
    border-color: rgba(255, 255, 255, 0.2);
}

.em-btn:hover::before {
    width: 300px;
    height: 300px;
}

.em-btn:active {
    transform: translateY(0);
}

/* Swiper Navigation Customization */
.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 20;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(16, 185, 129, 0.8);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: white !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #5ecc0f !important;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .em-swiper-container .swiper-slide {
        height: 500px;
    }
    
    .em-title {
        font-size: 40px;
    }
    
    .em-card-body {
        padding: 40px 30px;
    }
    
    .em-badge {
        top: 20px;
        left: 30px;
    }
}

@media (max-width: 768px) {
    .em-swiper-container .swiper-slide {
        height: 450px;
    }
    
    .em-card-body {
        padding: 30px 20px;
    }
    
    .em-title {
        font-size: 32px;
    }
    
    .em-title::after {
        height: 3px;
    }
    
    .em-specs {
        font-size: 16px;
    }
    
    .em-specs span,
    .em-specs [em_specs] {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .em-price {
        font-size: 36px;
    }
    
    .em-price::before {
        font-size: 20px;
    }
    
    .em-price::after {
        font-size: 16px;
    }
    
    .em-btn {
        padding: 14px 30px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .em-badge {
        top: 16px;
        left: 20px;
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .em-swiper-container .swiper-slide {
        height: 400px;
    }
    
    .em-title {
        font-size: 28px;
    }
    
    .em-card-body {
        padding: 20px 16px;
    }
    
    .em-price {
        font-size: 30px;
    }
    
    .em-btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation for slide change */
@keyframes slideContentFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active .em-title,
.swiper-slide-active .em-specs,
.swiper-slide-active .em-price,
.swiper-slide-active .em-btn {
    animation: slideContentFade 0.8s ease forwards;
}

.swiper-slide-active .em-title {
    animation-delay: 0.1s;
}

.swiper-slide-active .em-specs {
    animation-delay: 0.2s;
}

.swiper-slide-active .em-price {
    animation-delay: 0.3s;
}

.swiper-slide-active .em-btn {
    animation-delay: 0.4s;
}

.taxonomy-vehicles { max-width:1200px; margin:auto; padding:40px 20px; }
.tax-header { text-align:center; margin-bottom:40px; }
.vehicle-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:30px; }
.vehicle-card { background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 8px 25px rgba(0,0,0,.08); }
.vehicle-card img { width:100%; height:220px; object-fit:cover; }
.card-body { padding:18px; }
.card-body h2 { font-size:20px; margin-bottom:10px; }
.btn { display:inline-block; margin-top:10px; padding:8px 14px; background:#111; color:#fff; border-radius:6px; }

.site-content .ast-container {

    display: block;
}
  .otgs-development-site-front-end ,.wpml-ls-statics-footer.wpml-ls.wpml-ls-legacy-list-horizontal{
    display: none !important;
}