/* Brands Redesign */
.brands-redesign-section {
    background: linear-gradient(135deg, #0a1f18 0%, #020b16 100%);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.brands-redesign-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    z-index: 0;
}
.br-brand-title h3 {
    color: #d4af37;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.br-brand-title h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.br-btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.br-btn-view-all:hover {
    background: #d4af37;
    color: #000;
}
.br-brand-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}
.br-brand-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.br-brand-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    /* filter: grayscale(1) opacity(0.6); */
    transition: all 0.3s ease;
    border-radius: 8px;
}
.br-brand-card:hover img {
    filter: grayscale(0) opacity(1);
}

/* About SEO Redesign */
.about-redesign-section {
    background-color: #020b16;
    padding: 80px 0;
    color: #a0aec0;
    font-family: 'Outfit', sans-serif;
}
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.about-card.primary {
    background: linear-gradient(135deg, rgba(10, 31, 24, 0.8) 0%, rgba(2, 11, 22, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.about-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}
.about-card:hover::before {
    opacity: 1;
}
.about-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.4;
}
.about-card h4 i {
    color: #d4af37;
    font-size: 24px;
    flex-shrink: 0;
}
.about-card span {
    display: block;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
}
.about-card span:last-child {
    margin-bottom: 0;
}
