/* ========================= */
/* 🔥 SPLIT HERO SECTION */
/* ========================= */

.wsm-split-hero{

}

/* ========================= */
/* DESKTOP LAYOUT */
/* ========================= */

.wsm-split-hero__wrapper{
  display:flex;
  gap:40px;
  align-items:stretch;
}

/* Equal width */
.wsm-split-hero__content,
.wsm-split-hero__image{
  flex:1;
}

.wsm-split-hero__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Image position handling */
.wsm-split-hero__wrapper.image-right .wsm-split-hero__content{order:1}
.wsm-split-hero__wrapper.image-right .wsm-split-hero__image{order:2}

.wsm-split-hero__wrapper.image-left .wsm-split-hero__content{order:2}
.wsm-split-hero__wrapper.image-left .wsm-split-hero__image{order:1}

/* ========================= */
/* 🔥 IMAGE FIX */
/* ========================= */

.wsm-split-hero__image{
  position:relative;
  min-height:500px;          /* 🔥 controls section height */
  overflow:hidden;
  /* border-radius:12px; */
}

/* Image fills container perfectly */
.wsm-split-hero__image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top center;
}

/* ========================= */
/* CONTENT ALIGNMENT */
/* ========================= */

.wsm-split-hero__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* ========================= */
/* TEXT ALIGNMENTS */
/* ========================= */

.align-left{text-align:left}
.align-center{text-align:center}
.align-right{text-align:right}

/* ========================= */
/* BUTTON */
/* ========================= */

.button-row{
  margin-top:20px;
}

.hero-btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.hero-btn:hover{
  opacity:0.9;
}

/* ========================= */
/* TEXT STYLING */
/* ========================= */

.hero-description p{
  margin-bottom:12px;
  line-height:1.6;
}

.hero-description a{
  text-decoration:underline;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media(max-width:900px){

  .wsm-split-hero__wrapper{
    flex-direction:column;
    gap:20px;
  }

  /* Image on mobile */
  .wsm-split-hero__image{
    min-height:260px; /* smaller height */
  }

  .wsm-split-hero__image img{
    position:relative;
    height:auto;
  }

  /* Order control */
  .wsm-split-hero__wrapper.mobile-top .wsm-split-hero__image{order:1}
  .wsm-split-hero__wrapper.mobile-top .wsm-split-hero__content{order:2}

  .wsm-split-hero__wrapper.mobile-bottom .wsm-split-hero__image{order:2}
  .wsm-split-hero__wrapper.mobile-bottom .wsm-split-hero__content{order:1}

}




.contact-info-box{
    background:#f5f7f7;
    padding:38px 34px;
    border-radius:18px;
    border:1px solid #e2e7e7;
    font-family:'Poppins',sans-serif;
}

.contact-section{
    margin-bottom:0;
}

.contact-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:26px;
}

.contact-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#1eb89b,#0f907f);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 8px 20px rgba(20,179,154,0.18);
}

.contact-title{
    margin:0;
    color:#07133b;
    font-size:20px;
    font-weight: 600;
    letter-spacing:0.3px;
    line-height:1;
}

.contact-underline{
    display:block;
    width:46px;
    height:4px;
    background:#14b39a;
    border-radius:20px;
    margin-top:12px;
}

.contact-link{
    display:block;
    color:#ff1971;
    text-decoration:none;
    font-size:21px;
    font-weight: 600;
    line-height:1.5;
    margin-bottom:18px;
    transition:0.3s;
}

.contact-link:hover{
    color:#d40058;
}

.contact-email{
    font-size:17px;
    word-break:break-word;
}

.contact-text{
    font-size:16px;
    color:#2b2b2b;
    line-height:1.8;
    margin:0;
    max-width:320px;
}

.contact-time{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    color:#2a2a2a;
    font-size:16px;
    line-height:1.6;
}

.contact-time svg{
    margin-top:2px;
    flex-shrink:0;
}

.contact-divider{
    border:none;
    border-top:1px dashed #d8dddd;
    margin:36px 0;
}

.social-icons{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:24px;
    flex-wrap:wrap;
}

.social-icons a{
    width:52px;
    height:52px;
    border-radius:50%;
    border:1px solid #cfd5db;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#07133b;
    text-decoration:none;
    transition:all .3s ease;
}

.social-icons a svg{
    width:18px;
    height:18px;
}

.social-icons a:hover{
    background:#14b39a;
    border-color:#14b39a;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(20,179,154,0.22);
}

@media(max-width:768px){

    .contact-info-box{
        padding:28px 22px;
        border-radius:14px;
    }

    .contact-header{
        gap:14px;
        margin-bottom:22px;
    }

    .contact-icon{
        width:52px;
        height:52px;
    }

    .contact-title{
        font-size:18px;
    }

    .contact-link{
        font-size:18px;
    }

    .contact-email{
        font-size:16px;
    }

    .contact-text,
    .contact-time{
        font-size:15px;
    }

    .social-icons a{
        width:48px;
        height:48px;
    }

}

.social-icons img{
    width:25px;
    height:25px;
    object-fit:contain;
}

@media (max-width:768px){

    .hero-description{
        font-size:24px !important;
        line-height:1.2;
        overflow-wrap:break-word;
        word-break:break-word;
    }

    .hero-description p{
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom:12px;
    line-height:1.7;
    font-size: 16px !important;
    }

}