body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6{
  margin-top: 0;
}
h3 {
  font-size: 24px;
}

a{
  text-decoration: none;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.container {
  max-width: 1210px;
  margin: auto;
  padding: 0 15px;
  width: 90%;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-inner .logo {
    width: 350px;
    display: block;
}
.header-inner .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CENTER INFO */
.header-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.open-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
}

.glowing-circle {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border-radius: 50%;
    align-self: center;
    box-shadow: 0 0 20px #00ff00;
    animation: glow 1s infinite alternate ease-in-out;
    border: 2px solid white;
}
@keyframes glow{
  0% {
      box-shadow: 0 0 0px #00ff00, 0 0 0px #00ff00;
  }
  100% {
      box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
  }
}
.header-info .social-img {
    flex-shrink: 0;
    width: 36px;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    border-radius: 50%;
    line-height: 1;
    height: 36px;
}
.header-info .social-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-info .social-review span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}
.header-info .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  font-size: 14px;
}

.header-info .stars i {
  color: #fcb934;
}

/* BUTTONS */
.header-inner .actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.enquiry-btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12px;
    color: #000;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-phone img {
    width: 32px;
    flex-shrink: 0;
    animation: pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 rgb(61, 144, 19);
    border-radius: 50%;
}
.header-phone .call-btn-txt span {
    display: block;
    font-size: 12px;
}
.header-phone .call-btn-txt a {
    color: #000;
    font-weight: 800;
    font-size: 1.6em;
}
@keyframes pulsing{
    100% {
        box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
    }
}


