.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   Section 1: Hero Section CSS
   ========================================== */


/* Section 1 Start - Hero Section CSS */
/* ============================================
   SERVICE DETAIL PAGE - AREA RUG CLEANING
   ============================================ */

/* Section 1 Start - Hero Section */
.service-hero-section {
    position: relative;
    padding: 120px 20px 100px;
    background-image: url('../img/services/area-rug-hero-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.1);
    z-index: 1;
}

.service-hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 35px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #122B54;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
  background: #ffffff;
   border: 2px solid #122B54;
   color: #122B54;
}

.btn-secondary {
    background-color: #122B54;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
     border: 2px solid #122B54;
    color: #1e3c72;
}
/* Section 1 End */

/* Section 2 Start - Discount Banner */
.discount-banner-section {
    background-color: #E6A708;
    padding: 20px;
}

.discount-banner-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.discount-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 330px; */
    flex-wrap: wrap;
}

.discount-banner-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
/* Section 2 End */

@media (max-width: 768px) {
    .discount-banner-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Section 3 Start - When Rugs Need Deep Clean */
.rugs-deep-clean-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.rugs-deep-clean-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.rugs-deep-clean-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
}

.rugs-deep-clean-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 0 0 20px;
}
/* Section 3 End */

/* Section 4 Start - Cleaning Process */
.cleaning-process-section {
    padding: 80px 20px;

}

.cleaning-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px;
}

/* Grid Layout - 3 Columns */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 25px;
    align-items: stretch;
}

/* Left & Right Columns */
.process-column-left,
.process-column-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-column-left .process-card,
.process-column-right .process-card {
    flex: 1;
}

/* Middle Column - Image */
.process-column-middle {
    display: flex;
}

.process-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.process-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay Box - Top of Image */
.process-overlay-box {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e3c72;
    color: #ffffff;
    padding: 8px 26px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.process-overlay-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #ffffff;
}

.process-overlay-box p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Process Card */
.process-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    border-color: #f0b429;
    box-shadow: 0 5px 20px rgba(240, 180, 41, 0.15);
}

.process-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #f0b429;
    margin-bottom: 15px;
    line-height: 1;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.process-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}
/* Section 4 End */

/* Responsive */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-column-middle {
        order: -1;
    }

    .process-image-wrapper {
        min-height: 350px;
    }

    .process-column-left,
    .process-column-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-column-left .process-card,
    .process-column-right .process-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .cleaning-process-section {
        padding: 60px 20px;
    }

    .section-title  h2{
        font-size: 28px;
    }

    .process-column-left,
    .process-column-right {
        flex-direction: column;
    }

    .process-overlay-box {
        width: 90%;
        padding: 15px 20px;
    }

    .process-overlay-box h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title  h2{
        font-size: 24px;
    }

    .process-card {
        padding: 20px;
    }

    .process-number {
        font-size: 26px;
    }

    .process-card h3 {
        font-size: 16px;
    }

    .process-image-wrapper {
        min-height: 280px;
    }
}

/* Section 5 Start - What Makes Us Trusted */
.trusted-section {
    padding: 80px 20px;
    background-color: #FEF3CF;
}

.trusted-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.trusted-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px;
}

.trusted-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 0;
}

.trusted-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 39px;
}

.trusted-features li {
    font-size: 15px;
    color: #000;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.trusted-features li::before {
    content: '•';
    color: #f0b429;
    font-weight: bold;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: -8px;
}
/* Section 5 End */

/* Section 6 Start - Looking For Rug Cleaning */
.looking-for-cleaning-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.looking-for-cleaning-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.looking-content-wrapper {
   
    margin: 0 auto;
}

.looking-content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px;
}

.looking-content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 0 0 20px;
}
/* Section 6 End */

/* Section 7 Start - Why Choose SI Carpeting */
.why-choose-section {
    padding: 10px 20px;
    
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.why-choose-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 0 0 20px;
}

.why-choose-section {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    padding-left: 20px;
}

.why-choose-section li {
    font-size: 16px;
    list-style: none;
    color: #000;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.why-choose-section li::before {
    content: '•';
    color: #f0b429;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}
/* Section 7 End */

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: #FEF3CF;
}

.faq-section .container {
    
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
   
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background-color: #ffffff;
    border-color: #f0b429;
    box-shadow: 0 4px 15px rgba(240, 180, 41, 0.15);
}

.faq-question {
    padding: 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #f0b429;
}

/* Icon Toggling */
.icon-minus { display: none; }
.faq-item.active .icon-plus { display: none; }
.faq-item.active .icon-minus { display: block; }

/* Smooth Accordion Animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust if your answers are very long */
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

.no-faqs {
    text-align: center;
    color: #888;
    padding: 30px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-image-wrapper {
        order: -1;
        max-height: 400px;
    }
    
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .discount-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .discount-banner-content h2 {
        font-size: 22px;
    }
    
    .rugs-deep-clean-section h2,
    .cleaning-process-section h2,
    .trusted-content h2,
    .looking-content-wrapper h2,
    .why-choose-section h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .trusted-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .process-cta-box {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 20px;
    }
}