.contact-sec {
  padding: 95px 0 130px;
}

.contact-sec-left-details {
  background-color: #7b011d57;
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
}

.contact-sec-left-detailsBox {
  border: 1px dashed #ffffff80;
  border-radius: 20px;
  padding: 40px 30px 20px;
}

.details-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
}

.details-box svg {
  width: 20px;
  height: 20px;
}

.details-box .details-box-svg-bg {
  width: 56px;
  height: 56px;
  background-color: var(--theme-color);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-box-content h5 {
  color: #000;
  font-weight: 400;
  font-size: 20px;
}

.details-box-content p {
  margin-bottom: 0;
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

.details-box-content a {
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

.contact-sec-right form {
  margin-top: 55px;
}

.contact-sec-right h3 {
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
  margin: 0;
}

.contact-sec-right h2 {
  font-weight: 400;
  font-size: 60px;
  background: var(--theme-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-sec-right p {
  color: #000;
  font-weight: 400;
  font-size: 20px;
}

.contact-sec-right form input {
  width: 100%;
  height: 55px;
  border-radius: 100px;
  border: unset !important;
  outline: none !important;
  background: #0d401c0d !important;
  color: var(--theme-color);
  padding: 20px;
  margin-bottom: 15px;
}

.contact-sec-right form select {
  width: 100%;
  height: 55px;
  border-radius: 100px;
  border: unset !important;
  outline: none !important;
  background: #0d401c0d !important;
  color: var(--theme-color);
  padding: 14px;
  margin-bottom: 15px;
}

.contact-sec-right form input::placeholder {
  color: var(--theme-color);
}

.contact-sec-right form textarea {
  width: 100%;
  height: 220px;
  border-radius: 25px;
  border: unset !important;
  outline: none !important;
  background: #0d401c0d !important;
  color: var(--theme-color);
  padding: 20px;
  margin-bottom: 15px;
  resize: none;
}

.contact-sec-right form textarea::placeholder {
  color: var(--theme-color);
}

.contact-sec-right form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  margin-bottom: 0;
}

.contact-sec-right form label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.contact-sec-right form label span {
  color: var(--theme-color);
  font-size: 16px;
}

.contact-sec-right form .welcome-anchor {
  margin-top: 0;
  justify-content: flex-end;
}

@media (max-width: 1366px) {
  .details-box-content p {
    font-size: 13px;
  }
}

/* -------- Tablet (≤1024px) -------- */
@media (max-width: 1024px) {
  .contact-sec {
    padding: 70px 20px 90px;
  }

  .contact-sec-right h2 {
    font-size: 48px;
    line-height: 1.2;
  }

  .contact-sec-right h3 {
    font-size: 22px;
  }

  .contact-sec-right p {
    font-size: 18px;
  }

  .contact-sec-left-detailsBox {
    padding: 30px 20px;
  }

  .details-box {
    gap: 20px;
  }

  .details-box-content h5 {
    font-size: 18px;
  }

  .details-box-content p,
  .details-box-content a {
    font-size: 14px;
  }
}

/* -------- Mobile (≤767px) -------- */
@media (max-width: 767px) {
  .contact-sec {
    padding: 50px 15px 70px;
  }

  /* Column reverse: form upar, details niche */
  /* .contact-sec .row {
    flex-direction: column-reverse;
  } */

  .contact-sec-right {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .contact-sec-right h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .contact-sec-right h3 {
    font-size: 18px;
  }

  .contact-sec-right p {
    font-size: 15px;
  }

  .contact-sec-right form {
    margin-top: 25px;
    text-align: left;
  }

  .contact-sec-right form input,
  .contact-sec-right form select {
    height: 48px;
    padding: 12px 15px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contact-sec-right form textarea {
    height: 140px;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 18px;
  }

  .contact-sec-right form label span {
    font-size: 13px;
  }

  .contact-sec-right form .welcome-anchor {
    justify-content: center;
    margin-top: 15px;
  }

  .contact-sec-left-details {
    margin-top: 20px;
    padding: 15px;
    border-radius: 14px;
  }

  .contact-sec-left-detailsBox {
    padding: 20px 15px;
  }

  .details-box {
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
  }

  .details-box .details-box-svg-bg {
    width: 42px;
    height: 42px;
  }

  .details-box svg {
    width: 18px;
    height: 18px;
  }

  .details-box-content h5 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .details-box-content p,
  .details-box-content a {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* -------- Small Mobile (≤480px) -------- */
@media (max-width: 480px) {
  .contact-sec {
    padding: 40px 10px 60px;
  }

  .contact-sec-right h2 {
    font-size: 26px;
  }

  .contact-sec-right p {
    font-size: 12px;
  }

  .contact-sec-right form input,
  .contact-sec-right form select {
    height: 44px;
    font-size: 13px;
  }

  .contact-sec-right form textarea {
    height: 120px;
    font-size: 13px;
    margin-top: 20px;
  }

  .details-box {
    gap: 12px;
  }

  .details-box-content h5 {
    font-size: 14px;
  }

  .details-box-content p,
  .details-box-content a {
    font-size: 12px;
  }
}

.contact-sec-right form button {
  outline: none;
  border: none;
  background: var(--theme-color);
  color: var(--white-color) !important;
  padding: 15px 40px;
  gap: 34px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 100px;
}

.contact-sec-right form .welcome-anchor {
  margin-top: 0;
  justify-content: flex-end;
  display: flex;
  align-items: flex-start;
}
