/* =====================================================
   BRANDS SECTION - PREMIUM DESIGN
   ===================================================== */

.brands-section-premium {
    position: relative;
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #1565C0 100%);
    padding: 6rem 0;
    overflow: hidden;
    color: white;
}

/* Content Container */
.brands-section-premium .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.brands-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brands-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brands-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.brands-header .section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Brand Logos Grid */
.brand-logos-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Brand Logo Card */
.brand-logo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.brand-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
    z-index: 0;
}

.brand-logo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.brand-logo-card:hover::before {
    opacity: 1;
}

/* Brand Name Text - Simplified White Text Only */
.brand-name-premium {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Override old logo-lg styles from style.css */
.brands-section-premium .logo-lg {
    background: none !important;
    border-radius: 15px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Trust Badge CTA */
.brands-trust-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.brands-trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.brands-trust-badge h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.brands-trust-badge p {
    color: #4a5568;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.brands-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.brands-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.6);
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

.brands-cta-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brands-section-premium {
        padding: 4rem 0;
    }

    .brands-header {
        margin-bottom: 2.5rem;
    }

    .brand-logos-premium {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .brand-logo-card {
        padding: 1rem;
        min-height: 60px;
    }

    .brand-name-premium {
        font-size: 0.9rem;
    }

    .brands-trust-badge {
        padding: 2rem 1.5rem;
    }

    .brands-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .brand-logos-premium {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
