/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Hero Section ===== */
/* ===== Custom Hero Background ===== */
.custom-hero {
    min-height: 400px;
    background-image: url("../images/washingmachinerpeair.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 */
/* .custom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */

/* Keep content above overlay */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

/* Title */
.hero-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #ffffff;
}
/* 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 ===== */
.breadcrumb-nav {
    margin-top: 20px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-list li::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list .active {
    color: rgba(255,255,255,0.6);
}

/* ===== Service Details ===== */
.service-details {
    padding: 80px 20px;
    background: #f8f9fa;
}

.details-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.details-content {
    flex: 1;
}

.details-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.details-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

/* Service List */
.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: #0d6efd;
}

/* Image */
.service-image {
    flex: 1;
    height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}



/* ============================= */
/* LOCATIONS SECTION */
/* ============================= */

.locations-section {
    padding: 80px 20px;
    background: #f4f7fb;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.location-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111827;
}

/* Wrapper Layout */
.locations-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Locations Grid */
.locations-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Location Card */
.location-card {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #374151;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card i {
    color: #63c0e5;
    font-size: 16px;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #63c0e5;
}

/* Map */
.map-container {
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* Shared Layout */
.section-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
}

/* ================= ISSUES ================= */

.issues-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.issue-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.issue-icon {
    font-size: 35px;
    color: #0d6efd;
    margin-bottom: 20px;
}

/* ================= BRANDS ================= */

.brands-section {
    padding: 80px 0;
    background: #ffffff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.brand-card {
    background: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.brand-card:hover {
    background: #0d6efd;
    color: #ffffff;
}

/* ================= PROCESS ================= */

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #ffffff;
    transition: 0.3s ease;
}

.process-step:hover {
    background: #63c0e5;
    color: #ffffff;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-step:hover .step-number {
    background: #ffffff;
    color: #0d6efd;
}

/* ================= CTA ================= */

.cta-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #0d6efd;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #000;
    color: #fff;
}

/* ============================= */
/* 📱 MOBILE RESPONSIVE DESIGN  */
/* ============================= */

@media (max-width: 991px) {

    /* HERO */
    .custom-hero {
        margin-top: -104px;
        padding: 70px 15px;
        min-height: 280px;
        border-radius: 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn-primary,
    .btn-outline {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    /* SERVICE DETAILS */
    .details-container {
        flex-direction: column;
        gap: 25px;
    }

    .service-image {
        height: 250px;
    }

    .details-content h2 {
        font-size: 24px;
    }

    .details-content p {
        font-size: 14px;
    }

    /* LOCATIONS SECTION */
    .locations-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-title {
        font-size: 24px;
    }

    .map-container iframe {
        min-height: 300px;
    }

    /* ISSUES */
    .issues-section {
        padding: 50px 15px;
    }

    .issue-card {
        padding: 20px;
    }

    /* BRANDS */
    .brands-section {
        padding: 50px 15px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* PROCESS */
    .process-section {
        padding: 50px 15px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 15px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

}


/* ============================= */
/* 📱 SMALL MOBILE (Under 480px) */
/* ============================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .location-card {
        font-size: 13px;
        padding: 14px;
    }

    .brand-card {
        padding: 18px;
        font-size: 14px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

}