
/* ============================
   MARKA GRID – PREMIUM TASARIM
============================ */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 40px;
}

/* Marka kartı */
.brand-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 50px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid #f2f2f2;
}

/* Hover premium efekti */
.brand-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    border-color: #dcdcdc;
}

/* Logo */
.brand-card img {
    width: 70%;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

/* Mobil düzen */
@media(max-width: 600px){
    .brand-card {
        padding: 35px 15px;
    }
    .brand-card img {
        width: 85%;
    }
}
/* ==================================
   MARKA GRID – 2 SÜTUN BÜYÜK KART
================================== */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* ikili büyük düzen */
    gap: 55px;
    margin: 80px auto;
    width: 85%;
    max-width: 1400px;
}

/* Büyük Marka Kartı */
.brand-card {
    background: #fff;
    border-radius: 28px;
    padding: 70px 40px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;                      /* büyük kart yüksekliği */
    transition: 0.35s ease;
    cursor: pointer;
}

/* Premium Hover Efekti */
.brand-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    border-color: #dcdcdc;
}

/* Logo */
.brand-card img {
    width: 55%;        /* büyük gösterim */
    max-width: 420px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

/* Mobil düzen */
@media(max-width: 768px) {
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        width: 90%;
    }
    .brand-card {
        height: 240px;
        padding: 50px 30px;
    }
    .brand-card img {
        width: 60%;
    }
}
/* TÜM NORMAL METİNLERDE ALAN SANS KULLAN */
body,
body *:not(i):not(.fa):not([class*="fa-"]) {
    font-family: 'Alan Sans', sans-serif !important;
}

/* ============================================
   MOBILDE TÜM BRAND-CARD KUTULARINI EŞİTLE
============================================ */
@media (max-width: 600px){

    /* Kart yüksekliği & genişliği eşit */
    .brand-card {
        width: 100% !important;
        max-width: 360px !important;
        height: 220px !important;     /* Tüm kartlar aynı boy */
        margin: 0 auto 25px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Logolar kutuya taşmadan sığsın */
    .brand-card img {
        width: 80% !important;
        height: 80% !important;
        max-height: 150px !important;
        object-fit: contain !important;
        transform: none !important;   /* büyütme yok */
    }

    /* Hover efektini mobilde kapat */
    .brand-card:hover img {
        transform: none !important;
    }
}
