/* Featured Rental Carousel - Eye-Catching Design */
.featured-rental-carousel {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(71, 138, 201, 0.15);
    position: relative;
    overflow: hidden;
}

.featured-rental-carousel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rental-carousel-item {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.rental-carousel-item.active {
    display: contents;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    height: 450px;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rental-carousel-item.active .carousel-image img {
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

.carousel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c9935f 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.carousel-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.carousel-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
}

.carousel-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.spec-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(71, 138, 201, 0.15);
}

.spec-item i {
    color: #478ac9;
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.spec-item span {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.carousel-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

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

.carousel-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 14px;
}

.carousel-features i {
    color: #478ac9;
    font-weight: bold;
    width: 20px;
    text-align: center;
}

.btn-carousel-cta {
    background: linear-gradient(135deg, #d4a574 0%, #c9935f 100%) !important;
    color: white !important;
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35) !important;
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

.btn-carousel-cta:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5) !important;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    background: linear-gradient(135deg, #478ac9 0%, #3a6fa8 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 138, 201, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(71, 138, 201, 0.5);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #478ac9;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(71, 138, 201, 0.5);
}

.dot:hover {
    background: #478ac9;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .carousel-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel-image {
        height: 350px;
    }

    .carousel-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .featured-rental-carousel {
        padding: 40px 20px;
    }

    .carousel-container {
        gap: 20px;
    }

    .carousel-image {
        height: 300px;
    }

    .carousel-content h2 {
        font-size: 24px;
    }

    .carousel-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .spec-item {
        padding: 12px;
    }

    .spec-item i {
        font-size: 18px;
    }

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

    .btn-carousel-cta {
        padding: 14px 30px !important;
        font-size: 14px !important;
    }

    .carousel-controls {
        gap: 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .featured-rental-carousel {
        padding: 30px 15px;
    }

    .carousel-image {
        height: 250px;
    }

    .carousel-content h2 {
        font-size: 20px;
    }

    .carousel-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .spec-item {
        padding: 10px;
    }

    .spec-item i {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .spec-item span {
        font-size: 12px;
    }

    .carousel-description {
        font-size: 14px;
    }

    .carousel-features li {
        font-size: 12px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-dots {
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 12px;
        height: 12px;
    }
}
