.quote-form-wrapper{
    display: flex;
    align-content: flex-start;
    justify-content: center;
    gap: 80px;
    margin: 0 160px;
    padding: 150px 0;
}

.quote-form-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    height: 780px;
}

.quote-header{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-header h1 {
  width: 100%;
  max-width: 600px;
}

#quote-form{
    font-family: var(--font-montserrat);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.quote-form-image{
    max-width: 840px;
    width: 100%;
    height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.quote-form-image img{
    width: 100%;
    height: 100%;
}

/* quote form */

/* Wrapper */
.custom-select-wrapper {
  display: flex;
  flex-direction: column;
  width: 600px;
  font-family: var(--font-montserrat);
  position: relative;
}

.form-group  {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: var(--font-montserrat);
  position: relative;
}


/* Label */
.custom-select-wrapper label, .form-group label{
  font-size: 16px;
  letter-spacing: 1px;
  color: #9a9a9a;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Container */
.select-container, .form-group input{
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ECEBEA;
  border-radius: 25px;
  border: none;
  overflow: hidden;
  height: 40px;
}

/* Select field */
.select-container select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding: 12px 40px 12px 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* Custom arrow */
.select-container .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
}

.select-container .select-arrow svg {
  width: 16px;
  height: 16px;
  fill: #666;
}

/* Hover + Focus states */
.select-container select:hover {
  background-color: #ececec;
}

.select-container select:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.consent{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .quote-form-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 0 60px;
    padding: 100px 0;
    gap: 60px;
  }

  .quote-form-content {
    align-items: center;
    height: auto;
    gap: 40px;
  }

  .quote-header h1 {
    max-width: 100%;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-select-wrapper,
  .form-group {
    width: 100%;
    max-width: 600px;
  }

  .quote-form-image {
    max-width: 100%;
    height: 500px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .quote-form-wrapper {
    margin: 0 30px;
    padding: 60px 0;
    gap: 40px;
  }

  .quote-header h1 {
    font-size: 28px;
    text-align: center;
  }

  .quote-header p{
    font-size: 20px !important;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .custom-select-wrapper,
  .form-group {
    width: 100%;
  }

  .quote-form-image {
    height: 360px;
  }
}