/* SECTION */
.banner {
  display: block;
  position: relative;
  background: #63b419;
  padding: 60px 0 120px 0
}
.banner:before{
  content: '';
  background-image: url('/assets/img/banner-img.jpg');
  background-position: 75% center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.banner-inner{
  display: flex;
  align-items: flex-start;
}
/* LEFT SIDE */
.banner-left {
  width: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HEADINGS */
.banner-left .banner-title {
  font-family: "Lato", sans-serif;
  font-size: 46px;
  margin: 0 0 15px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}


.banner-left .bnr-highlight-txt{
  font-family: "Lato", sans-serif;
  color:#cce26e; 
  text-decoration: underline;
  text-decoration-color:orange; 
  text-underline-offset:5px;
  text-transform: uppercase; 
  font-size:36px; 
  font-style:italic;
  font-weight:900;
}
.banner-subheading {
    font-family: "Lato", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.49);
}

/* FEATURES */
.banner-inner .features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.banner-inner .feature {
  display: flex;
  align-items: center;
  gap: 15px;
}
.banner-inner .feature .feature-title {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    font-family: "Lato", Sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.9em;
    letter-spacing: 0px;
    color: #ffffff;
}
.banner-inner .feature-icon {
    width: 45px;
    height: 45px;
    background: #cce26e;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}

.banner-inner .bnr-btn {
    margin-top: 50px;
    display: flex;
}

.banner-inner .bnr-btn a.btn-link {
    background: #fcb934;
    color: #000;
    font-size: 24px;
    line-height: 21px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    padding: 15px 45px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.5s ease;
}
.banner-inner .bnr-btn a.btn-link:hover{
  background: #cce26e;
}
.banner-right img{
  display: none;
}


.form-sec {
  display: block;
  position: relative;
  margin-top: -50px;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 100px;
}
.form-sec .form-wrap {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
}

/* LEFT PANEL */
.form-sec .left-col {
  width: 35%;
  background: #000;
  color: #fff;
  padding: 30px;
}

/* CARD */
.offer-card {
  border: 2px dashed #fff;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.offer-card h4 {
  font-family: "Lato", sans-serif;
  margin: 0 0 10px;
}

.offer-card .price {
    font-family: "Knewave", system-ui;
    font-size: 40px;
    color: #fcb934;
}

.offer-card .small {
  font-size: 13px;
}
.offer-card-img {
    height: 150px;
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
}
.offer-con {
    width: 50%;
}

/* GUARANTEE BOX */
.guarantee {
  background: #fcb934;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  font-family: 'Lato';
  font-weight: 800;
  text-align: center;
}
.left-col .guarantee-txt {
    font-family: "Knewave", system-ui;
    color: #fcb934;
    font-size: 33px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}
.form-sec .right-col {
  width: 65%;
  padding: 40px;
}

.title-txt {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: capitalize;
}
.form-sec .offer-titl-txt{
    font-family: "Knewave", system-ui;
    font-weight: 400;
    font-size: 35px;
    color: #fcb934;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.services-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE */
.services-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.3s;
}
.services-header {
    display: block;
    position: relative;
    margin-bottom: 50px;
}
.services-header .title-txt {
    text-align: center;
    margin-bottom: 0 !important;
}
.services-card .service-title {
    margin: 0;
    background-color: #63b419;
    padding: 20px;
    text-align: center;
    color: #FFF;
    display: block;
    font-family: 'Lato';
}
/* 
.service-title a {
    display: block;
    font-family: 'Lato';
    font-size: 20px;
    color: #fff;
    padding: 30px 0;
}
 */

/* HOVER */
.services-card:hover img {
  transform: scale(1.05);
  transition: 0.3s;
}

.cta-section{
  margin: 80px 0;
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.cta-box{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('/assets/img/old-home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.cta-content{
  max-width: 1000px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  font-weight: 800;
  margin: 0;
}

.features-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.features-section:before{
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/topGreenish.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.features-section:after {
    content: '';
    height: 50px;
    width: 200%;
    background-image: url('/assets/img/bottomShape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0 ;
    position: absolute;
    z-index: 11;
    left: 0;
}
.features-section .title-txt span {
  color: #8cc640;
}
.features-section .divider {
  height: 2px;
  background: #8cc640;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* LIST */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 21px;
  color: #000;
}

/* ICON */
.features-list i {
  color: #8cc640;
  margin-top: 4px;
}

/* ABOUT ESTATE SECTION */
.about-estate-section {
  padding: 80px 0;
}
.estate-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}
.estate-block__content {
  width: 50%;
}
.estate-block__content .title-txt span {
  color: #63b419;
}
.estate-block__content p {

  line-height: 1.8;
  color: #555;
  margin: 0 0 15px;
}
.estate-block__content p:last-child {
  margin-bottom: 0;
}
.estate-block__img {
  width: 50%;
}
.estate-block__img .img-placeholder,
.ba-placeholder {
  width: 100%;
  min-height: 380px;
  background: #e9e9e9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-size: 16px;
}
.estate-block__img .img-placeholder i,
.ba-placeholder i {
  font-size: 48px;
}

/* Before & After */
.before-after-block {
  margin-bottom: 20px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 35px;
}
.ba-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.ba-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.ba-placeholder {
  min-height: 350px;
  border-radius: 0;
}
.ba-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 20px;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ba-label--before {
  background: #e74c3c;
  color: #fff;
}
.ba-label--after {
  background: #63b419;
  color: #fff;
}

/* COMPASSIONATE INTRO */
.compassionate-section {
  padding: 80px 0;
  background: #63b419;
  position: relative;
}
.compassionate-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.compassionate-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: #fff;
}
.compassionate-section .title-txt {
  color: #fff;
  font-size: 36px;
}
.compassionate-section .title-txt span {
  color: #cce26e;
}
.compassionate-inner p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0 0 30px;
}
.compassionate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fcb934;
  color: #000;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.compassionate-btn:hover {
  background: #cce26e;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.reviews-header .title-txt {
  margin-bottom: 0;
}
.reviews-header .title-txt span {
  color: #63b419;
}
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.reviews-badge__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.reviews-badge__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reviews-badge__rating {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #222;
  line-height: 1;
}
.reviews-badge__stars {
  display: flex;
  gap: 2px;
}
.reviews-badge__stars i {
  color: #fcb934;
  font-size: 14px;
}
.reviews-badge__count {
  font-size: 13px;
  color: #777;
}
.reviews-badge__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Slider */
.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviews-slider {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #63b419;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.review-card__name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #222;
}
.review-card__date {
  font-size: 13px;
  color: #999;
}
.review-card__stars {
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}
.review-card__stars i {
  color: #fcb934;
  font-size: 14px;
}
.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  flex-grow: 1;
}
.reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  flex-shrink: 0;
  transition: all 0.3s;
}
.reviews-arrow:hover {
  border-color: #63b419;
  color: #63b419;
}

