.state-buttons {
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.state-buttons .state-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
   .state-buttons {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 576px) {
 .state-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .state-button{ 
 
    font-size: 22px;
  
}
}

@media (max-width: 420px) {
  .state-buttons {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}


.state-button{ 
    padding: 15px;
    color: #000000 !important;
    font-size: 30px;
    font-family: inherit, Sans-Serif;
    font-weight: 600
}

.state-button:hover { 
     color: #DD1B16 !important;
}



.state-buttons-footer {
display: flex;
flex-direction: column;

}


.state-button-footer {
color: #FFFFFF !important;
font-size: 20px;
font-weight: 600;
transition: color .3s ease-in-out;
}

.state-button-footer:hover {
color: #DD1B16 !important;

}




.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.city-panel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.city-header {
  background: #000 !important;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: none;
  border: none;
  padding: 10px 10px;
}

.city-phone-link {
  display: inline-block;
  background: #DD1B16;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 22px;
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;
}
.city-phone-link:hover {
  background: #b3130f !important;
}

.city-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}


.city-actions a, .city-actions span {
   flex: 1 1 0;
  text-align: center;
  min-width: 0;
  padding: 12px 0;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-right: 1px solid #eee;
  transition: background 0.2s, color 0.2s;
  font-size: 16px;
}
.city-actions a:last-child, .city-actions span:last-child {border-right:none;}
.city-actions a.junk {color: #000; background: none;}
.city-actions a.junk:hover {background: #ce33303b;}
.city-actions a.rv {color: #000; background: none;}
.city-actions a.rv:hover {background: #fbeaea;}
.city-actions a.boat {color: #000; background: none;}
.city-actions a.boat:hover {background: #f0f0f0;}

@media (max-width: 1100px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    }
  .city-header {font-size: 16px;}
}

@media (max-width: 480px) {
.city-actions a, .city-actions span {
    font-size: 16px;
}
}






/* Junk removal */


.description-text-black{
    font-size: 18px;
    color: #000;
}

/* city_block_1 */
    
.hero-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    gap: 20px 60px;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
}



.hero-image img {
    max-width: 100%;
    height: 495px !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px !important;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    row-gap: 15px;
    column-gap: 15px;
}

.hero-subtitle .heading-title {
    font-size: 22px;
    color: var(--e-global-color-primary);
}

.hero-title .heading-title {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}

.hero-subtitle .heading-title {
    font-size: 22px;
    color: #DD1B16;
}


.heading-title-subtitle {
    font-size: 22px;
    color: #DD1B16;
}

.hero-section {
        max-width: 1400px;
        padding-top: 60px;
    padding-bottom: 60px;
    }


    .hero-cta .custom-button {
  display: inline-block; 
  background-color: #dd1b16;
  font-size: 20px;
  font-weight: 700;
  fill: #ffffff;
  color: #ffffff;
  padding: 10px 20px;
  border-style: solid;
  border-color: #dd1b16;
  border-radius: 10px 10px 10px 10px;
  text-align: center; 
}


.hero-cta .custom-button:hover {
    background-color: #fff;
    color: #000;

}

.button-margin-top{
  margin-top: 10px;
}

@media (max-width: 1024px) {
 .hero-section {
  display: flex;
  flex-direction: column;
}

.hero-content {
    order: -99999;
}

.hero-image img {
    max-width: 80%;
    height: 600px;
    object-fit: cover;
}

.hero-image {
  display: flex;
    justify-content: center;
   margin-top: 20px;
}

}


@media (max-width: 767px) {
.hero-section {
      padding-top: 60px;
    padding-bottom: 30px;
    }

.hero-title .heading-title {
    font-size: 30px;
}

.button-margin-top{
  margin-top: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
  
}

}


/* city_block_2 */

.block-width {
  max-width: 1400px !important;
}
.elementor-433 .elementor-element.elementor-element-ccd5b1f::before, .elementor-433 .elementor-element.elementor-element-ccd5b1f > .elementor-background-video-container::before, .elementor-433 .elementor-element.elementor-element-ccd5b1f > .e-con-inner > .elementor-background-video-container::before, .elementor-433 .elementor-element.elementor-element-ccd5b1f > .elementor-background-slideshow::before, .elementor-433 .elementor-element.elementor-element-ccd5b1f > .e-con-inner > .elementor-background-slideshow::before, .elementor-433 .elementor-element.elementor-element-ccd5b1f > .elementor-motion-effects-container > .elementor-motion-effects-layer::before {
    background-color: rgba(221, 27, 22, 0.7);
    --background-overlay: '';
}

/* .elementor-433 .elementor-element.elementor-element-ccd5b1f:not(.elementor-motion-effects-element-type-background), .elementor-433 .elementor-element.elementor-element-ccd5b1f > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-image: url(https://acejunkremovalservice.com/wp-content/uploads/2025/08/decorative_image.webp);
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
} */

.elementor-433 .elementor-element.elementor-element-980119d {
    display: flex;
    flex-direction: column;
    gap: 10px 10px;
    row-gap: 10px;
    column-gap: 10px;
}


.elementor-433 .elementor-element.elementor-element-c6ce89d {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0px 15px;
    row-gap: 0px;
    column-gap: 15px;
    grid-auto-flow: row;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 1200px;
}



.elementor-433 .elementor-element.card-block {
    display: flex;
    border-radius: 10px 10px 10px 10px;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.elementor-433 .elementor-element.icon-box-font .elementor-icon {
    font-size: 79px;
}

.elementor-433 .elementor-element.elementor-element-843c014 {
    right: -47px;
    bottom: -4%;
    z-index: 0;
}

.elementor-433 .elementor-element.card-block:not(.elementor-motion-effects-element-type-background), .elementor-433 .elementor-element.card-block > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #FFFFFF;
}

.elementor-433 .elementor-element.elementor-element-4ad8022 .elementor-button {
    background-color: #000000;
    font-size: 22px;
    font-weight: 700;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-color: #000000;
    border-radius: 10px 10px 10px 10px;
}

.elementor-433 .elementor-element.elementor-element-4ad8022 .elementor-button:hover {
    background-color: #DD1B16;
}

.boat-image {
  max-width: 80%;
}

.elementor-433 .elementor-element.elementor-element-7f0337c .elementor-heading-title {
    font-size: 22px;
    color: #FFFFFF;
}

.elementor-433 .elementor-element.elementor-element-56b5c2f .elementor-heading-title {
    font-size: 45px;
    font-weight: 700;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #FFFFFF;
}

.description-block-text {
     font-size: 18px;
    color: #FFFFFF;
    max-width: 57%;
 
}

.card-title-text {
font-size: 30px;
}

@media (max-width: 1024px) {
 .elementor-433 .elementor-element.elementor-element-c6ce89d {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px 20px;
}

.description-block-text {
    max-width: 100%;
}

.description-block-order{
  order: -99999 !important;
}

.elementor-433 .elementor-element.elementor-element-843c014 {
    right: 0;
    bottom: -4%;
    z-index: 0;
}

.boat-image {
  max-width: 65%;
}


}
@media (max-width: 767px) {
   .elementor-433 .elementor-element.elementor-element-c6ce89d {
    grid-template-columns: repeat(1, 1fr);
   }

    .card-title-text {
     font-size: 24px;
    }



.elementor-433 .elementor-element.elementor-element-56b5c2f .elementor-heading-title {
    font-size: 30px;
}

.elementor-433 .elementor-element.elementor-element-843c014 {
    right: 0px;
    bottom: -6%;
}

.boat-image {
  max-width: 75% !important;
}

.elementor-433 .elementor-element.elementor-element-ccd5b1f:not(.elementor-motion-effects-element-type-background), .elementor-433 .elementor-element.elementor-element-ccd5b1f>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  
    margin-bottom: 100px;
}


}


/* city_block_3 */

.display-block {
    display: flex;
    justify-content: center;
}

.elementor-433 .elementor-element.elementor-element-23cfded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1400px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.elementor-433 .elementor-element.elementor-element-40a50d3 {
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    row-gap: 15px;
    column-gap: 15px;
}

.elementor-433 .elementor-element.icon-box-widget.elementor-view-framed .elementor-icon, .elementor-433 .elementor-element.icon-box-widget.elementor-view-default .elementor-icon {
    color: #61CE70;
    border-color: #61CE70;
}

.elementor-433 .elementor-element.icon-box-widget.elementor-view-framed .elementor-icon, .elementor-433 .elementor-element.icon-box-widget.elementor-view-default .elementor-icon svg {
    fill: #61CE70;
}



.elementor-433 .elementor-element.icon-box-widget .elementor-icon svg {
    height: 12px;
}

.elementor-433 .elementor-element.elementor-element-e527a24 .elementor-heading-title {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}

.elementor-433 .elementor-element.elementor-element-802fcf5 .elementor-heading-title {
    font-size: 22px;
    color: #DD1B16;
}

.elementor-433 .elementor-element.elementor-element-2937883 img {
    width: 100%;
    max-width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px;
}

.elementor-433 .elementor-element.elementor-element-f131d09 .elementor-button {
    background-color: #DD1B1600;
    font-size: 22px;
    font-weight: 700;
    fill: #DD1B16;
    color: #DD1B16;
    border-style: solid;
    border-color: #DD1B16;
    border-radius: 10px 10px 10px 10px;
}


.elementor-433 .elementor-element.elementor-element-f131d09 .elementor-button:hover {
    background-color: #DD1B16;
    color: #FFFFFF;
}
 

.elementor-433 .elementor-element.elementor-element-e527a24 {
    margin: 0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;
    padding: 0px 0px 20px 0px;
    text-align: left;
}

.elementor-433 .elementor-element.elementor-element-802fcf5 .elementor-heading-title {
    font-size: 22px;
    color:  #DD1B16;
}

.elementor-433 .elementor-element.elementor-element-e527a24 .elementor-heading-title {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}

.elementor-433 .elementor-element.icon-box-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px 10px;
    row-gap: 10px;
    column-gap: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

@media (max-width: 1024px) {
 .elementor-433 .elementor-element.elementor-element-23cfded {
    display: flex;
   flex-direction: column;
}

.elementor-433 .elementor-element.elementor-element-40a50d3 {
    order: -99999;
}

.elementor-433 .elementor-element.elementor-element-2937883 img {
    height: 60%; 
}
}
@media (max-width: 767px) {
  .elementor-433 .elementor-element.elementor-element-e527a24 .elementor-heading-title {
    font-size: 30px;
}

.elementor-433 .elementor-element.elementor-element-2937883 img {
    height: 100%; 
}


.elementor-433 .elementor-element.elementor-element-23cfded {
    margin-top: 0;
}

}


/* city_block_4 */

.subtitle-faq {
    font-size: 22px;
    color:  #DD1B16;
    margin-bottom: 10px;
}

.title-faq {
   font-size: 45px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}


.faq-accordion { 
        max-width: 70%; 
        margin: 0 auto; 
        box-sizing: border-box;
        padding: 60px 10px;
        
    }
    .faq-accordion .faq-item {
        background: #fff;
        border-radius: 10px;
        margin-bottom: 12px;
        border: 1px solid #e0e0e0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        width: 100%;
        box-sizing: border-box;
    }
    .faq-accordion .faq-question {
        background: #fff;
        border-radius: 10px;
            border: 1px solid #000;
    color: #000;
    text-align: left;
        padding: 18px 24px;
        font-weight: 600;
        cursor: pointer;
        outline: none;
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }

    .faq-accordion .faq-icon {
        margin-right: 15px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    .faq-accordion .faq-icon svg {
        font-size: 15px !important;
        width: 15px;
        height: 15px;
        display: inline-block;
        vertical-align: middle;
    }
    .faq-accordion .faq-question-text {
        flex: 1;
        width: 100%;
        font-size: 22px;
            white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    }
    .faq-accordion .faq-answer {
        background: #fff;
        padding: 0 24px;
        border-top: 1px solid #f0f0f0;
        font-size: 18px;
        color: #222;
        box-sizing: border-box;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-accordion .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 18px 24px;
    }
    .faq-accordion .faq-item.active .faq-question {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.faq-item .faq-opened { display: none; }
.faq-item .faq-closed { display: inline-block; }
.faq-item.active .faq-opened { display: inline-block; }
.faq-item.active .faq-closed { display: none; }


@media (max-width: 1024px) {

.faq-accordion { 
        max-width: 100%; 
        
    }
}


@media (max-width: 767px) {

.subtitle-faq {
    font-size: 22px;
    color:  #DD1B16;
}

.title-faq {
   font-size: 30px;
    font-weight: 700;
    color: #000000;
}

  .faq-accordion .faq-question-text {
      font-size: 18px;
  }

   .faq-accordion .faq-question {
        padding: 18px 8px;
    }

    .faq-accordion {
      padding: 30px 10px;
    }
}



.leaflet-container {
    height: 300px !important;
}


.leaflet-container .leaflet-control-attribution {
    opacity: 0 !important;
    overflow: hidden !important;
}



.background-section-2 {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    display: flex;
justify-content: center;
    
;
   
}


.background-section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DD1B16;
     opacity: 0.7;
    z-index: 1;
}
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 0;
}
/* .section-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */


.section-background-relative {
     position: relative;
    overflow: hidden;
    width: 100%;
}
.section-background-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 0;
}

.background-section-2 .e-con-inner {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .background-section-2 {
        min-height: 100vh;
        padding: 60px 0;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .background-section-2 {
        min-height: 80vh;
    }
}


/* Boat Removal */


/* city_block_2 */
/* Custom styles for boat removal services section */
  .services-section {
    position: relative;
    padding: 60px 0;
    background-image: url(https://acejunkremovalservice.com/wp-content/uploads/2025/09/decorative_image_1024.webp);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
  }


  .services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dd1b16;;
    z-index: 4;
    opacity: 0.7;
  }

  .services-content {
    position: relative;
    z-index: 6;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .services-image-overlay {
    position: absolute;
    top: 0;
    right: 0;

  }



  .services-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .services-image {
    max-width: 100% !important;
    height: 610px !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px !important;
  }

  .services-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    order: -9999;
  }

  .services-subtitle {
    font-size: 22px;
    color: #FFF;
    margin-bottom: 10px;
  }

  .services-title {
    font-size: 50px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .service-icon {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon svg {
    width: 43px;
    height: 43px;
    fill: #61CE70;
  }

  .service-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #000;
    margin: 0;
  }

  /* Tablet styles */
  @media (max-width: 1024px) {
    .services-content {
      flex-direction: column;
      gap: 30px;
    }

    .services-image-container {
      order: -1;
    }

    .services-image {
      height: 500px !important;
      max-width: 80% !important;
    }

    .services-title {
      font-size: 40px;
    }


  
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .services-section {
      padding: 40px 0;
    }

    .services-content {
      padding: 0 10px;
      gap: 20px;
    }

    .services-image {
      height: 300px;
    }

    .services-title {
      font-size: 30px;
    }

    .services-subtitle {
      font-size: 18px;
    }

    .service-item {
      gap: 10px;
      padding: 15px 10px;
    }

    .service-text {
      font-size: 16px;
      line-height: 22px;
    }

    .services-list {
      gap: 10px;
    }

     .services-image {
      height: auto !important;
      max-width: 100% !important;
    }
  }


  /* city_block_3 */
.section-center {
  max-width: 1400px;
  margin: 0 auto;
}

  .phone-button {
    background-color: #0000;
    font-size: 22px;
    font-weight: 700;
    fill: #dd1b16;
    color: #dd1b16;
    border-style: solid;
    border-color: #dd1b16;
    border-radius: 10px 10px 10px 10px;
        padding: 5px 20px;
    max-width: 204px;
     transition: background-color .3s ease-in-out;
}

 .phone-button:hover {
   background-color: #DD1B16;
   color: #FFF;
 }

 .hero-description p {
    font-size: 20px;

 }

 .hero-description-b {
    font-weight: 700;
 }

 .hero-image-3 img {
    max-width: 100%;
    height: 423px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px;
}

  @media (max-width: 1024px) {
 .hero-image-3  {
    display: flex;
    justify-content: center;
}

 .hero-image-3 img {
    max-width: 80% !important;
    height: auto !important;

}
  }


  @media (max-width: 768px) {
 .hero-image-3 img {
    max-width: 100% !important;
}
  }



  /* city_block_4 */
   /* Custom styles for boat removal process section */
  .process-section {
    position: relative;
    background-image: url(https://acejunkremovalservice.com/wp-content/uploads/2025/09/decorative_image_1024.webp);
    background-size: cover;
    background-position: center;
    padding: 60px 10px;
    overflow: hidden;
  }

  .process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(221, 27, 22, 0.82);
    z-index: 1;
  }

  .process-decorative-image {
    position: absolute;
    bottom: 0%;
    left: -10%;
  }

  .process-decorative-image img {
    width: 41%;
  }

  .process-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .process-title {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
  }

  .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  .process-icon {
    display: inline-block;
    margin-bottom: 15px;
  }

  .process-icon svg {
    width: 35px;
    height: 35px;
    fill: #61ce70;
    color: #61ce70;
  }

  .process-description {
    font-size: 20px;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

  /* Tablet styles */
  @media (max-width: 1024px) {
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 1fr);
    }

    .process-title {
      font-size: 40px;
    }
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .process-section {
      padding: 40px 15px;
    }

    .process-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .process-title {
      font-size: 30px;
      margin-bottom: 30px;
    }

    .process-item {
      padding: 15px;
    }

    .process-description {
      font-size: 16px;
    }

.process-icon {
    
     margin-bottom: 0; 
}

.process-item {
  flex-direction: row;
text-align: left;
gap: 10px;
}

.process-decorative-image img {
    width: 80%;
}

  }


  /* city_block_5 */

/* Custom styles for why choose our company section */
.why-choose-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 10px;
      max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

.why-choose-image-container {
  flex: 1;
}

.why-choose-image {
  max-width: 100%;
  height: auto;
}

.why-choose-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: -99999;
}

.why-choose-subtitle {
  font-size: 22px;
  color: #DD1B16;
}

.why-choose-title {
  font-size: 45px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-feature {
  position: relative;
}

.why-choose-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DD1B16;
  z-index: -1;
  border-radius: 10px;
}

.why-choose-feature-item {
  display: flex;
  gap: 15px;
  padding: 10px;
  border-radius: 10px;
}

.why-choose-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-icon svg {
  width: 35px;
  height: 35px;
  fill: #61CE70;
  color: #61CE70;
}

.why-choose-description {
  font-size: 20px;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .why-choose-section {
    flex-direction: column;
  }

  .why-choose-image-container {
    order: -1;
  }

  .why-choose-title {
    font-size: 35px;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .why-choose-section {
    padding: 40px 10px;
  }

  .why-choose-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .why-choose-feature-item {
  
  display: flex;
    gap: 10px;
    padding: 15px 10px;
  }

  .why-choose-description {
    font-size: 16px;
  }

  .why-choose-features {
    gap: 15px;
  }
}



/* RV Removal */

/* city_block_2 */

.process-description-text-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.process-description-text {
  font-size: 20px;
  color: #FFFFFF;
  max-width: 70%;
}

  .process-grid-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
  }

   .process-icon-2 svg {
    width: 80px;
    height: 80px;
  }


  @media (max-width: 1024px) {

  .process-grid-2 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .process-description-text {
  max-width: 100%;
}
  }


    @media (max-width: 768px) {

  .process-grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }



  }


  /* city_block_4 */
    .process-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 74%;
  }

 .process-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
  }

  .process-content-wrapper {
    display: flex;
    justify-content: end;
  }

