.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   Section 1: Hero Section CSS
   ========================================== */
.service-page-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-page-hero h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.8);
}

/* ==========================================
   Section 2: Offer Banner CSS
   ========================================== */
.offer-banner-section {
    background-color: #9b3d9b;
    padding: 29px 0;
}

.offer-banner-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-banner-section p {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* ==========================================
   Section 3: Three Steps CSS
   ========================================== */
.three-steps-section {
    padding: 60px 0;
}

.three-steps-section ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.three-steps-section li {
    flex: 1;
    text-align: center;
    padding: 16px 15px;
    border-right: 1px solid #64E923;
}

.three-steps-section li:last-child {
    border-right: none;
}

.three-steps-section li span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #9b3d9b;
    margin-bottom: 15px;
}

.three-steps-section li h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.three-steps-section li p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

/* ==========================================
   Section 4: Why Important CSS
   ========================================== */
.why-important-section {
    padding: 60px 0;
}

.why-important-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.why-important-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

/* ==========================================
   Section 5: Deep Clean Require CSS
   ========================================== */
.deep-clean-require-section {
    padding: 60px 0;
    background-color: #ECFFE3;
}

.deep-clean-require-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.deep-clean-require-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

/* ==========================================
   Section 6: About Us CTA CSS
   ========================================== */
.about-us-cta-section {
    padding: 60px 0;
}

.about-us-cta-section .content-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-us-cta-section .image-side {
    flex: 1;
    border: 3px solid #64E923;
    border-radius: 10px;
    overflow: hidden;
}

.about-us-cta-section .image-side img {
    /* width: 100%; */
    height: auto;
    display: block;
}

.about-us-cta-section .text-side {
    flex: 1;
    background-color: #9b3d9b;
    padding: 40px;
    border-radius: 10px;
    color: white;
}

.about-us-cta-section .text-side p:first-child {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-us-cta-section .text-side h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-us-cta-section .text-side p:nth-child(3) {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-us-cta-section .text-side a {
    background-color: #64E923;
    color: rgb(0, 0, 0);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.about-us-cta-section .text-side a:hover {
    background-color: #64E923;
    color: #ffffff;
}

/* ==========================================
   Section 7: Steps Taken CSS
   ========================================== */
.steps-taken-section {
    padding: 60px 0;
}

.steps-taken-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.steps-taken-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

/* ==========================================
   Section 8: Why Choose Brooklyn CSS
   ========================================== */
.why-choose-brooklyn-section {
    padding: 60px 0;
    background-color: #ECFFE3;
}

.why-choose-brooklyn-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.why-choose-brooklyn-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.why-choose-brooklyn-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.why-choose-brooklyn-section ul li {
    font-size: 16px;
    color: #000000;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.why-choose-brooklyn-section ul li:before {
    content: "•";
    color: #8B3A9E;
    font-weight: bold;
    position: absolute;
    left: 6px;
    font-size: 30px;
    top: -2.5;
}

.why-choose-brooklyn-section a {
    color: #8B3A9E;
    text-decoration: none;
    font-weight: 600;
}

.why-choose-brooklyn-section a:hover {
    text-decoration: underline;
}

/* ==========================================
   Section 9: Other Services CSS
   ========================================== */
.other-services-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.os-title {
  font-size: 30px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 30px;
  text-align: center;
}

.os-highlight {
  color: #8b2d8b;
}

.os-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.os-viewport {
  overflow: hidden;
  width: 100%;
}

.os-track {
  display: flex;
  transition: transform 0.4s ease-out;
  margin: 0 -10px;
}

/* ---------- Card ---------- */
.os-card {
  flex: 0 0 calc(25% - 20px);
  margin: 0 10px;
}

.os-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 32px 20px;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

/* .os-card-link:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #ffb800;
} */

.os-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #8b2d8b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #8b2d8b;
}

.os-icon-circle svg {
  width: 30px;
  height: 30px;
}

.os-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

/* ---------- Nav Buttons ---------- */
.os-nav-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.os-nav-btn svg {
  width: 16px;
  height: 16px;
}

.os-nav-prev {
  background: #8b2d8b;
  color: #ffffff;
}

.os-nav-prev:hover {
  background: #64E923;
  
}

.os-nav-next {
  background: #8b2d8b;
  color: #ffffff;
}

.os-nav-next:hover{
  background: #64E923;
  
}

.os-nav-btn:hover {
  transform: scale(1.08);

}

.os-nav-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .os-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .os-card {
    flex: 0 0 calc(100% - 20px);
  }
  .os-title {
    font-size: 24px;
  }
  .os-nav-btn {
    width: 34px;
    height: 34px;
  }
}

/* ==========================================
   Section 10: Final CTA CSS - Full Width
   ========================================== */
.final-cta-section {
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
}

.final-cta-section .container {
    max-width: 100%;
    padding: 0;
}

.final-cta-section .content-wrapper {
    display: flex;
    gap: 0;
    /* border-radius: 10px; */
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.final-cta-section .text-side {
    flex: 1;
    background-color: #8B2B87;
    padding: 60px;
    color: white;
}

.final-cta-section .text-side p:first-child {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.final-cta-section .text-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-section .text-side p:nth-child(3) {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta-section .buttons {
    display: flex;
    gap: 15px;
}

.final-cta-section .buttons a:any-link:first-child {
    background-color: #64E923;
    color: rgb(0, 0, 0);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.final-cta-section .buttons a:first-child:hover {
    background-color: #64E923;
    color: #ffffff;
    text-decoration: none;

}

.final-cta-section .buttons a:any-link:last-child {
    background-color: white;
    color: #333;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;

}

.final-cta-section .buttons a:last-child:hover {
    background-color: transparent;
    color: white;
    text-decoration: none;

}

.final-cta-section .image-side {
    flex: 1;
    border: 3px solid #64E923;
}

.final-cta-section .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .final-cta-section .content-wrapper {
        flex-direction: column;
    }
    
    .final-cta-section .text-side {
        padding: 40px 20px;
    }
    
    .final-cta-section .text-side h2 {
        font-size: 28px;
    }
    
    .final-cta-section .buttons {
        flex-direction: column;
    }
    
    .final-cta-section .buttons a {
        width: 100%;
    }
}









/* ==========================================
   Responsive CSS
   ========================================== */
@media (max-width: 992px) {
    .three-steps-section ul {
        flex-direction: column;
    }
    
    .three-steps-section li {
        border-right: none;
        border-bottom: 1px solid #64E923;
    }
    
    .about-us-cta-section .content-wrapper,
    .final-cta-section .content-wrapper {
        flex-direction: column;
    }
    
    .services-slider li {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .offer-banner-section .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .services-slider li {
        flex: 0 0 100%;
    }
    
    .final-cta-section .buttons {
        flex-direction: column;
    }
}