/* HOW IT WORKS */
.how-it-works-section {
  padding: 80px 0;
  background: #fff;
}
.how-it-works-section .title-txt span {
  color: #63b419;
}
.hiw-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.2em;
  line-height: 1.7;
  color: #555;
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.hiw-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #63b419;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(99, 180, 25, 0.3);
}
.hiw-step__num {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #cce26e;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hiw-step h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #222;
  margin: 0 0 10px;
}
.hiw-step p {
  font-size:1em;
  line-height: 1.7;
  color: #666;
  margin: 0;
}
.hiw-connector {
  display: flex;
  align-items: center;
  padding-top: 30px;
  color: #ccc;
  font-size: 20px;
  flex-shrink: 0;
}

/* ADVANTAGES SECTION */
.advantages-section {
  padding: 80px 0;
}
.advantages-section .title-txt span {
  color: #63b419;
}
.advantages-wrap {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-top: 40px;
}
.advantages-img {
  width: 50%;
  flex-shrink: 0;
}
.advantages-img .img-placeholder {
  width: 100%;
/*   height: 100%; */
  min-height: 500px;
  background: #e9e9e9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-size: 16px;
}
.advantages-img .img-placeholder i {
  font-size: 48px;
}
.advantages-content {
  width: 50%;
}
.advantage-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.advantage-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.advantage-item h3 {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.advantage-num {
  width: 36px;
  height: 36px;
  background: #63b419;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.advantage-item p {
  margin: 0;
/*   font-size: 16px; */
  line-height: 1.7;
  color: #555;
  padding-left: 48px;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.faq-section .title-txt span {
  color: #63b419;
}
.faq-list {
  max-width: 900px;
  margin: 30px auto 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #222;
  text-align: left;
  gap: 15px;
  transition: color 0.3s;
}
.faq-question:hover {
  color: #63b419;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: #63b419;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 22px;
}
.faq-answer p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

section.services {
    padding: 60px 0px;
}

/* SECTION CTA BUTTONS */
.section-cta {
  margin-top: 30px;

}

.section-cta .btn-link {
  background: #fcb934;
  color: #000;
  font-size: 1.6em;
  line-height: 21px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  padding: 15px 45px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.5s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
}
.section-cta .btn-link:hover {
  background: #cce26e;
}

/* CASE STUDIES */
.case-studies-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.case-studies-section .title-txt span {
  color: #63b419;
}
.case-studies-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 18px;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.case-study-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid #63b419;
}
.case-study-card__quote {
  font-size: 28px;
  color: #cce26e;
  margin-bottom: 15px;
}
.case-study-card__text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px;
  flex-grow: 1;
  font-style: italic;
}
.case-study-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 18px;
}
.case-study-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #63b419;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.case-study-card__name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #222;
}
.case-study-card__location {
  font-size: 13px;
  color: #999;
}

/* SPECIALIST SECTION */
.specialist-section {
  padding: 80px 0;
}
.specialist-section .title-txt span {
  color: #63b419;
}
.specialist-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}
.specialist-content {
  width: 50%;
}
.specialist-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 15px;
}
.specialist-img {
  width: 50%;
}
.specialist-img .img-placeholder {
  width: 100%;
  min-height: 400px;
  background: #e9e9e9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-size: 16px;
}
.specialist-img .img-placeholder i {
  font-size: 48px;
}

/* ABOUT US */
.about-us-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.about-us-section .title-txt span {
  color: #63b419;
}
.about-us-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-us-img {
  width: 50%;
}
.about-us-img .img-placeholder {
  width: 100%;
  min-height: 400px;
  background: #e0e0e0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-size: 16px;
}
.about-us-img .img-placeholder i {
  font-size: 48px;
}
.about-us-content {
  width: 50%;
}
.about-us-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 15px;
}

