.contactBanner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact {
  box-shadow: 0 25px 50px var(--shadow-strong);
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

form {
  margin-top: 40px;
  padding: 20px;
}

label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-strong);
  margin-bottom: 8px;
  display: block;
}

label span {
  color: #ff6b6b;
}

.common-input-wrapper input[type="text"],
.common-input-wrapper [type="email"],
.common-input-wrapper [type="number"],
.common-input-wrapper select,
.common-input-wrapper #elp {
  width: 100%;
  padding: 16px 20px;
  margin-top: 8px;
  margin-bottom: 24px;
  display: inline-block;
  border: 2px solid var(--border);
  border-radius: 12px;
  box-sizing: border-box;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.common-input-wrapper input:focus,
.common-input-wrapper [type="email"]:focus,
.common-input-wrapper [type="number"]:focus,
.common-input-wrapper select:focus,
.common-input-wrapper #elp:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  outline: none;
  background: var(--bg-card);
}

textarea {
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text);
  padding: 16px 20px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  outline: none;
  background: var(--bg-card);
}

input[type="submit"] {
  width: 100%;
  font-family: "Montserrat";
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
  color: #0b0f13;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(215, 166, 97, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(215, 166, 97, 0.4);
}

#elp {
  background-image: url("/Assets/icon/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 16px;
  /* Adjust the size of the icon as needed */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media only screen and (max-width: 1020px) {
  .contactBanner {
    background-image: none;
  }

  label {
    font-size: 16px;
  }
}

/* Placeholder and focus styles for premium feel */
.common-input-wrapper input::placeholder,
.common-input-wrapper [type="email"]::placeholder,
.common-input-wrapper [type="number"]::placeholder,
.common-input-wrapper select::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.common-input-wrapper input:focus,
.common-input-wrapper [type="email"]:focus,
.common-input-wrapper [type="number"]:focus,
.common-input-wrapper select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 166, 97, 0.2);
}


/* Success Checkmark Animation */
    .success-checkmark {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: block;
      stroke-width: 2;
      stroke: #4ade80;
      stroke-miterlimit: 10;
      box-shadow: inset 0px 0px 0px #4ade80;
      animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
      position: relative;
    }

    .success-checkmark .check-icon {
      width: 56px;
      height: 56px;
      position: absolute;
      left: 12px;
      top: 12px;
      background: #4ade80;
      border-radius: 50%;
    }

    .success-checkmark .check-icon::after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3));
      border-radius: 50%;
      animation: shine 1s ease-in-out 1.2s;
    }

    .success-checkmark .icon-line {
      height: 3px;
      background-color: white;
      display: block;
      border-radius: 2px;
      position: absolute;
      z-index: 10;
    }

    .success-checkmark .icon-line.line-tip {
      top: 46px;
      left: 14px;
      width: 25px;
      transform: rotate(45deg);
      animation: icon-line-tip 0.75s;
    }

    .success-checkmark .icon-line.line-long {
      top: 38px;
      right: 8px;
      width: 47px;
      transform: rotate(-45deg);
      animation: icon-line-long 0.75s;
    }

    /* Error Animation */
    .error-animation {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #ef4444;
      position: relative;
      animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both, pulse 1.5s infinite;
    }

    .error-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .error-line {
      height: 4px;
      background-color: white;
      display: block;
      border-radius: 2px;
      position: absolute;
      width: 40px;
    }

    .error-line-1 {
      transform: rotate(45deg);
      animation: error-line-animate 0.5s ease-in-out 0.3s forwards;
    }

    .error-line-2 {
      transform: rotate(-45deg);
      animation: error-line-animate 0.5s ease-in-out 0.5s forwards;
    }

    /* Loading Spinner */
    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #f3f4f6;
      border-top: 4px solid #D7A661;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto;
    }

    /* Keyframes */
    @keyframes fill {
      100% { box-shadow: inset 0px 0px 0px 30px #4ade80; }
    }

    @keyframes scale {
      0%, 100% { transform: none; }
      50% { transform: scale3d(1.1, 1.1, 1); }
    }

    @keyframes icon-line-tip {
      0% { width: 0; left: 1px; top: 19px; }
      54% { width: 0; left: 1px; top: 19px; }
      70% { width: 50px; left: -8px; top: 37px; }
      84% { width: 17px; left: 21px; top: 48px; }
      100% { width: 25px; left: 14px; top: 45px; }
    }

    @keyframes icon-line-long {
      0% { width: 0; right: 46px; top: 54px; }
      65% { width: 0; right: 46px; top: 54px; }
      84% { width: 55px; right: 0px; top: 35px; }
      100% { width: 47px; right: 8px; top: 38px; }
    }

    @keyframes shine {
      0% { opacity: 0; transform: rotate(0deg); }
      50% { opacity: 1; }
      100% { opacity: 0; transform: rotate(360deg); }
    }

    @keyframes shake {
      10%, 90% { transform: translate3d(-1px, 0, 0); }
      20%, 80% { transform: translate3d(2px, 0, 0); }
      30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
      40%, 60% { transform: translate3d(4px, 0, 0); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @keyframes error-line-animate {
      0% { width: 0; }
      100% { width: 40px; }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Modal Animation */
    .modal-enter {
      animation: modalFadeIn 0.5s ease-out forwards;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: scale(0.5) rotate(10deg);
      }
      to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }