/* brands-section.css */

/* Core Container */
.nh-brands-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #333;
}

.nh-brands-container {
    max-width: 1290px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Area */
.nh-brands-header {
    text-align: center;
    margin-bottom: 50px;
}

.nh-brands-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border: 1px solid rgba(237, 27, 36, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.nh-brands-title {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 700;
    line-height: 1.35 !important;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    word-wrap: break-word;
}

.nh-brands-subtitle {
    font-size: 17px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout for Brands */
.nh-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .nh-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .nh-brands-title {
        font-size: 26px !important;
        line-height: 1.4 !important;
        letter-spacing: 1px !important;
    }
    .nh-brands-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }
    .nh-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Brand Card */
.nh-brands-card {
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.nh-brands-name {
    font-size: 24px;
    font-weight: 800;
    color: #e0e0e0;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nh-brands-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(237, 27, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.nh-brands-card:hover {
    transform: translateY(-8px);
    border-color: #ED1B24;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(237, 27, 36, 0.3);
}

.nh-brands-card:hover::before {
    opacity: 1;
}

.nh-brands-card:hover .nh-brands-name {
    color: #ffffff;
}

/* Bottom Highlight Area */
.nh-brands-highlight-box {
    background-color: #1f1f1f;
    border-left: 4px solid #ED1B24;
    padding: 35px 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.nh-brands-highlight-features {
    font-size: 18px;
    font-weight: 700;
    color: #ED1B24;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nh-brands-highlight-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b3b3b3;
    margin: 0;
}

@media (max-width: 767px) {
    .nh-brands-highlight-box {
        padding: 25px 20px;
    }
    .nh-brands-highlight-features {
        font-size: 15px;
    }
}

/* Animations */
.nh-brands-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nh-brands-animate.nh-brands-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grid */
.nh-delay-100 { transition-delay: 0.1s; }
.nh-delay-200 { transition-delay: 0.2s; }
.nh-delay-300 { transition-delay: 0.3s; }
.nh-delay-400 { transition-delay: 0.4s; }
.nh-delay-500 { transition-delay: 0.5s; }
.nh-delay-600 { transition-delay: 0.6s; }