/* NEW FOOTER */
.site-footer-new {
  overflow: hidden;
}
.footer-top {
  background: rgb(99, 180, 25);
  padding: 25px 0;
}
.footer-top-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-top-item i {
  font-size: 24px;
  flex-shrink: 0;
}
.footer-mid {
  background: #fff;
  padding: 60px 0;
}
.footer-mid-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.footer-payments h3 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.footer-payments p {
  color: #777;
  font-size: 16px;
  margin: 0 0 20px;
}
.footer-cc-img {
  max-width: 320px;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
}
.footer-final-quote p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
  margin: 0 0 15px;
}
.footer-phone {
  font-family: 'Lato', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #000;
  text-decoration: none;
  display: inline-block;
  border-bottom: 5px solid #63b419;
  line-height: 1.1;
}
.footer-bottom {
  background: #222;
  padding: 15px 0;
  text-align: center;
}
.footer-bottom .cpy-txt,
.footer-bottom .cpy-txt a {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1400px){
  .banner-left .banner-title {
      font-size: 42px;
  }
  .banner-left .bnr-highlight-txt {
      font-size: 32px;
  }
  .banner-subheading {
      font-size: 26px;
  }
  .banner-inner .feature .feature-title {
      font-size: 22px;
  }
  .banner-inner .feature-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
      border-radius: 8px;
  }
  .title-txt {
      font-size: 36px;
  }
  .cta-content h2 {
      font-size: 44px;
  }
}
@media (max-width: 1200px){
  .header-inner .logo {
      width: 300px;
  }
  .banner-left .banner-title {
      font-size: 38px;
  }
  .banner-subheading {
      font-size: 24px;
  }
  .banner-left .bnr-highlight-txt {
      font-size: 28px;
  }
  .banner-inner .feature .feature-title {
      font-size: 20px;
  }
  .banner-inner .bnr-btn {
      margin-top: 30px;
  }
  .banner-inner .bnr-btn a.btn-link {
      font-size: 20px;
      padding: 15px 30px;
  }
  .form-sec .offer-titl-txt {
      font-size: 30px;
  }
  .guarantee {
      padding: 12px;
      font-size: 14px;
  }
  .offer-card .price {
      font-size: 30px;
  }
  .offer-card-img {
      height: 120px;
  }
}
@media (max-width: 1100px){
  .enquiry-btn {
      display: none;
  }
}
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specialist-wrap,
  .about-us-wrap {
    gap: 35px;
  }
  .footer-top-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-top-item {
    flex: 0 0 calc(50% - 10px);
  }
  .footer-phone {
    font-size: 44px;
  }
  .estate-block {
    gap: 35px;
  }
  .estate-block__img .img-placeholder {
    min-height: 300px;
  }
  .hiw-connector {
    display: none;
  }
  .hiw-steps {
    flex-wrap: wrap;
    gap: 30px;
  }
  .hiw-step {
    flex: 0 0 calc(50% - 15px);
    padding: 0;
  }
  .advantages-wrap {
    gap: 35px;
  }
  .advantages-img .img-placeholder {
    min-height: 400px;
  }
  .banner-inner {
    flex-direction: column;
  }
  .banner-left,
  .banner-right {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-right img{
    display: block;
    border-radius: 20px;
  }
  .banner:before{
    content: unset;
  }
  .banner-right {
      margin-top: 30px;
  }

  .form-sec .form-wrap {
      flex-direction: column;
  }
  .form-sec .left-col {
      display: flex;
      flex-direction: column;
      width: auto;
  }
  .offer-card-img {
      height: 150px;
  }
  .offer-card-wrap {
      display: flex;
      gap: 30px;
  }
  .offer-card {
      width: 50%;
  }
  .cta-content h2 {
      font-size: 38px;
  }
  .service-title a {
      padding: 20px 0;
      font-size: 18px;
  }
  .cta-content h2 br {
      display: none;
  }
  .form-sec .right-col {
      width: auto;
      padding: 30px;
  }
}
@media (max-width: 980px){
  .open-status {
      display: none;
  }
}
@media (max-width: 767px) {
  .section-cta {
      text-align: center !important;
  }
  .section-cta .btn-link {
      font-size: 18px;
      padding: 12px 30px;
  }
  .case-studies-section {
      padding: 60px 0;
  }
  .case-studies-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  .specialist-section,
  .about-us-section {
      padding: 60px 0;
  }
  .specialist-wrap {
      flex-direction: column;
      gap: 30px;
  }
  .specialist-content,
  .specialist-img {
      width: 100%;
  }
  .about-us-wrap {
      flex-direction: column;
      gap: 30px;
  }
  .about-us-img,
  .about-us-content {
      width: 100%;
  }
  .about-us-img .img-placeholder,
  .specialist-img .img-placeholder {
      min-height: 280px;
  }
  .footer-top-grid {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  .footer-top-item {
      flex: 0 0 100%;
      justify-content: center;
      font-size: 15px;
  }
  .footer-phone {
      font-size: 36px;
  }
  .footer-mid {
      padding: 40px 0;
  }
  .about-estate-section {
      padding: 60px 0;
  }
  .estate-block {
      flex-direction: column;
      gap: 25px;
      margin-bottom: 50px;
  }
  .estate-block--care {
      flex-direction: column-reverse;
  }
  .estate-block__content,
  .estate-block__img {
      width: 100%;
  }
  .estate-block__img .img-placeholder {
      min-height: 250px;
  }
  .before-after-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  .ba-placeholder {
      min-height: 250px;
  }
  .compassionate-section {
      padding: 60px 0;
  }
  .compassionate-section .title-txt {
      font-size: 28px;
  }
  .compassionate-inner p {
      font-size: 18px;
  }
  .compassionate-btn {
      font-size: 18px;
      padding: 12px 30px;
  }
  .ba-card img {
      height: 250px;
  }
  .reviews-section {
      padding: 60px 0;
  }
  .reviews-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .reviews-arrow {
      display: none;
  }
  .reviews-slider-wrap {
      justify-content: center;
  }
  .review-card {
      margin: 0 auto;
  }
  .hiw-steps {
      flex-direction: column;
      gap: 30px;
  }
  .hiw-step {
      flex: 0 0 100%;
  }
  .how-it-works-section {
      padding: 60px 0;
  }
  .advantages-section {
      padding: 60px 0;
  }
  .advantages-wrap {
      flex-direction: column;
      gap: 30px;
  }
  .advantages-img,
  .advantages-content {
      width: 100%;
  }
  .advantages-img .img-placeholder {
      min-height: 300px;
  }
  .advantage-item p {
      padding-left: 48px;
  }
  .faq-section {
      padding: 60px 0;
  }
  .faq-question {
      font-size: 16px;
      padding: 18px 20px;
  }
  .faq-answer {
      padding: 0 20px;
  }
  .faq-item.active .faq-answer {
      padding: 0 20px 18px;
  }
  .faq-answer p {
      font-size: 15px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .offer-card-wrap {
      flex-direction: column;
      gap: 0;
  }
  .offer-card {
     width: auto;
  }
  .cta-content h2 {
      font-size: 32px;
  }
  .features-grid {
      gap: 0;
  }
  .form-sec {
      padding-bottom: 80px;
  }
  .services-card img {
      height: 300px;
  }
  .service-title a {
      padding: 20px 0;
      font-size: 16px;
  }
  .header-info {
      display: none;
  }
  .banner-left .banner-title {
      font-size: 34px;
  }
  .banner-inner .bnr-btn a.btn-link {
      font-size: 18px;
      padding: 12px 20px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .title-txt {
      font-size: 30px;
  }
  .features-list li {
      font-size: 16px;
      margin-bottom: 12px;
  }
}
@media (max-width: 550px){
  .header .call-btn-txt {
      display: none;
  }
}
@media (max-width: 400px){
  .offer-card {
      flex-direction: column;
  }
  .offer-con {
      width: 100%;
  }
  .offer-card-img {
      width: 100%;
  }
  .header-inner .logo {
      width: 260px;
  }
}
@media (max-width: 767px) {
    .section-cta-mobile {
        text-align: center !important;
        position: fixed;
        z-index: 9999;
        bottom: 0px;
		left: 0px;
		width:100%;
		background-color: #fcb935;
        padding: 15px;
    }
	.section-cta-mobile a{
		color: #000;
        font-weight: 700;
        font-size: 21px;
	}
#reflection {
  overflow: hidden;
}

#reflection::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 3s ease-in-out infinite;
}
@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
}