/* AC Brands Grid - Mobile Responsive Fix */
.ac-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 per row on Desktop */
    gap: 30px;
    margin: 40px 0;
}

.brand-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.brand-name {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

/* AC Services Wrapper - Mobile Responsive Fix */
.ac-services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ac-services-col {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ac-services-col:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.ac-services-col h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.ac-services-col h4 i {
    color: var(--gold);
    margin-right: 12px;
}

.ac-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ac-services li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.ac-services li:last-child {
    border-bottom: none;
}

.ac-services li i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 14px;
}

/* Mobile Responsive - Stack Vertically */
@media (max-width: 768px) {
    .ac-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-card {
        padding: 20px;
    }

    .ac-services-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ac-services-col {
        padding: 25px;
    }
}

/* Small Mobile - Single Column for AC Brands */
@media (max-width: 480px) {
    .ac-brands-grid {
        grid-template-columns: 1fr;
    }
}