/* ===== Fridge Board Repair Page ===== */
.toplead p {

    max-width: 800px;
}

.toplead .phone-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.toplead .phone-link:hover {
    text-decoration: underline;
}

.service-section {
    direction: rtl;
    text-align: right;
    padding: 2rem 0;
    background-color: #fff;
}

.service-section h1,
.service-section h2 {
    color: #111;
    font-weight: 700;
}

.service-section h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-right: 4px solid #00a3d7;
    padding-right: 0.6rem;
}

.service-section h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    border-right: 3px solid #00a3d7;
    padding-right: 0.5rem;
}

.service-section p {
    color: #555;
    line-height: 1.9;
    max-width: 850px;
    margin-bottom: 1rem;
}

/* Container for Each Section */
.service-details,
.service-cta,
.service-seo {
    max-width: 950px;
    margin: 0 auto 2rem;
    background: #fafafa;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid #e3e3e3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-seo a {
    color: #007fa7;
}

.service-details ul,
.service-seo ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-details li,
.service-seo li {
    margin-bottom: 0.6rem;
    color: #333;
    position: relative;
    padding-right: 1.2rem;
}

.service-details li::before,
.service-seo li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #00a3d7;
    font-size: 1.2rem;
    line-height: 1;
}

/* Buttons */
.btn-service {
    display: inline-block;
    background-color: #00a3d7;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-service:hover {
    background-color: #007fa7;
}

/* Gallery Section */
.repair-gallery {
    background: #f9fafc;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    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-style Image Grid */
.gallery-grid {
    columns: 3 280px;
    column-gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* Responsive Design */
@media (max-width: 768px) {
    .service-section {
        padding: 1rem;
    }

    .service-details,
    .service-cta,
    .service-seo {
        padding: 1rem 1.2rem;
    }

    .gallery-grid {
        columns: 2 150px;
    }

    .btn-service {
        width: 100%;
        text-align: center;
    }
}