/* Top Bar — default visible */
.top-bar {
    background-color: #0066cc;
    color: #fff;
    padding: 6px 0;
    font-size: 15px;
    line-height: 1.2;
    overflow: hidden;
    display: block;
}

/* Responsive container */
.top-bar__wrapper {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    max-width: 100%;
}

.top-bar__locations {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    text-align: right;
    align-items: center;
}

    .top-bar__locations p {
        margin: 0;
        white-space: nowrap;
        font-size: inherit;
    }

/*  Hide Top Bar on Tablet and Below */
@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
}


/*Services Page FAQ Section*/

/* Universal FAQ Section */
.universal-faq-section {
    padding: 60px 15px;
    background-color: #f9fcfe;
    font-family: 'Barlow', sans-serif;
}

.universal-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.universal-faq-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0e1c36;
}

/* FAQ Item Box */
.universal-faq-item {
    background: #ffffff;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* Question Toggle */
.universal-faq-question {
    padding: 18px 24px;
    font-size: 20px;
    font-weight: 600;
    background-color: #1C5FA9;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

    .universal-faq-question:hover {
        background-color: #0e9ed0;
    }

    .universal-faq-question::after {
        content: "+";
        font-size: 24px;
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s;
    }

    .universal-faq-question.active::after {
        content: "-";
    }

/* Answer Reveal */
.universal-faq-answer {
    display: none;
    padding: 20px 24px;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    animation: universalFadeIn 0.3s ease-in-out;
    border-top: 1px solid #e0e0e0;
}

@keyframes universalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .universal-faq-title {
        font-size: 26px;
    }

    .universal-faq-question {
        font-size: 18px;
        padding: 16px 20px;
    }

    .universal-faq-answer {
        font-size: 16px;
    }
}
/*Contact Page form structure*/
.contact-page__content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1d1d1d;
}

.contact-page__content-title {
    font-size: 2.7rem;
    font-weight: 700;
    color: #002147;
    border-left: 3px solid #0d6efd;
    padding-left: 12px;
}

.contact-info-block {
    font-size: 1.3rem;
}

    .contact-info-block i {
        font-size: 1.2rem;
        vertical-align: middle;
    }

    .contact-info-block a {
        text-decoration: none;
        color: #002147;
        font-weight: 500;
    }

.contact-divider {
    border-top: 1px solid #ccc;
    margin: 1.5rem 0;
}


/* Service Areas */
.service-area-section {
    background-color: #f8f9fc;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

    .service-area-section .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

.section-areatitle {
    font-size: 36px;
    color: #002B5B;
    margin-bottom: 10px;
}

.section-areasubtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
}

.city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

    .city-grid ul {
        flex: 1 1 calc(16.66% - 20px); /* 6 columns on large screens */
        list-style-type: disc;
        padding-left: 20px;
        text-align: left;
        min-width: 140px;
    }

    .city-grid li {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .city-grid li:hover {
            color: #0066cc;
            transform: translateX(5px);
        }

/* Highlighted major cities */
.highlight {
    font-weight: bold;
}

.toronto {
    color: #007bff;
}

.hamilton {
    color: #e83e8c;
}

.london {
    color: #28a745;
}

.ottawa {
    color: #fd7e14;
}

.kingston {
    color: #6610f2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .city-grid ul {
        flex: 1 1 calc(33.33% - 20px); /* 3 columns for tablets */
    }
}

@media (max-width: 768px) {
    .city-grid ul {
        flex: 1 1 calc(50% - 20px); /* 2 columns for mobile */
    }
}

@media (max-width: 576px) {
    .section-areatitle {
        font-size: 26px;
    }

    .section-areasubtitle {
        font-size: 16px;
    }
}




/* Brand Section CSS */

.appliance-brands-section {
    background: #fff;
    padding: 40px 0;
    
}

.ea-logo {
    max-width: 110px;
    height: auto;
}

.section-brandtitle {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    margin-top: 10px;
    color: #11aded;
}

    
.bold-message {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Tabs */
.brand-tabs {
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
    display: inline-flex;
    margin-bottom: 20px;
}

.brand-tab {
    background: #f9f9f9;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

    .brand-tab.active {
        background: #11aded;
        color: #fff;
    }

/* Brand Logos */
.brand-logos {
    display: none;
    margin-top: 20px;
}

    .brand-logos.active {
        display: block;
    }

.brand-item {
    margin-bottom: 20px;
    text-align: center;
}

    .brand-item img {
        max-width: 100%;
        height: auto;
        max-height: 70px; /* keeps consistency */
        object-fit: contain;
        filter: grayscale(20%);
        transition: transform 0.3s, filter 0.3s;
    }

        .brand-item img:hover {
            transform: scale(1.05);
            filter: none;
        }

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .section-title {
        font-size: 24px;
    }

    .bold-message {
        font-size: 15px;
    }

    .brand-item img {
        max-height: 60px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 22px;
    }

    .bold-message {
        font-size: 14px;
    }

    .brand-tab {
        font-size: 14px;
        padding: 8px 15px;
    }

    .brand-item img {
        max-height: 55px;
    }
}

@media (max-width: 575px) {
    .ea-logo {
        max-width: 90px;
    }

    .section-title {
        font-size: 20px;
    }

    .brand-item img {
        max-height: 50px;
    }
}
