 /* ===== ARAÇ KİRALAMA SAYFASI GENEL ===== */
.arac-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TAM EKRAN BANNER (FOTOĞRAF AYARI) ===== */
.arac-banner {
    width: 100%;
    height: 100vh; 
    background-image: url("../img/rent.png");
    background-size: cover;
    
    /* --- BURASI DEĞİŞTİ --- */
    /* Resmin üst kısmını daha çok göstermek (resmi aşağı kaydırmak) için 'center top' yapıyoruz */
    background-position: center top; 
    /* ---------------------- */
    
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Resmin üzerine hafif bir karanlık katman (Okunabilirlik için) */
.arac-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* ===== ŞEFFAF KUTU (YUKARIDA) ===== */
.arac-overlay-box {
    position: relative;
    z-index: 10;
    width: 85%;
    max-width: 850px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    text-align: center;
    
    /* Kutuyu yukarıda tutuyoruz ki resimdeki araç rahat gözüksün */
    transform: translateY(-160px); 
    transition: 0.3s ease;
}

.arac-overlay-box h1 {
    font-size: 34px;
    color: #e10000;
    margin-bottom: 8px;
    font-weight: 800;
}

.arac-overlay-box p {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== BUTON ===== */
.arac-btn {
    display: inline-block;
    padding: 10px 35px;
    background: #e10000;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.arac-btn:hover {
    background: #000;
}

/* ===== ALT BİLGİ BANDI (DAR) ===== */
.arac-content-band {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.arac-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.arac-card {
    padding: 15px;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    background: #fdfdfd;
}

.arac-card i {
    font-size: 24px;
    color: #e10000;
    margin-bottom: 8px;
    display: block;
}

.arac-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.arac-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* MOBİL */
@media (max-width: 768px) {
    .arac-banner { height: 70vh; }
    .arac-overlay-box { transform: translateY(0); width: 95%; }
}