.process-title-2 {
  text-align: right ;
}

  @media (max-width: 1024px) {
   .process-grid-3 {
    width: 86%;
  }

 .process-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  }


    @media (max-width: 768px) {

  .process-grid-3 {
    grid-template-columns: repeat(1, 1fr);
     width: 100%;
  }

   .process-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-description-text {
  max-width: 100%;
}

.process-title-2 {
  text-align: center ;
}

  }


/* city_block_7 */

.process-description-text-2 {
 
  font-size: 20px;
  color: #FFFFFF;
  max-width: 100%;
}

 @media (max-width: 480px) {
   .process-grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  }


  /* other styles */

     .hero-description p {
      margin-bottom: 10px;
      line-height: 1.6;
    }
  
    .hero-description p:first-child {
      margin-bottom: 15px;
    }
  
    .hero-description p:last-child {
      margin-top: 15px;
    }


        .services-text-content > p {
      font-size: 18px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 25px;
      font-weight: 400;
    }

        .services-text-content > p {
        font-size: 17px;
        margin-bottom: 22px;
      }
  
     .services-text-content > p {
        font-size: 16px;
        margin-bottom: 20px;
      }


          .hero-image-3 img {
      max-width: 88%;
      height: 423px;
      object-fit: cover;
      object-position: center center;
      border-radius: 20px 20px 20px 20px;
    }



    @media (max-width: 1024px) {
      .hero-image-3 img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }



     .process-subtitle {
      text-align: center;
      color: #ffffff !important;
      font-size: 22px;
      margin-bottom: 15px;
      font-weight: 400;
    }


        .text-left-white {
      text-align: left;
      color: #ffffff !important;
      font-size: 18px;
    }


    .service-icon-p svg {
    width: 28px;
    height: 28px;
    fill: #61ce70;
}

  .service-icon-p {
      display: flex;
    align-items: center;
}
 




  /* modal for Find your city button */

  .city-finder-trigger {
    padding: 12px 28px;
    background: #DD1B16;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(221, 27, 22, 0.4);
}

