/* Trusted Brands Section */
.trusted-brands-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trusted-brands-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #ddd;
    background: transparent;
    color: #666;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #ee7212;
    color: #ee7212;
    background-color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.brand-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Placeholder Logo for Corporate Clients */
.placeholder-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ee7212;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

/* Corporate Clients Grid - 2 columns */
#corporate-clients {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-brands-section { padding: 40px 0; }
    .trusted-brands-section .section-title { font-size: 1.65rem; margin-bottom: 1.5rem; }
    .brand-tabs { gap: 0.5rem; margin-bottom: 1.5rem; }
    .tab-btn { padding: 0.5rem 1rem; font-size: 0.9rem; }
    .brands-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.75rem; }
    .brand-card { padding: 0.75rem; min-height: 84px; }
    .brand-card img { max-height: 56px; }
    
    /* Corporate Clients Grid - 1 column on mobile */
    #corporate-clients {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

@media (max-width: 575.98px) {
    .trusted-brands-section { padding: 32px 0; }
    .trusted-brands-section .section-title { font-size: 1.5rem; }
    .brands-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 0.5rem; }
    .brand-card { padding: 0.6rem; min-height: 76px; }
    .brand-card img { max-height: 48px; }
}
