/* Rental Management Sections Styles */

.rental-management {
    padding: 20px 0;
    position: relative;
}

.rental-management.short-term {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.rental-management.long-term {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.rental-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.rental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rental-content.reverse {
    grid-template-columns: 1fr 1fr;
}

/* Rental Info Section */
.rental-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rental-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    color: #00d9a0;
}


.rental-badge i {
    font-size: 16px;
}

.rental-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2942;
    line-height: 1.2;
    margin: 0;
}

.rental-subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Features List */
.rental-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
}

.rental-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.rental-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
}

.rental-feature-content {
    flex: 1;
}

.rental-feature-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a2942;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.rental-feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Visual Section */
.rental-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.rental-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.rental-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Stats Grid */
.rental-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rental-stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.rental-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1;
    color: #1a2942;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 968px) {
    .rental-content,
    .rental-content.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .rental-title {
        font-size: 36px;
    }
    
    .rental-subtitle {
        font-size: 16px;
    }
    
    .rental-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rental-management {
        padding: 70px 0;
    }
    
    .rental-container {
        padding: 0 20px;
    }
    
    .rental-title {
        font-size: 32px;
    }
    
    .rental-features-list {
        gap: 20px;
    }
    
    .rental-feature-item {
        gap: 15px;
    }
    
    .rental-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .rental-feature-title {
        font-size: 16px;
    }
    
    .rental-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .rental-title {
        font-size: 28px;
    }
    
    .rental-subtitle {
        font-size: 15px;
    }
    
    .rental-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}