/* ===============================
   SERVICE HERO SECTION
================================= */
.service-hero {
    min-height: 400px;
    background-image: url("../images/refrigerator-repair-1.jpg");
    margin-top: -50px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    
}


/* Dark Overlay */
/* .service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay 
    z-index: 1;
} */

/* Keep content above overlay */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.hero-heading {
    padding-top: 70px;
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: #63c0e5;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
}

.btn-outline {
    background-color: #63c0e5;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* ===== Breadcrumb ===== */
.custom-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

.custom-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.custom-breadcrumb .separator {
    margin: 0 6px;
}

.current-page {
    font-weight: 600;
    color: #ffffff;
}

/* ===== Service Details Section ===== */
.service-details {
    padding: 90px 20px;
    background: #f8fbff;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===== Content Area ===== */
.details-content {
    flex: 1;
    min-width: 300px;
}

.details-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.details-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* ===== Service List ===== */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.service-list i {
    color: #5d46ee;
    font-size: 18px;
}

/* ===== Image Section ===== */
.service-image {
    flex: 1;
    min-width: 300px;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Locations Section ===== */
.locations-section {
    padding: 90px 20px;
    background: #f8fbff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.location-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 50px;
}

/* Wrapper (Grid + Map Side by Side) */
.locations-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Grid Layout */
.locations-grid {
    flex: 1;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Location Card */
.location-card {
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.location-card i {
    color: #5d46ee;
    font-size: 16px;
}

.location-card:hover {
    background-color: #63c0e5;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Map Section */
.map-container {
    flex: 1;
    min-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}



/* ===============================
   COMMON SECTION BASE STYLES
================================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 25px;
}

/* Section Images */
.section-image-large img {
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.section-image-medium img {
    max-width: 350px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ===============================
   COMMON ISSUES SECTION
================================= */
.issues-section {
    background: #f8fbff;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.issue-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.issue-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.issue-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #222;
}

.issue-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   PROCESS SECTION
================================= */
.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.process-step {
    text-align: center;
    padding: 25px;
    background: #f8fbff;
    border-radius: 15px;
    transition: 0.3s ease;
}

.process-step:hover {
    background-color: #63c0e5;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.step-number {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    background: #5d46ee;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #222;
}

.process-step p {
    font-size: 13px;
    color: #666;
}

/* ===============================
   CTA SECTION
================================= */
.cta-section {
    background: linear-gradient(135deg, #cc008b, #5d46ee);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #ffffff;
    color: #0066cc;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {

    .service-hero {
        padding: 70px 15px 60px;
    }

    .hero-heading {
        font-size: 26px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-button-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }

    .custom-breadcrumb {
        font-size: 13px;
        margin-top: 10px;
    }
}


/* ===== Mobile Version ===== */
@media (max-width: 768px) {

    .service-details {
        padding: 60px 15px;
    }

    .details-container {
        flex-direction: column;
        gap: 35px;
    }

    .details-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .details-content p {
        font-size: 14px;
        text-align: center;
    }

    .service-list li {
        font-size: 14px;
    }

    .service-image {
        height: 250px;
        width: 100%;
    }
}

/* ===== Mobile Version ===== */
@media (max-width: 768px) {

    .locations-section {
        padding: 60px 15px;
    }

    .location-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .locations-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        font-size: 13px;
        padding: 12px 15px;
    }

    .map-container iframe {
        min-height: 280px;
    }
}


/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 992px) {

    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .section-container {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .issues-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .issue-card,
    .process-step {
        padding: 20px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-container p {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }
}