/* Neden Rent A Car V8 - Sıfırdan */

.wr8 {
    box-sizing: border-box;
    width: 100%;
    padding: 80px 0;
    background: #1e293b;
}

.wr8__wrap {
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.wr8__head {
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 48px;
}

.wr8__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #93c5fd;
}

.wr8__title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.wr8__desc {
    margin: 0;
    font-size: 16px;
    color: #94a3b8;
}

.wr8__grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.wr8__card {
    box-sizing: border-box;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
}

.wr8__icon-box {
    box-sizing: border-box;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 16px;
}

.wr8__icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.wr8__card-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.wr8__card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
}

.wr8__cta {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.wr8__cta-text {
    margin: 0;
    font-size: 16px;
    color: #94a3b8;
}

.wr8__cta-text strong {
    color: #f8fafc;
}

.wr8__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
}

.wr8__cta-btn:hover {
    opacity: 0.95;
}

@media (max-width: 900px) {
    .wr8__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wr8 {
        padding: 48px 0;
    }
    .wr8__wrap {
        padding: 0 16px;
    }
    .wr8__grid {
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }
    .wr8__cta {
        flex-direction: column;
        text-align: center;
    }
}
