/* ===== Fridge Repair Page ===== */

.toplead p {
    max-width: 820px;
}

.toplead .phone-link {
    color: #0085c3;
    text-decoration: none;
    font-weight: bold;
}

.toplead .phone-link:hover {
    text-decoration: underline;
}

/* Main Service Section */
.service-section {
    direction: rtl;
    text-align: right;
    padding: 2rem 0;
    background-color: #fff;
}

.service-section h1,
.service-section h2 {
    color: #222;
    font-weight: 700;
}

.service-section h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-right: 4px solid #0094b8;
    padding-right: 0.6rem;
}

.service-section h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    border-right: 3px solid #0094b8;
    padding-right: 0.5rem;
}

.service-section p {
    color: #555;
    line-height: 1.9;
    max-width: 880px;
    margin-bottom: 1rem;
}

.service-cta .c {
    display: flex;
    gap: 2rem;
}

.service-cta .c .l .repair-man-profile-cont {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-cta .c .l .repair-man-profile-cont .rm-pp-cont {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-cta .c .l .repair-man-profile-cont .rm-pp-cont img {
    inline-size: 200px;
    object-fit: cover;
    border-radius: 100px;
    aspect-ratio: 1;
}

/* Card-Like Containers */
.service-details,
.service-cta .c,
.service-seo {
    max-width: 960px;
    margin: 0 auto 2rem;
    background: #f7f9fa;
    padding: 1.7rem 2.1rem;
    border-radius: 1rem;
    border: 1px solid #e1e1e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

}



/* SEO Links */
.service-seo a {
    color: #0085c3;
}

/* Lists */
.service-details ul,
.service-seo ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}

.service-details li,
.service-seo li {
    margin-bottom: 0.7rem;
    color: #333;
    position: relative;
    padding-right: 1.2rem;
}

.service-details li::before,
.service-seo li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #0094b8;
    font-size: 1.2rem;
}

/* Call-To-Action Button */
.btn-service {
    display: inline-block;
    background-color: #0094b8;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.6rem;
    border-radius: 2rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-service:hover {
    background-color: #007a98;
}

/* Gallery Section */
.repair-gallery {
    background: #f0f5f7;
    padding: 2.2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 1120px;
    margin: 3rem auto;
    direction: rtl;
    text-align: right;
}

.repair-gallery h2 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 1rem;
}

.repair-gallery p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Masonry Grid */
.gallery-grid {
    columns: 3 280px;
    column-gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.gallery-grid img:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.15);
}

/* ===== Repair Video Section ===== */

.repair-video {
    background: #f7f9fa;
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem auto;
    max-width: 1120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    direction: rtl;
    text-align: right;
}

.repair-video h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    border-right: 3px solid #0094b8;
    padding-right: 0.5rem;
}

.repair-video p {
    color: #555;
    margin-bottom: 1.4rem;
    line-height: 1.8;
}

.video-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    border-radius: 1rem;
    display: block;
}

.btn-service-m {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .topleadbannercont {
        height: 400px !important;

    }

    .service-section {
        padding: 1rem;
    }

    .service-details,
    .service-cta .c,
    .service-seo {
        padding: 1.2rem 1.3rem;
    }

    .service-cta .c {
        display: flex;
        flex-direction: column;
    }

    .gallery-grid {
        columns: 2 160px;
    }

    .btn-service-m {
        width: 100%;
        text-align: center;
    }

    .btn-service {
        display: none;
    }

    .btn-service-m {
        display: inline-block;
        background-color: #0094b8;
        color: #fff;
        text-decoration: none;
        padding: 0.75rem 1.6rem;
        border-radius: 2rem;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .btn-service-m:hover {
        background-color: #007a98;
    }


}