/* Brands Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Featured Brands Section */
.featured-brands {
    padding: 8rem 0 4rem;
    background-color: #fff;
}

.featured-brands h1 {
    text-align: center;
    color: #0B3D91;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0;
}

.brand-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    aspect-ratio: auto;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.brand-card img {
    width: 85%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover img {
    transform: scale(1.05);
}

/* All Brands Section */
.all-brands {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.all-brands h2 {
    text-align: center;
    color: #0B3D91;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.brands-categories {
    margin-top: 3rem;
}

.category-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.category-placeholder h3 {
    color: #0B3D91;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.category-placeholder p {
    color: #666;
    font-size: 1.1rem;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #0B3D91;
    font-weight: 600;
}

/* Detailed Brands List */
.alphabet-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.alphabet-header {
    background: #0B3D91;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alphabet-header i {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.alphabet-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.brands-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.brand-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-column li {
    padding: 0.75rem 0;
    color: #333;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-column li:hover {
    color: #0B3D91;
    transform: translateX(5px);
}

.brand-column li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .brand-card {
        min-height: 100px;
        padding: 1.25rem;
    }

    .brands-columns {
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .featured-brands {
        padding: 6rem 0 3rem;
    }

    .featured-brands h1 {
        font-size: 2.2rem;
    }

    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .featured-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .brand-card {
        min-height: 90px;
        padding: 1rem;
    }

    .brand-card img {
        width: 90%;
    }

    .all-brands h2 {
        font-size: 2rem;
    }

    .brands-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .alphabet-header {
        padding: 0.75rem 1.5rem;
    }

    .alphabet-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .featured-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-card {
        min-height: 80px;
    }

    .brands-columns {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .brand-column li {
        padding: 0.5rem 0;
    }
} 