/* =============================================
   ARENDĂ AUTO – GRID CU 3 MAȘINI PE RÂND + EFECTE DE MĂRIRE
============================================= */

.cars-section {
    padding: 80px 5% 120px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 70px;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 16px;
}

/* GRID RESPONSIVE (3 → 2 → 1) */
.rent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .rent-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 700px) {
    .rent-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-header h1 { font-size: 2.6rem; }
    .cars-section { padding: 100px 5% 100px; }
}

/* CARDURI CU EFECTE DE MĂRIRE */
.car-card {
    background: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
}

.car-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0,170,255,0.3);
}

.car-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,170,255,0.22), transparent 65%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
    pointer-events: none;
}
.car-card:hover::before { opacity: 1; }

.car-img { height: 260px; overflow: hidden; }
.car-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}
.car-card:hover .car-img img { transform: scale(1.2); }

.car-info {
    padding: 34px 28px;
    text-align: center;
}
.car-info h3 { font-size: 1.58rem; margin-bottom: 14px; color: #fff; }
.car-meta { font-size: 14px; opacity: 0.8; margin-bottom: 10px; }
.car-price { font-size: 1.7rem; color: #0af; font-weight: 600; margin: 16px 0; }

/* Butonul rămâne la fel, dar îl facem să pulseze ușor pe hover */
.reserve-btn {
    transition: all 0.3s ease;
}
.reserve-btn:hover {
    background: #0af;
    color: #000;
    transform: scale(1.05);
}
/* =============================================
   RENT HERO BANNER – PREMIUM 2025
============================================= */
.rent-hero {
    position: relative;
    height: 92vh;
    min-height: 680px;
    overflow: hidden;
    margin-bottom: 10px;
}

.rent-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-img-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rent-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.78) 0%, 
        rgba(0,0,0,0.55) 50%, 
        rgba(0,170,255,0.25) 100%);
    z-index: 1;
}

.rent-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.rent-hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,170,255,0.2);
    color: #0af;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(0,170,255,0.4);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.rent-hero h1 {
    font-size: 4.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.glow-btn {
    background: #0af;
    color: #000;
    padding: 18px 44px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0,170,255,0.5);
}

.glow-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,170,255,0.7);
}

.outline-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #0af;
    padding: 16px 36px;
}

.outline-btn:hover {
    background: #0af;
    color: #000;
}

.outline-btn svg {
    margin-right: 8px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature::before {
    content: "✓";
    color: #0af;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Mobile */
@media (max-width: 900px) {
    .rent-hero { height: 80vh; min-height: 600px; }
    .rent-hero h1 { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-img-desktop { display: none; }
    .hero-img-mobile { display: block; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .ml-20 { margin-left: 0 !important; }
}

@media (max-width: 600px) {
    .rent-hero h1 { font-size: 2.8rem; }
    .hero-features { gap: 16px; flex-direction: column; }
}