/* Markalar Sayfası Özel Stilleri */

.brand-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
}

.brand-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-image {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.brand-image img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

.brand-card:hover .brand-image img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.brand-info {
    padding: 30px;
    text-align: center;
}

.brand-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F2937;
}

.brand-info p {
    color: #6B7280;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    color: #4F46E5;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.brand-link:hover {
    color: #10B981;
    transform: translateX(5px);
}

.brand-link i {
    margin-right: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.brand-link:hover i {
    transform: translateX(3px);
}

/* İşbirliği Bölümü */
.partnership-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1F2937;
}

.partnership-content p {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
}

.feature-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1F2937;
}

.feature-text p {
    color: #6B7280;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* İşbirliği Formu */
.partnership-form-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partnership-form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1F2937;
}

/* Responsive */
@media (max-width: 991.98px) {
    .partnership-content h2 {
        font-size: 2rem;
    }
    
    .partnership-form-card {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .brand-image {
        height: 160px;
        padding: 20px;
    }
    
    .brand-info {
        padding: 25px 20px;
    }
    
    .brand-info h3 {
        font-size: 1.2rem;
    }
    
    .partnership-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
    }
    
    .partnership-form-card {
        padding: 25px;
    }
    
    .partnership-form-card h3 {
        font-size: 1.5rem;
    }
}



