/* ===============================
   GLOBAL FIX
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===============================
   HERO SECTION
================================= */
/* Hero Section Background Image */
/* .hero-section {
    position: relative;
    background-image: url('image/'); /* exact file name
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
} */
.hero-section{
    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 */
/* .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Adjust darkness
    z-index: 1;
} */

/* Content above overlay */
.hero-container {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 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;
}

/* ===============================
   SERVICE CHARGE BAR
================================= */
/* .service-charge {
    background: #0091ff;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
} */

/* ==============================
   SERVICE DETAILS SECTION
============================== */

.service-details {
    padding: 80px 20px;
    background: #f9f9f9;
}

.details-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.details-content {
    flex: 1;
    min-width: 300px;
}

.details-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.details-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    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: #63c0e5;
    font-size: 18px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .details-container {
        flex-direction: column;
    }

    .details-content h2 {
        font-size: 26px;
    }
}
/* ===============================
   LOCATIONS SECTION
================================= */
.locations-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.locations-container {
    max-width: 1200px;
    margin: auto;
}

.location-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.locations-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.location-card {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    background-color: #63c0e5;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-container {
    flex: 1;
}

.map-container iframe {
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
    border: 0;
}

/* .issues-section,
.process-section,
.cta-section {
    margin-left: 80px;
    margin-right: 40px;
} */
/* ===============================
   ISSUES SECTION
================================= */

.issues-section {
    padding: 90px 0;
    background: #f8f9fa;
}

/* Container spacing */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
}

/* Issues Grid */
.issues {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Issue Card */
.issue-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

/* Icon */
.issue-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s ease;
}

.issue-card:hover .issue-icon {
    background: #0d6efd;
    color: #ffffff;
}

/* Title */
.issue-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraph */
.issue-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 992px) {
    .issues {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .issues {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-container {
        padding: 0 20px;
    }
}
/* ===============================
   PROCESS SECTION
================================= */

.process-section {
    
    padding: 90px 120px;   /* Top/Bottom = 90px, Left/Right = 120px */
    background: #ffffff;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 30px;
}

/* Card */
.process-step {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

/* Hover */
.process-step:hover {
    background: #63c0e5;
    color: #ffffff;
    transform: translateY(-6px);
}

.process-step:hover p {
    color: #ffffff;
}

/* Step Number */
.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
}

.process-step:hover .step-number {
    background: #ffffff;
    color: #0d6efd;
}

/* Text */
.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
    .process-section {
        padding: 80px 60px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 60px 20px;
    }
}
/* ===============================
   CTA SECTION
================================= */
.cta-section {
    background: linear-gradient(135deg, #fd0d55, #0b5ed7);
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #0d6efd;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-4px);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 768px) {

    .hero-section {
        padding: 80px 15px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        margin: auto;
    }

    .location-title,
    .section-header h2,
    .cta-content h2 {
        font-size: 24px;
    }

    .locations-wrapper {
        flex-direction: column;
    }

    .map-container iframe {
        min-height: 280px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 260px;
    }
}