:root {
  --orange: #fca311;
  --dark-blue: #14213D;
  --light-blue: #007ce0;
  --black: #000;
  --white: #fff;
  --grey: #e5e5e5;
}

#main-header {
	background: url("../../assets/images/backgrounds/header-background.png") no-repeat fixed center;
	background-size: cover;
    height: 50vh; /* Full viewport height */
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 15px 0;
} 

.contact-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .map-container {
    width: 60%;
    height: 100vh;
  }

  .map-container iframe {
    width: 100%;
    height: 100vh;
    border: none;
  }

  .form-container {
    width: 35%;
    background: #222f3e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-right: -5%;
    z-index: 10;
  }

  .form-container h2 {
    margin-bottom: 20px;
    color: white;
  }

  .form-container .form-group {
    position: relative;
    margin-bottom: 20px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 10px;
    font-size: 16px;
    color: black;
    border: 1px solid #ddd;
    border-radius: 15px;
    background-color: #eee;
    box-shadow: 5.5px 4.5px 0 #FCA311;
  }

  .form-container textarea {
    resize: none;
  }

  .form-container input:focus,
  .form-container textarea:focus {
    outline: none;
    box-shadow: 5.5px 7px 0 #FCA311;
  }

  .form-container label {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease;
    /* background-color: #ffffff; Match form background */
    padding: 0 5px;
  }

  .form-container input:focus + label,
  .form-container input:not(:placeholder-shown) + label,
  .form-container textarea:focus + label,
  .form-container textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 14px;
    color: #FCA311;
  }

  button {
    font-family: inherit;
    font-size: 20px;
    background: royalblue;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
  }

  button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }

  button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }

  button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }

  button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
  }

  button:hover span {
    transform: translateX(5em);
  }

  button:active {
    transform: scale(0.95);
  }

  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
    to {
      transform: translateY(-0.1em);
    }
  }

  @media (min-width: 768px) {
    .map-container iframe {
      border-radius: 23px 0 0 23px;
    }
  }

  @media (max-width: 768px) {
    .form-container {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .form-container {
      padding: 20px;
    }
    .form-container h2 {
      font-size: 1.5em;
    }
    .map-container {
      height: 40vh;
    }
  }

  .form-row {
display: flex;
gap: 20px; /* Space between First Name and Last Name */
}

.form-row .form-group {
flex: 1; /* Ensure equal width for both inputs */
}