* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    font-family:"Jost";
}

/* ===== Layout ===== */
.contact-us-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  background: #fce7c9;
}

.contant-us-outer-wrapper {
  display: flex;
  max-width: 880px;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  position: relative;
}

/* ===== Heading ===== */
.contact-us-heading {
  color: #000000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

/* ===== Form ===== */
.contant-us-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contant-us-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.contact-us-form {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-us-form .field-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.contact-us-form .field-wrap input.invalid {
  border-color: #b91c1c;
}

.field-error {
  color: #b91c1c;
  font-size: 13px;
  display: block;
}

.field-error:empty {
  display: none;
}

.consent-error-wrap {
  margin-top: 2px;
  min-height: 0;
}

.consent-error-wrap .field-error.show,
.consent-error-wrap .field-error:not(:empty) {
  display: block !important;
  visibility: visible !important;
  color: #b91c1c;
}

.contact-us-form input {
  flex: 1;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid #0000002e;
  background: none;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease;
}

/* Placeholder */
.contact-us-form input::placeholder {
  color: #0000007e;
  font-weight: 600;
}

/* Focus */
.contact-us-form input:focus {
  border-color: #000000;
}

/* ===== Checkbox ===== */
.check-box-wrapper {
  display: flex;
  align-items: start;
  gap: 12px;
}

.checkbox {
  cursor: pointer;
  color: #000;
}

.checkbox input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.6);
  position: relative;
  flex-shrink: 0;
}

.checkbox input:checked + .checkmark {
  background: #000;
}
.checkmark svg {
  display: none;
}
.checkbox input:checked + .checkmark svg {
  width: 100%;
  display: block;
}

.checkbox-text {
  line-height: 1.4;
  font-size: 15px;
  color: #000000c0;
  font-weight: 500;
}

/* ===== Slide Button ===== */
.contact-slide-btn {
  max-width: max-content;
  background: #753f33;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* sliding text wrapper */
.contact-btn-text {
  display: block;
  position: relative;
  transition: transform 0.35s ease;
}

/* both text lines */
.contact-btn-text span {
  display: flex;
  padding: 14px 28px;
  align-items: center;
  justify-content: center;
  color: #ffffffe0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* second text hidden below */
.contact-btn-text span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

/* hover animation */
.contact-slide-btn:hover .contact-btn-text {
  transform: translateY(-100%);
}

/* ===== Thank You Popup ===== */

/* Overlay */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.thankyou-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal */
.thankyou-modal {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  width: 90%;
  margin-top: 20vh;
  max-width: 420px;
  text-align: center;
  position: relative;
  animation: scaleIn 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

@keyframes scaleIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-modal .thank-you-heading {
  font-size: 28px;
  margin-bottom: 6px;
  color: #753f33;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 18px;
  color: #444;
}

/* Coupon */
.coupon-box {
  background: #f7ecea;
  border: 2px dashed #753f33;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.coupon-box .coupon-text,
.coupon-box .coupon-code {
  font-size: 14px;
  color: #666;
}

/* Note */
.thankyou-overlay .note {
  font-size: 15px;
  color: #555;
  margin-bottom: 22px;
}

/* Buttons */
.thankyou-overlay .ok-btn {
  background: #753f33;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
}

.thankyou-overlay .close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

.close-btn svg {
  width: 20px;
  height: 20px;
}

/* Form-level error message */
.contact-offer-error {
  color: #b91c1c;
  font-size: 14px;
  margin-top: 8px;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  display: none;
}

.contact-offer-error:not(:empty) {
  display: block !important;
}

/* Sold-out message - friendlier style, multi-line */
.contact-offer-error.sold-out {
  color: #78350f;
  background: #fef3c7;
  border-color: #fcd34d;
  white-space: pre-line;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .contact-us-form {
    flex-direction: column;
  }

  .contact-slide-btn {
    max-width: 100%;
  }
}

.contant-us-form-wrapper{
  gap: 0px;
}
.contact-us-form{
  margin-bottom: 22px;
}
.contact-slide-btn{
  margin-top: 26px;
}
.thankyou-overlay{
  background: #fce7c9a3;
}

@media (max-width: 767px) {
  .contact-us-box{
    padding: 0px;
  }
}
.thankyou-overlay .ok-btn {
  background: #753f33;
  color: #ffffffe0;
  border: none;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
   letter-spacing: 1px;
   text-transform: uppercase;
}

.coupon-box{
  display: flex;
justify-content: center;
align-items: center;
}


.coupon-box .coupon-text, .coupon-box .coupon-code{
  display: block;
  text-align: center;
}
 
.coupon-box .coupon-code{
  font-size: 24px;
  margin-top: 10px;
  color: #753f33;
  line-height: 1.3;
 
}
.thankyou-modal{
  max-height: 400px;
  overflow-y: auto;
}
 
 