/* --- Rent Hero --- */
.rent-hero {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/images/main/liela-zale.jpg');
    background-size: cover;
    background-position: center;
}

.rent-hero h1 { 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    text-transform: uppercase; 
    font-weight: 900; 
}

.rent-hero h1 b { 
    color: var(--red); 
}

.rent-hero p { 
    color: #888; 
    max-width: 700px; 
    margin: 20px auto 0; 
    font-size: 1.1rem; 
}

/* --- Rent Cards Layout --- */
.rent-options { 
    padding: 80px 0; 
}

.rent-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    background: var(--card-bg);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 50px;
    align-items: center;
    transition: 0.3s;
}

/* Katrai otrajai kartītei samainām vietas automātiski */
.rent-card:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.rent-card:nth-child(even) .rent-image { 
    order: 2; 
}

.rent-card:nth-child(even) .rent-info { 
    order: 1; 
}

/* --- Rent Card Details --- */
.rent-image {
    position: relative;
    height: 450px;
}

.rent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.rent-info {
    padding: 60px;
}

.rent-info h2 { 
    font-size: 2.5rem; 
    text-transform: uppercase; 
    margin-bottom: 20px; 
}

.rent-info h2 span { 
    color: var(--red); 
}

.rent-info p { 
    color: #aaa; 
    margin-bottom: 30px; 
    line-height: 1.6; 
}

.specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #eee;
}

.spec-item i {
    color: var(--red);
    font-size: 1.2rem;
}

/* --- Benefits Banner --- */
.benefits-banner {
    background: linear-gradient(45deg, #1a1a1a, #0b0b0b);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--red);
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.benefits-banner i {
    font-size: 3rem;
    color: var(--red);
}

.benefits-banner h3 { 
    text-transform: uppercase; 
    margin-bottom: 5px; 
}

.benefits-banner p { 
    color: #888; 
    font-size: 0.95rem; 
}

/* --- Mobile Responsiveness --- */
@media (max-width: 968px) {
    .rent-card, 
    .rent-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    /* Atgriežam dabisko secību mobilajās ierīcēs: bilde augšā, teksts apakšā */
    .rent-card .rent-image,
    .rent-card:nth-child(even) .rent-image { 
        order: 1; 
    }

    .rent-card .rent-info,
    .rent-card:nth-child(even) .rent-info { 
        order: 2; 
    }

    .rent-image { 
        height: 300px; 
    }

    .rent-info { 
        padding: 40px 30px; 
    }

    .specs { 
        grid-template-columns: 1fr; 
    }

    .benefits-banner { 
        flex-direction: column; 
        text-align: center; 
    }
}