.city-finder-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 27, 22, 0.6);
    background: #c41812;
}

.city-modal-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-modal-overlay.active {
    right: 0;
}

.city-modal-container {
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}


.city-modal-container.active {
    right: 0;
}

.city-modal-header {
    padding: 20px;
    background: linear-gradient(180deg, #000000 0%, #00000000 100%);
    display: flex;
    align-items: center;
    min-height: 64px;
}

.city-modal-back,
.city-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-modal-back:hover,
.city-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}



.city-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 30px;
    overflow-y: scroll;
}

.country-select-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 30px 0;
    text-align: center;
}

.country-buttons-wrapper {
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
}

.country-flag-btn {
 
    padding: 24px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.country-flag-btn:hover {
    border-color: #DD1B16;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 27, 22, 0.2);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}



.country-name {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 15px;
}

.search-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 25px 0;
    text-align: center;
}

.search-input-wrapper {
    position: relative;
}

.input-with-icon {
    position: relative;
}

.city-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.city-search-input:focus {
    border-color: #DD1B16;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(221, 27, 22, 0.1);
}

.input-status-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-status-icon.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #DD1B16;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.input-status-icon.success::after {
    content: '✓';
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
}

.input-status-icon.error::after {
    content: '✕';
    color: #DD1B16;
    font-size: 18px;
    font-weight: bold;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
}

.search-results-dropdown.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #1f2937;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left: 3px solid #DD1B16;
    padding-left: 17px;
}

.result-city-name {
    font-size: 16px;
    font-weight: 600;
}

.result-arrow {
    color: #DD1B16;
    font-size: 18px;
}

.services-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    text-align: center;
}

.services-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 25px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media(max-width: 400px) {
  .services-grid {
    gap: 5px;
}
.service-name {
    font-size: 12px;
}

.city-modal-body {
  padding-left: 10px;
  padding-right: 10px;
    margin-right: 0;
}

.service-card {
padding: 14px 12px;
}
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #DD1B16;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(221, 27, 22, 0.15);
}

.service-name {
    font-size: 16px;
    font-weight: 600;
}

.service-arrow {
    color: #DD1B16;
    font-size: 18px;
}

@media (max-width: 480px) {
    .city-modal-container {
        max-width: 100%;
    }
}



/* Barn */
.hero-image-wrapper img{
    max-width: 88% ;
    height: 700px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px !important;
}

@media (max-width: 767px) {
    .hero-image-wrapper img{
        height: 400px;
    }
}
@media (max-width: 480px) {
    .hero-image-wrapper img{
        height: 100%;
    }
}

