/* Premium Vehicle Selection Page - 724transfer.com Style */

.detay-baslik-alani {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.detay-baslik-alani::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.detay-baslik-alani > * {
    position: relative;
    z-index: 1;
}

.detay-baslık-ic {
    text-align: center;
    color: white;
}

.detay-baslık-ic h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.detay-baslık-ic p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 15px;
}

/* Vehicle Cards */
.vehicle-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.vehicle-card-modern:hover::before {
    transform: scaleX(1);
}

.vehicle-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(102, 126, 234, 0.1);
}

.vehicle-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card-modern:hover .vehicle-image-wrapper img {
    transform: scale(1.15);
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 2;
}

.vehicle-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vehicle-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.vehicle-meta-item i {
    color: #667eea;
    font-size: 16px;
}

.vehicle-content h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vehicle-content h2 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.vehicle-content h2 a:hover {
    color: #667eea;
}

.vehicle-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.vehicle-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.btn-vehicle-select {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-vehicle-select::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-vehicle-select:hover::before {
    width: 300px;
    height: 300px;
}

.btn-vehicle-select:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-vehicle-select:active {
    transform: translateY(-1px);
}

.btn-vehicle-select i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .detay-baslik-alani {
        padding: 50px 20px;
    }
    
    .detay-baslık-ic h1 {
        font-size: 32px;
    }
    
    .vehicle-image-wrapper {
        height: 220px;
    }
    
    .vehicle-content {
        padding: 20px;
    }
}


