/* ==========================================================
   RASEL UI FRAMEWORK v1.0
   Theme Variables
   ========================================================== */

:root{

    /* ---------- Brand Colors ---------- */

    --rs-primary:#0D6EFD;
    --rs-primary-dark:#0A58CA;
    --rs-primary-light:#EAF3FF;

    --rs-success:#16A34A;
    --rs-warning:#F59E0B;
    --rs-danger:#DC2626;

    /* ---------- Surface ---------- */

    --rs-white:#ffffff;
    --rs-bg:#F6F8FC;
    --rs-surface:#ffffff;

    /* ---------- Border ---------- */

    --rs-border:#E5E7EB;
    --rs-border-hover:#BFD3F7;

    /* ---------- Text ---------- */

    --rs-title:#1E293B;
    --rs-text:#475569;
    --rs-muted:#94A3B8;

    /* ---------- Radius ---------- */

    --rs-radius-xs:6px;
    --rs-radius-sm:10px;
    --rs-radius-md:14px;
    --rs-radius-lg:20px;
    --rs-radius-xl:28px;

    /* ---------- Shadow ---------- */

    --rs-shadow-xs:0 1px 3px rgba(15,23,42,.05);

    --rs-shadow-sm:0 4px 12px rgba(15,23,42,.08);

    --rs-shadow-md:0 10px 30px rgba(15,23,42,.10);

    --rs-shadow-lg:0 20px 45px rgba(15,23,42,.12);

    /* ---------- Spacing ---------- */

    --rs-space-1:4px;
    --rs-space-2:8px;
    --rs-space-3:12px;
    --rs-space-4:16px;
    --rs-space-5:20px;
    --rs-space-6:24px;
    --rs-space-7:32px;
    --rs-space-8:40px;
    --rs-space-9:48px;
    --rs-space-10:64px;

    /* ---------- Transition ---------- */

    --rs-transition:.30s ease;

}
/* ==================================================
   POLİÇE SORGULAMA - ÜST MENÜ ÖZEL BUTON
================================================== */

#menu-item-5536 > a {
    background: linear-gradient(135deg, #0D6EFD, #0056D6) !important;
    color: #ffffff !important;

    padding: 10px 20px !important;

    border-radius: 10px !important;

    border: 1px solid rgba(255,255,255,0.25) !important;

    box-shadow: 0 5px 15px rgba(13,110,253,0.30) !important;

    font-weight: 600 !important;

    transition: all 0.3s ease !important;
}

/* Üzerine gelince */
#menu-item-5536 > a:hover {
    background: linear-gradient(135deg, #0056D6, #0043A8) !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(13,110,253,0.40) !important;
}

/* Aktif sayfadayken */
#menu-item-5536.current-menu-item > a {
    background: linear-gradient(135deg, #0D6EFD, #0056D6) !important;

    color: #ffffff !important;

    box-shadow: 0 6px 20px rgba(13,110,253,0.35) !important;
}
/* ==========================================================
   RASEL SİGORTA - AVANTAJLAR BÖLÜMÜ
   SLIDER ALTINDA 5'Lİ KUTU
========================================================== */

.rasel-advantages {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    margin: 0;

    padding: 0;

    background: #ffffff;

}


/* ==========================================================
   AVANTAJ KUTUSU
========================================================== */

.rasel-advantage-item {

    min-height: 145px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px 30px;

    background: #ffffff;

    border-right: 1px solid #e5eaf0;

    transition: all .3s ease;

}


/* Son kutunun sağ çizgisini kaldır */

.rasel-advantage-item:last-child {

    border-right: none;

}


/* ==========================================================
   ALTERNATİF KUTU ARKA PLANLARI
========================================================== */

.rasel-advantage-item:nth-child(odd) {

    background: #eef4f8;

}

.rasel-advantage-item:nth-child(even) {

    background: #ffffff;

}


/* ==========================================================
   İKON
========================================================== */

.rasel-advantage-icon {

    min-width: 58px;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #2f80ed;

    font-size: 32px;

}


/* ==========================================================
   İKON RENK DETAYI
========================================================== */

.rasel-advantage-item:nth-child(3) .rasel-advantage-icon i,
.rasel-advantage-item:nth-child(4) .rasel-advantage-icon i {

    color: #f28c28;

}


/* ==========================================================
   YAZI ALANI
========================================================== */

.rasel-advantage-text {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


/* ==========================================================
   BAŞLIK
========================================================== */

.rasel-advantage-text strong {

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;

    color: #4b5563;

}


/* ==========================================================
   AÇIKLAMA
========================================================== */

.rasel-advantage-text span {

    font-size: 13px;

    line-height: 1.5;

    color: #7b8794;

}


/* ==========================================================
   HOVER
========================================================== */

.rasel-advantage-item:hover {

    background: #f4f8ff;

    transform: translateY(-3px);

}


/* ==========================================================
   MOBİL - TABLET
========================================================== */

@media (max-width: 1100px) {

    .rasel-advantages {

        grid-template-columns: repeat(3, 1fr);

    }

    .rasel-advantage-item {

        border-bottom: 1px solid #e5eaf0;

    }

}


/* ==========================================================
   MOBİL
========================================================== */

@media (max-width: 768px) {

    .rasel-advantages {

        grid-template-columns: 1fr;

    }

    .rasel-advantage-item {

        min-height: auto;

        padding: 22px 25px;

        border-right: none;

        border-bottom: 1px solid #e5eaf0;

    }

    .rasel-advantage-item:last-child {

        border-bottom: none;

    }

}