.bg-variant{
  background: var(--primary-bg-light);
}
/*-hero-*/
body.dimmed { background: rgba(0, 0, 0, 0.6); } body:has(.overlay.active) #form-sec { position: relative; z-index: 1000; background: var(--white); padding: 15px 5px 5px; border-radius: 0.5rem 0.5rem .8rem .8rem; box-shadow: 0 0 20px rgba(0,0,0,0.2); } .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 900; } .overlay.active { opacity: 1; visibility: visible; }


/*-trust-text-*/
.trust-line{
  font-size:17px;
  max-width: 370px;
}

.trust-line span{
  color: #f2aa00;
}

.trust-line a{
  font-weight: 600;
  text-decoration: underline;
}

.trust-line a:hover{
  text-decoration: none;
}

@media only screen and (max-width:767px){
  .trust-line{
    font-size:15px;
  }
}

/*-hero-image-*/
.hero-img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

@media only screen and (max-width:767px){
  .hero-img {
    position: relative;
    margin-top: -100px;
    width: fit-content;
    margin-left: auto;
  }
}
/*-content-*/
.content-cont{
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  grid-column-gap: 110px;
  grid-row-gap: 54px;
}

@media only screen and (max-width:1080px){
  .content-cont {
    grid-template-columns: 1fr;
  }
}

.singlecontent p{
  margin-bottom:22px;
}

.singlecontent h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  border-left: 1px solid var(--hover);
  padding-left:15px;
  position: relative;
}

.singlecontent h2::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--hover);
  border-radius: 50%;
}

.singlecontent a{
    color: var(--hover);
    font-weight: 600;
    text-decoration: underline;
}

.singlecontent .btn{
    text-decoration: none;
    color:var(--white);
    font-weight: 700;
}

/*-trust-icon-list-*/
.singlecontent ul,
.singlecontent ol{
    margin-bottom: 30px;
}

.singlecontent ul li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.singlecontent ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url('https://darkboysmedia.com/wp-content/uploads/2025/09/check.gif') no-repeat center center;
  background-size: contain;
}

.singlecontent ol li{
  list-style: square;
  margin-left: 24px;
  margin-bottom: 10px;
}

/*-sidebar-*/
#form-sec{
  padding-top:30px;
}
.form-heading {
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-heading::before,
.form-heading::after {
  content: '';
  position: absolute;
  width: 18%;
  height: 1px;
  background: #ccc;
  top: 50%;
}

.form-heading::before {
  left: 0px;
}

.form-heading::after {
  right: 0px;
}

/*--form*/
.form-cont{
  background: var(--primary-bg-light);
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 11px;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.name-col{
    display: flex;
    gap: 15px;
}

.contact_form input, 
.contact_form textarea, 
.contact_form select {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: var(--outline);
  background-color: transparent;
  color: var(--main);
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.contact_form input:focus, 
.contact_form textarea:focus, 
.contact_form select:focus {
  outline: none;
  border-color: var(--brand-red);
}

.contact_form ::placeholder {
  opacity: 1; 
}

.contact_form textarea {
  resize: vertical;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-method input[type=email],
.contact-method input[type=tel] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  line-height: 1.3;
}

.terms-consent input[type="checkbox"] {
  width: 25px;
  height: 33px;
  appearance: none;
  border: var(--outline);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  display: block;
  padding: 8px;
}

.terms-consent input[type="checkbox"]:checked {
  background-color: var(--brand-blue);
}

.terms-consent input[type="checkbox"]:checked::after {
  content: '✔';
  font-size: 14px;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.terms-consent label a{
  color: var(--brand-blue);
}

.submit-btn{
  width: -webkit-fill-available;
  max-width: -webkit-fill-available;
  max-width: 100%;
  width: -moz-available;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.error,
.success {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.error{
  color: var(--brand-red);
}

.success p{
  color: var(--brand-green);
}

.hidden {
    display: none;
}

/* hidden for accessibility */
.lbl-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}