body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

.contact-us-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* padding: 60px 20px; */
  padding: 190px 20px 100px 20px;
  flex-wrap: wrap;
}

.contact-us-section .contact-text {
  flex: 1 1 350px;
  max-width: 800px;
}

.contact-us-section .contact-text h5 {
  color: #ff7b00;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-us-section .contact-text .ready-text {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1;
  /* text-transform: capitalize; */
}
.contact-us-section .contact-text .ready-text .colored-text {
  font-size: 80px;
  font-weight: 700;
  margin: 0;
  color: #fc791a;
  /* text-transform: capitalize; */
}

.contact-us-section .contact-text h2 span {
  color: #ff7b00;
}

.contact-us-section .contact-text .our-catering-text {
  margin-top: 24px;
  font-size: 16px;
  /* line-height: 1.6; */
  color: #fff;
  max-width: 456px;
}

.contact-us-section .contact-form {
  flex: 1 1 350px;
  max-width: 800px;
  background: #1a1a1a;
  padding: 98px 36px;
  border-radius: 40px;

  /* box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3); */
}

.gradient-glow {
  background: #111; /* inner background */
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.gradient-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 123, 0, 0.7),   /* orange with opacity */
    rgba(255, 0, 170, 0.7),   /* pink with opacity */
    rgba(0, 123, 255, 0.7)    /* blue with opacity */
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}


.contact-us-section .contact-form label {
      display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #fff;
    line-height: 1;
}

.contact-us-section .contact-form input,
.contact-us-section .contact-form select,
.contact-us-section .contact-form textarea {
      width: 100%;
    /* padding: 10px; */
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    /* margin-bottom: 40px; */
    font-size: 16px;
    outline: none;
    height: 50px;
}

.contact-us-section .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-us-section .form-row .form-group {
  flex: 1;
  min-width: 150px;
}

.contact-us-section .form-row .form-group  select option {
    color: #000;
}

.contact-us-section .radio-wrapper {
    display: flex;
        align-items: flex-end !important;
    /* justify-content: space-between; */
    gap: 40px;
    height: 40px;
    /* margin-bottom: 40px; */
}

.contact-us-section .about-us-text {
  font-size: 24px;
  color: #fc791a !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}
.contact-us-section .about-us-text img {
  width: 20px;
  height: auto;
}

.contact-us-section .radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-us-section input#btnSubmit {
    background: #ff7b00;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease;
    float: right;
    margin-top: 20px;
}

    .contact-us-section input#btnSubmit:hover {
        background: #e56f00;
    }
.error-message {
  visibility: hidden;
  color: red;
  height: 30px;
  font-size: 12px;
}
.error-message.show {
  visibility: visible;
}
/* Responsive */

@media (min-width: 991px) and (max-width: 1300px) {
.contact-us-section .form-row.mobile-responsive {
    display: flex;
    flex-direction: column;
}
}

@media (min-width: 1200.01px) {
    .contact-us-section {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1200px) {
    .contact-us-section {
        gap: 30px;
            padding: 120px 30px 100px 30px;
    }
.contact-us-section .about-us-text {
    font-size: 20px;
    gap: 20px;
}
.contact-us-section .contact-text .ready-text {
    font-size: 35px; 
}
.contact-us-section .contact-text .ready-text .colored-text{
    font-size: 55px;
}
.contact-us-section .contact-form {
    padding: 65px 36px;
    border-radius: 40px;
    max-width: 100%;
}
}

@media (max-width: 991px) {
    .contact-us-section .contact-text .ready-text {
        font-size: 30px;
    }
    .contact-us-section .contact-text {
        flex: 1 1 0;
    }
    .contact-us-section .contact-text .ready-text .colored-text {
    font-size: 45px;
    }

    .contact-us-section {
    padding: 100px 50px 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: normal;
    }
}

@media (max-width: 768px) {
  .contact-us-section {
    flex-direction: column;
    /* text-align: center; */
    padding: 100px 20px 100px 20px;
  }
  .contact-us-section .form-row {
    flex-direction: column;
  }

  .contact-us-section .contact-form {
    width: 100%;
    padding: 25px;
  }
  .contact-us-section .contact-text .ready-text {
    font-size: 25px;
  }
  .contact-us-section .contact-text .ready-text .colored-text {
    font-size: 40px;
  }

  .contact-us-section .contact-text .our-catering-text {
    font-size: 14px;
  }

  .contact-us-section .about-us-text {
    font-size: 18px;
    gap: 20px;
  }
    .contact-us-section .contact-form input.btnSubmit {
        padding: 8px 20px;
        float: inline-end;
    }

.contact-us-section .contact-text {
  flex-basis: 0;
  width: 100%;
}
.contact-us-section .contact-form input, .contact-us-section .contact-form select, .contact-us-section .contact-form textarea {
    height: 40px;
}
.contact-us-section .contact-form label {
    font-size: 14px;
}
}


.contact-us-section  .form-group input[type="radio"] {
  display: none; /* hide default radio */
}

.contact-us-section  .form-group input[type="radio"] ~ label {
  position: relative;
  padding-left: 28px; /* space for fake circle */
  cursor: pointer;
}

/* default circle */
.contact-us-section  .form-group input[type="radio"] ~ label::before {
  content: "\f111"; /* Font Awesome icon, fallback is circle */
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: transparent;
  transition: all 0.2s ease;
}

/* when checked */
.contact-us-section  .form-group input[type="radio"]:checked ~ label::before {
  border-color: transparent;
  background-color: #fff;
  color: #FC791A; /* orange dot */
}

.captchaControl{
  display: flex;
  justify-content:space-between;
  text-align:center;
}
.refreshImage{
  width:40px;
  height: 40px;
  margin-left:15px;
  margin-right:15px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.enterCodeCap input {
  margin-top: 0.5rem;
}
.enterCodeCap  input::placeholder {
  font-weight: bold;
  opacity: 0.5;
  color: rgb(237, 236, 236);
}
.capImage, .enterCodeCap{
width: 35%;
}
.capImage{
  background-color: #000;
}
 @media(max-width:767px){
            .contact-us-section .contact-text .ready-text .colored-text {
    font-size: 50px !important; 
}
        }