* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 67.5%;
  max-width: 1320px;
  height: min(820px, 89vh);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}


.contact-left,
.contact-right {
  flex: 1;
  max-width: 755px;
  height: 100%;

  background: rgba(102, 102, 102, .2);
  border-radius: 12px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
}


.contact-left {
  justify-content: space-between;
}


.contact-content {
  width: 92%;
  max-width: 695px;

  margin: auto auto 0;
  padding-top: 55px;
}


.contact-tag {
  box-sizing: border-box;
  width: 98px;
  height: 34px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  font-family: 'KoHo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
}

.contact-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  background: conic-gradient(from 0deg,
      rgba(216, 156, 39, 0) 0%,
      rgba(216, 156, 39, 0) 80%,
      #d89c27 92%,
      #dfc86f 96%,
      #d89c27 98%,
      rgba(216, 156, 39, 0) 100%);
  animation: rotateBorder 3s linear infinite;
  z-index: -2;
}

.contact-tag::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #171717;
  border-radius: 24px;
  z-index: -1;
}

.dot {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}


.contact-content h2 {
  margin-top: 28px;
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.9;
  letter-spacing: 0.07em;
  background: linear-gradient(270deg, #BE9644 0.01%, #AA803C 15.01%, #F3DC87 43.01%, #FBEFAC 59.01%, #F3DC87 73.01%, #AA803C 93.01%, #C49D47 100.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.mobile-br {
  display: none;
}

.desktop-br {
  display: inline;
}


.contact-content p {
  margin-top: 32px;

  font-size: 20px;
  line-height: 1.8;
  color: #d9d9d9;
}


.contact-image {
  height: 502px;
  display: flex;
  align-items: flex-end;
}


.contact-image img {
  width: 91%;
  height: 100%;
  object-fit: contain;
}


.contact-right form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 60px 40px; */
  padding: 22px 40px;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field label {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.field-icon {
  position: absolute;
  left: 20px;
  width: 39px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.field-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.field input {
  width: 100%;
  height: 60px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  padding: 0px 19px 0 73px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  border-color: rgba(212, 169, 74, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 169, 74, 0.2);
}

.field-message .input-wrapper::after {
  top: 18px;
  bottom: auto;
  height: calc(100% - 36px);
}

.field-message textarea {
  width: 100%;
  height: 108px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  resize: none;
  padding: 18px 13px 11px 76px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-message textarea:focus {
  border-color: rgba(212, 169, 74, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 169, 74, 0.2);
}

.field-message .field-icon {
  align-self: flex-start;
  margin-top: 14px;
}

.captcha input {

  height: 78px;
  width: 300px;

}

.contact-form-btn {
  height: 57px;
  border: 1px solid #2C2C2C;
  border-radius: 8px;
  background: linear-gradient(101.58deg, #636363 0.97%, #9B9B9B 20.97%, #B1B1B1 37.13%, #E1E1E1 50.61%, #B1B1B1 62.82%, #9B9B9B 76.44%, #636363 100.96%);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  cursor: pointer;
  margin-top: 0px;
  transition: opacity 0.2s ease;
  width: 310px;
  align-self: center;
}

.contact-form-btn:hover {
  opacity: 0.9;
}

/* ── Large screens ≥ 1400px: cap at 1320px like other sections (e.g. testimonials) ── */
@media (min-width: 1400px) {

  .contact-container {
    max-width: 1320px;
    height: min(820px, 89vh);
    gap: 30px;
  }

  .contact-content p {
    margin-top: 0px;
    font-size: 20px;
    line-height: 1.8;
    color: #d9d9d9;
  }

  .contact-image {
    height: 502px;
  }

  .contact-image img {
    width: 89%;
    height: 100%;
    object-fit: contain;
    margin-bottom: -19px;
  }

}

@media (min-width:1280px) and (max-width:1599px) {

  .contact-container {
    width: 83.5%;
    height: 88vh;
    gap: 25px;
  }

  .contact-content {
    padding-top: 25px;
    margin-top: -2px;
  }

  .contact-content h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .contact-content p {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.7;
  }



  .contact-image {
    height: auto;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }



  .contact-image img {
    width: 95%;
    max-height: 101%;
    object-fit: contain;
    margin-bottom: -56px;
  }

  .contact-right form {
    padding: 20px 25px;
    gap: 30px;
  }

  .field label {
    font-size: 20px;
  }

  .field input {
    height: 52px;
    padding-left: 58px;
    font-size: 24px;
  }

  .field-message textarea {
    height: 100px;
    padding-left: 59px;
    font-size: 24px;
  }

  .captcha {

    margin-top: -13px;
  }

  .input-wrapper::after {
    left: 70px;
    top: 12px;
    bottom: 12px;
  }

  .field-message .input-wrapper::after {
    top: 12px;
    height: calc(100% - 24px);
  }

  .field-icon {
    left: 18px;
    width: 32px;
    height: 30px;
  }

  .contact-form-btn {
    height: 47px;
    font-size: 16px;
    margin-top: -17px;
    width: 290px;
  }


}

@media (max-width: 1200px) {

  .contact-container {
    max-width: 1140px;
    height: 88vh;
    gap: 25px;
  }


}

/* ── 1536×730 and similar wide-short laptops ── */
@media (max-width:1599px) and (max-height:750px) {

  .contact-section {
    height: 100vh;
    overflow: hidden;
  }

  .contact-container {
    width: 84%;
    height: 89vh;
    gap: 20px;
    max-width: 1320px;
  }

  .contact-content {
    padding-top: 18px;
    margin-top: 0;
  }

  .contact-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-top: 27px;
  }

  .contact-content p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .contact-image {
    height: auto;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .contact-image img {
    width: 67%;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: -46px;
    margin-left: 3px;
  }

  /* Grid: fields span full width; captcha (col 1) + button (col 2) share last row */
  .contact-right form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
  }

  .contact-right form>.field {
    grid-column: 1 / -1;
    gap: 2px;
  }

  .field label {
    font-size: 15px;
  }

  .field input {
    height: 50px;
    padding-left: 50px;
    font-size: 16px;
  }

  .field-message textarea {
    height: 100px;
    padding-left: 50px;
    font-size: 17px;
    padding-top: 10px;
  }

  .input-wrapper::after {
    left: 62px;
    top: 8px;
    bottom: 8px;
  }

  .field-message .input-wrapper::after {
    top: 8px;
    height: calc(100% - 16px);
  }

  .field-icon {
    left: 16px;
    width: 26px;
    height: 24px;
  }

  /* Captcha: column 1 of the last row */
  .captcha {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    width: 300px;
  }

  .captcha img {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
  }

  .captcha input {
    height: 74px;
    width: 100%;
    flex: 1 1 0;
    padding: 8px 10px;
    font-size: 14px;
  }

  /* Button: column 2 of the last row, beside captcha */
  .contact-form-btn {
    grid-column: 2;
    height: 50px;
    font-size: 15px;
    margin-top: 0;
    width: 200px;
    align-self: center;
    padding: 0 16px;
    margin-right: 86px;
  }

}

@media (min-width:1279px)and (max-width:1299px) and (max-height:800px) {

  .contact-section {
    height: 100vh;
    overflow: hidden;
  }

  .contact-container {
    width: 87%;
    height: 75vh;
    gap: 20px;
    max-width: 1320px;
  }

  .contact-content {
    padding-top: 18px;
    margin-top: 0;
  }

  .contact-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-top: 27px;
  }

  .contact-content p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .contact-left {
    flex: 1;
    max-width: 755px;
    height: 100%;
    background: rgba(102, 102, 102, .2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .contact-right {
    flex: 1.3;
    max-width: 755px;
    height: 100%;
    background: rgba(102, 102, 102, .2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .contact-image {
    height: auto;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .contact-image img {
    width: 99%;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: -18px;
    margin-left: -13px;
  }

  /* Grid: fields span full width; captcha (col 1) + button (col 2) share last row */
  .contact-right form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px 18px;
    align-content: space-between;
  }

  .contact-right form>.field {
    grid-column: 1 / -1;
    gap: 0px;
  }

  .field label {
    font-size: 15px;
  }

  .field input {
    padding-left: 50px;

    font-size: 15px;
  }

  .field-message textarea {
    height: 92px;
    padding-left: 50px;
    font-size: 15px;
    padding-top: 10px;
  }

  .input-wrapper::after {
    left: 62px;
    top: 8px;
    bottom: 8px;
  }

  .field-message .input-wrapper::after {
    top: 0px;
    height: calc(100% - 16px);
  }

  .field-icon {
    left: 16px;
    width: 26px;
    height: 24px;
  }

  /* Captcha: column 1 of the last row */
  .captcha {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    width: 300px;
  }

  .captcha img {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
  }

  .captcha input {
    height: 78px;
    width: 100%;
    flex: 1 1 0;
    padding: 8px 10px;
    font-size: 14px;
  }

  /* Button: column 2 of the last row, beside captcha */
  .contact-form-btn {
    grid-column: 2;
    height: 53px;
    font-size: 16px;
    margin-top: 0;
    width: 200px;
    align-self: center;
    padding: 0 16px;
    margin-right: 86px;
  }

}

/* ── 1280×551 and similar very short desktop viewports ── */



@media (max-height: 600px) {

  .contact-section {
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
    background: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .contact-container {
    height: 83vh !important;
    gap: 15px !important;
    width: 82% !important;
    max-width: 1320px !important;
  }

  .contact-left {
    flex: 0.9 !important;
  }

  .contact-right {
    flex: 1.2 !important;
  }

  .contact-content {
    padding-top: 10px !important;
  }

  .contact-content h2 {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-top: 6px !important;
  }

  .contact-content p {
    margin-top: 6px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .contact-image {
    height: auto !important;
    flex: 1 !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  .contact-image img {
    width: 84% !important;
    max-height: 95% !important;
    margin-bottom: 0px !important;
  }

  /* Grid: fields span full width; captcha (col 1) + button (col 2) share last row */
  .contact-right form {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 20px !important;
  }

  .contact-right form>.field {
    grid-column: 1 / -1 !important;
    gap: 2px !important;
  }

  .field label {
    font-size: 13px !important;
  }

  .field input {
    height: 34px !important;
    padding-left: 42px !important;
    font-size: 12px !important;
  }

  .field-message textarea {
    height: 45px !important;
    padding-left: 43px !important;
    font-size: 12px !important;
    padding-top: 13px !important;
  }

  .field-icon {
    width: 24px !important;
    height: 22px !important;
    left: 12px !important;
  }

  .input-wrapper::after {
    left: 46px !important;
    top: 6px !important;
    bottom: 6px !important;
  }

  .field-message .input-wrapper::after {
    top: 6px !important;
    height: calc(100% - 12px) !important;
  }

  /* Captcha: column 1 of last row */
  .captcha {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
    max-width: 300px !important;
  }

  .captcha img {
    flex-shrink: 0 !important;
    width: 26px !important;
    height: 26px !important;
  }

  .captcha input {
    height: 74px !important;
    width: 100% !important;
    flex: 1 1 0 !important;
    padding: 6px 8px !important;
    font-size: 12px !important;
  }

  /* Button: column 2 of last row, beside the captcha */
  .contact-form-btn {
    grid-column: 2 !important;
    height: 44px !important;
    font-size: 13px !important;
    margin-top: 0 !important;
    width: 174px !important;
    align-self: center !important;
    padding: 0 12px !important;
  }
}


@media (min-width:992px) and (max-width:1279px) {

  .contact-container {
    width: 89%;
    height: 88vh;
    gap: 20px;
  }



  .contact-content {
    padding-top: 20px;
    margin-top: -1px;
  }

  .contact-content h2 {
    font-size: 32px;
  }

  .contact-content p {
    margin-top: 15px;
    font-size: 18px;
  }

  .contact-image {
    height: 46%;
  }

  .contact-image img {
    width: 85%;
    height: 104%;
    object-fit: contain;
    margin-bottom: -45px;
  }

  .contact-right form {
    padding: 25px 20px;
    gap: 32px;
  }

  .field label {
    font-size: 18px;
  }

  .field input {
    height: 48px;
    padding-left: 55px;
    font-size: 20px;
  }

  .field-message textarea {
    height: 100px;
    padding-left: 55px;
    font-size: 22px;
  }

  .input-wrapper::after {
    left: 64px;
    top: 10px;
    bottom: 10px;
  }

  .field-message .input-wrapper::after {
    top: 10px;
    height: calc(100% - 20px);
  }

  .field-icon {
    left: 16px;
    width: 30px;
    height: 28px;
  }

  .captcha {
    margin-top: -16px;
  }

  .contact-form-btn {
    height: 47px;
    font-size: 16px;
    width: 262px;
    margin-top: -10px;
  }

}


/* ── 1140×688 and similar wide-short screens (992–1279px wide) ── */
@media (min-width:992px) and (max-width:1200px) and (max-height:750px) {

  .contact-section {
    height: 100vh;
    overflow: hidden;
    padding: 0px 0px 60px 0px;
  }

  .contact-container {
    width: 80%;
    height: 96vh;
    gap: 16px;
  }

  .contact-left {
    flex: 0 0 42% !important;
  }

  .contact-right {
    flex: 0 0 55% !important;
  }

  .contact-content {
    padding-top: 14px;
    margin-top: 0;
  }

  .contact-content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 28px;
  }

  .contact-content p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-image {
    height: auto;
    flex: 1;
    display: flex;
    align-items: flex-end;
  }

  .contact-image img {
    width: 109%;
    height: 166%;
    object-fit: contain;
    margin-bottom: -36px;
    margin-left: -1px;
  }

  .contact-right form {
    padding: 30px 18px;
    gap: 23px;
  }

  .field {
    gap: 3px;
  }

  .field label {
    font-size: 13px;
  }

  .field input {
    height: 50px;
    padding-left: 48px;
    font-size: 14px;
    border-radius: 6px;
  }

  .field-message textarea {
    height: 100px;
    padding-left: 48px;
    font-size: 14px;
    border-radius: 6px;
    padding-top: 10px;
  }

  .input-wrapper::after {
    left: 54px;
    top: 8px;
    bottom: 8px;
  }

  .field-message .input-wrapper::after {
    top: 8px;
    height: calc(100% - 16px);
  }

  .field-icon {
    left: 13px;
    width: 25px;
    height: 23px;
  }

  .contact-form-btn {
    height: 45px;
    font-size: 14px;
    width: 200px;
    margin-top: 2px;
    margin-right: 0 !important;
  }

  .captcha {
    margin-top: 0px;
    width: 280px !important;
  }

}





@media (max-width:991px) {
  .contact-section {
    height: auto !important;
    overflow: visible !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 35px;
  }

  .contact-container {
    /* width: 70%; */
    width: 92%;
    height: auto !important;

    display: flex;
    flex-direction: column;

    justify-content: flex-start !important;

    gap: 0px;
  }




  .contact-left,
  .contact-right {
    flex: 1;
    max-width: 755px;
    height: 100%;
    background: rgba(102, 102, 102, .2);
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;

  }

  /* ---------- LEFT CARD ---------- */



  .contact-left {
    width: 100%;
    height: auto !important;
    flex: none;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    padding-bottom: 20px;
  }

  .contact-content {
    width: 90%;
    padding-top: 18px;
  }

  .contact-content h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 7px;
  }



  .contact-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 10px;
  }

  .contact-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
  }



  /* .contact-image img {
    width: 49%;
    height: 123%;
    object-fit: contain;
  } */


  /* .contact-image img {
    width: 53%;
    height: 126%;
    object-fit: contain;
    margin-bottom: 12px;
  } */


  .contact-image img {
    width: 58%;
    height: 126%;
    object-fit: contain;
    margin-bottom: 18px;
  }


  /* ---------- RIGHT CARD ---------- */



  .contact-right {
    width: 100%;
    height: auto !important;
    flex: none;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .contact-right form {
    height: auto !important;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  .field {
    gap: 0px;
  }

  .field label {
    font-size: 14px;
  }

  .field input {
    height: 44px;
    padding-left: 48px;
    font-size: 16px;
    border-radius: 6px;

  }

  .field-message textarea {
    height: 80px;
    padding-left: 48px;
    font-size: 17px;
    border-radius: 6px;
    padding-top: 10px;
  }

  .input-wrapper::after {
    left: 50px;
    top: 8px;
    bottom: 8px;
  }

  .field-message .input-wrapper::after {
    top: 8px;
    height: calc(100% - 16px);
  }

  .field-icon {
    left: 12px;
    width: 28px;
    height: 26px;
  }

  .captcha {
    margin-top: 2px;
  }

  .contact-form-btn {
    height: 51px;
    font-size: 18px;
    border: 1px solid #2C2C2C;
    background: linear-gradient(101.58deg, #636363 0.97%, #9B9B9B 20.97%, #B1B1B1 37.13%, #E1E1E1 50.61%, #B1B1B1 62.82%, #9B9B9B 76.44%, #636363 100.96%);
    margin-top: 0;
    width: 300px;
  }
}




@media(max-width:991px) and (min-height:1000px) {

  .contact-section {
    height: auto !important;
    overflow: visible !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0px 54px 60px 54px !important;
  }

  .contact-left,
  .contact-right {
    flex: 1;
    max-width: 755px;
    height: 100%;
    background: rgba(102, 102, 102, .2);
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .contact-container {
    width: 71%;
    height: auto !important;

    display: flex;
    flex-direction: column;

    justify-content: flex-start !important;

    gap: 0px;
  }


  /* ---------- LEFT CARD ---------- */



  .contact-left {
    width: 100%;
    height: auto !important;
    flex: none;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    padding-bottom: 20px;
  }

  .contact-content {
    width: 90%;
    padding-top: 18px;
  }

  .contact-content h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 7px;
  }



  .contact-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 10px;
  }

  .contact-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
  }



  .contact-image img {
    width: 67%;
    height: 123%;
    object-fit: contain;
  }


  /* ---------- RIGHT CARD ---------- */



  .contact-right {
    width: 100%;
    height: auto !important;
    flex: none;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .contact-right form {
    height: auto !important;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  .field {
    gap: 5px;
  }

  .field label {
    font-size: 14px;
  }

  .field input {
    height: 44px;
    padding-left: 48px;
    font-size: 16px;
    border-radius: 6px;
  }

  .field-message textarea {
    height: 80px;
    padding-left: 48px;
    font-size: 18px;
    border-radius: 6px;
  }

  .input-wrapper::after {
    left: 50px;
    top: 8px;
    bottom: 8px;
  }

  .field-message .input-wrapper::after {
    top: 8px;
    height: calc(100% - 16px);
  }

  .field-icon {
    left: 12px;
    width: 28px;
    height: 26px;
  }

  .captcha {
    margin-top: 2px;
  }

  .contact-form-btn {
    height: 51px;
    font-size: 18px;
    border: 1px solid #2C2C2C;
    background: linear-gradient(101.58deg, #636363 0.97%, #9B9B9B 20.97%, #B1B1B1 37.13%, #E1E1E1 50.61%, #B1B1B1 62.82%, #9B9B9B 76.44%, #636363 100.96%);
    margin-top: 0;
    width: 300px;
  }


}

@media (max-width:780px) {

  /* .contact-section {
    height: 113vh;
    overflow: hidden;
    margin-top: -70px;
    margin-bottom: 15px;
  } */

  .contact-section {
    height: 1142px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .contact-container {
    width: 74.5%;
    height: 99vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
  }

  .contact-left {
    height: auto;
  }

  .contact-right {
    height: auto;
  }

  .contact-content h2 {
    font-size: 22px;
    margin-top: 7px;
  }

  .contact-content p {
    font-size: 16px;
  }

  /* .contact-image img {
    width: 36%;
    height: 100%;
    object-fit: contain;
  } */


  .contact-image img {
    width: 60%;
    height: 118%;
    object-fit: contain;
    margin-bottom: -13px;
  }




  /* Grid: fields full-width; captcha (col 1, fixed 300px) + button (col 2) share last row */
  .contact-right form {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 10px;
  }

  .contact-right form>.field {
    grid-column: 1 / -1;
  }

  .field input {
    height: 44px;
    padding-left: 46px;
    font-size: 17px;
  }

  .field-message textarea {
    height: 80px;
    padding-left: 47px;
    font-size: 18px;
  }

  .input-wrapper::after {
    left: 52px;
    top: 8px;
    bottom: 8px;
  }

  .field-message .input-wrapper::after {
    top: 8px;
    height: calc(100% - 16px);
  }

  .field-icon {
    left: 12px;
    width: 28px;
    height: 26px;
  }

  /* Captcha: column 1, fixed 300px × 78px as specified */
  .captcha {
    grid-column: 1;
    display: flex;
    align-items: center;
    width: 300px;
    height: 78px;
    margin-top: 0;
  }

  .captcha input {
    width: 90%;
    height: 100%;
    padding: 8px 10px;
    font-size: 14px;
  }

  /* Button: column 2, stretches to fill remaining space beside the captcha */
  .contact-form-btn {
    grid-column: 2;
    height: 50px;
    font-size: 16px;
    width: 100%;
    align-self: center;
    margin-top: 0;
    padding: 0 12px;
  }
}



@media (max-width:576px),
(max-width:576px) and (max-height:800px),
(max-width:576px) and (max-height:750px),
(max-width:576px) and (max-height:700px) {

  .contact-section {
    height: auto !important;
    padding: 40px 0;
    overflow: visible !important;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .contact-container {
    position: relative;
    width: 93%;
    max-width: 410px;
    height: 1142px !important;
    background: rgba(102, 102, 102, .2);
    border-radius: 12px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }

  /* .contact-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 699px;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
  } */


  .contact-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 556px !important;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
  }




  .contact-content {
    position: absolute;
    width: 88%;
    max-width: 379px;
    height: 231px;
    left: 5%;
    top: 18px;
    margin: 0 !important;
    padding: 0 !important;
  }

  .contact-content h2 {
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 15px;
  }

  .mobile-br {
    display: inline !important;
  }

  .desktop-br {
    display: none !important;
  }

  .contact-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
  }

  /* .contact-image {
    position: absolute;
    width: 85%;
    max-width: 367px;
    height: 459px;
    left: 5%;
    top: 240px;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  } */


  .contact-image {
    position: absolute;
    width: 85%;
    max-width: 367px;
    height: 459px;
    left: 5%;
    top: 115px;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }



  .contact-image img {
    width: 130% !important;
    height: 86% !important;
    object-fit: contain !important;
    object-position: left bottom !important;
    margin-left: -22px !important;
  }

  .contact-right {
    position: absolute;
    width: 360px;
    max-width: 90%;
    height: 629px !important;
    left: 50%;
    transform: translateX(-50%);
    top: 507px;
    background: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .contact-right form {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 20px 0px !important;
    gap: 16px !important;
    justify-content: flex-start !important;
    grid-template-columns: none !important;
  }

  .contact-right form>.field {
    grid-column: unset !important;
    width: 100% !important;
  }

  .field {
    gap: 1px !important;
  }

  /* Captcha: 300px × 78px, centered on its own row */
  .captcha {
    grid-column: unset !important;
    width: 300px !important;
    height: 78px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .captcha input {
    width: 100% !important;
    height: 100% !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  /* Button: centered on its own row, below captcha */
  .contact-form-btn {
    grid-column: unset !important;
    height: 56px !important;
    font-size: 15px !important;
    width: 165px !important;
    margin: 0 auto !important;
    align-self: center !important;
    display: block !important;
    padding: 8px !important;
  }

}