/* ==================== ULTIMATE VEHICLE CARDS - GERÇEKTEN MÜKEMMEL ==================== */

/* ===== VEHICLES GRID ===== */
.vehicles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr)) !important;
    gap: 3rem !important;
    padding: 3rem 0 !important;
}

/* ===== VEHICLE CARD - ULTIMATE DESIGN ===== */
.vehicle-card {
    position: relative !important;
    background: linear-gradient(145deg, 
        rgba(30, 58, 138, 0.3) 0%, 
        rgba(15, 23, 42, 0.5) 50%,
        rgba(30, 58, 138, 0.3) 100%) !important;
    backdrop-filter: blur(25px) !important;
    border-radius: 1.75rem !important;
    overflow: visible !important;
    padding: 2rem !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(234, 179, 8, 0.1) inset,
        0 0 30px rgba(234, 179, 8, 0.05) !important;
}

/* Gradient border */
.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2.5rem;
    padding: 3px;
    background: linear-gradient(135deg, #eab308, #fbbf24, #eab308);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vehicle-card:hover::before {
    opacity: 0.6;
}

.vehicle-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    border-color: rgba(234, 179, 8, 0.3) !important;
    box-shadow: 
        0 35px 90px rgba(234, 179, 8, 0.4),
        0 0 0 2px rgba(234, 179, 8, 0.3) inset,
        0 0 60px rgba(234, 179, 8, 0.2) !important;
}

/* ===== HEADER (BADGE + CATEGORY) ===== */
.vehicle-card .vehicle-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 1.5rem !important;
}

.vehicle-badge,
.vehicle-card [class*="badge"] {
    padding: 0.625rem 1.25rem !important;
    background: linear-gradient(135deg, #eab308, #fbbf24) !important;
    color: #0f172a !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 2rem !important;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4) !important;
}

.vehicle-tag,
.vehicle-card .vehicle-tag {
    padding: 0.5rem 1rem !important;
    background: rgba(234, 179, 8, 0.15) !important;
    color: #eab308 !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 1rem !important;
    border: 1px solid rgba(234, 179, 8, 0.3) !important;
}

/* ===== VEHICLE NAME - KOCAMAN ===== */
.vehicle-card h3,
.vehicle-card .vehicle-name {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 1rem 0 !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #ffffff 0%, #eab308 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ===== SPECS - MODERN ICONLAR ===== */
.vehicle-spec-list,
.vehicle-card ul {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 2rem 0 !important;
}

.vehicle-spec-list li,
.vehicle-card ul li {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1.125rem 1.25rem !important;
    background: rgba(30, 58, 138, 0.4) !important;
    border-radius: 1.25rem !important;
    border: 1px solid rgba(234, 179, 8, 0.15) !important;
    transition: all 0.3s ease !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.vehicle-spec-list li:hover,
.vehicle-card ul li:hover {
    background: rgba(234, 179, 8, 0.2) !important;
    border-color: rgba(234, 179, 8, 0.5) !important;
    transform: translateX(5px) !important;
}

.vehicle-spec-list li.spec-active,
.vehicle-card ul li.spec-active {
    background: rgba(234, 179, 8, 0.25) !important;
    border-color: rgba(234, 179, 8, 0.55) !important;
    transform: translateX(6px) !important;
}

.vehicle-spec-list li i,
.vehicle-card ul li i {
    font-size: 1.5rem !important;
    color: #eab308 !important;
    min-width: 28px !important;
    transition: all 0.3s ease !important;
}

.vehicle-spec-list li:hover i,
.vehicle-card ul li:hover i {
    transform: scale(1.2) rotate(10deg) !important;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.8)) !important;
}

/* ===== PRICE SECTION - COMPACT & GÜZEL ===== */
.vehicle-footer {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 1.5rem !important;
    align-items: center !important;
    background: linear-gradient(135deg, 
        rgba(234, 179, 8, 0.15) 0%, 
        rgba(30, 58, 138, 0.3) 100%) !important;
    border-radius: 1.25rem !important;
    padding: 1.5rem !important;
    margin: 1.5rem 0 !important;
    border: 1.5px solid rgba(234, 179, 8, 0.3) !important;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.15) !important;
}

.vehicle-price {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

.price-label {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

.price-amount {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #eab308 !important;
    line-height: 1 !important;
    display: block !important;
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.4) !important;
}

.vehicle-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

/* ===== BUTTONS - COMPACT & GÜZEL ===== */
.rent-btn,
.btn-calculate {
    width: 100% !important;
    padding: 1.125rem 1.75rem !important;
    background: linear-gradient(135deg, #eab308 0%, #fbbf24 100%) !important;
    color: #0f172a !important;
    border: none !important;
    border-radius: 1rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.625rem !important;
    margin-bottom: 0.875rem !important;
}

.rent-btn i,
.btn-calculate i {
    font-size: 1.25rem !important;
    transition: all 0.3s ease !important;
}

.rent-btn:hover,
.btn-calculate:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.5) !important;
}

.rent-btn:hover i,
.btn-calculate:hover i {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Alt butonlar grubu */
.btn-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.875rem !important;
    width: 100% !important;
}

/* Rezervasyon butonu */
.btn-reserve {
    padding: 1rem 1.25rem !important;
    background: rgba(30, 58, 138, 0.5) !important;
    color: #eab308 !important;
    border: 1.5px solid rgba(234, 179, 8, 0.5) !important;
    border-radius: 0.875rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
}

.btn-reserve i {
    font-size: 1.125rem !important;
}

.btn-reserve:hover {
    background: rgba(234, 179, 8, 0.25) !important;
    border-color: #eab308 !important;
    color: #fbbf24 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(234, 179, 8, 0.35) !important;
}

/* Detaylar butonu */
.btn-details {
    padding: 1rem 1.25rem !important;
    background: rgba(30, 58, 138, 0.3) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(234, 179, 8, 0.25) !important;
    border-radius: 0.875rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
}

.btn-details i {
    font-size: 1.125rem !important;
    color: #eab308 !important;
}

.btn-details:hover {
    background: rgba(30, 58, 138, 0.6) !important;
    border-color: rgba(234, 179, 8, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.4) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .vehicle-card {
        padding: 2rem !important;
    }
    
    .vehicle-card h3 {
        font-size: 1.875rem !important;
    }
    
    .vehicle-spec-list {
        grid-template-columns: 1fr !important;
    }
    
    .price-amount {
        font-size: 2.5rem !important;
    }
    
    .btn-group {
        grid-template-columns: 1fr !important;
    }
}

/* ===== SHINE EFFECT ===== */
.vehicle-card .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 10;
}

.vehicle-card:hover .shine {
    left: 150%;
}

/* ===== FAVORITE BUTTON ===== */
.btn-favorite {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #eab308, #fbbf24) !important;
    border: 3px solid rgba(15, 23, 42, 0.8) !important;
    border-radius: 50% !important;
    color: #0f172a !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.5) !important;
}

.btn-favorite:hover {
    transform: scale(1.2) rotate(15deg) !important;
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.7) !important;
}

.btn-favorite.active i {
    color: #dc2626 !important;
}

