body {
  margin: 0;
}

/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





/*---------Contact Section-----------*/

.nav-cta { 
    display: none; 
}




.contact-hero-section {
  padding-top: 4em; 
  background-color: black; 
}

.contact-hero-container hr {
  margin: 5px auto; 
}

.line-1 { 
  border: none;
  height: 6px;
  background-color: purple;
  border-radius: 8px;
  width: 5%;
    
} 

.contact-hero-container h2{ 
  text-align: center; 
  color: white;
   
}

.form-sub-title  { 
  font-size: 22px;
  font-weight: 200; 
  padding-top: 2em;
  padding-bottom: 2em;   
}

.contact { 
  font-size: 17px;
  color: white; 
  text-align: center; 
}

.lets-talk { 
  font-size: 40px; 
  padding-top: 1em; 
  text-align: center;
   
}

/*-----------Form-Section---------*/

.form-section {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4em; 
    padding-left: 2em;
    padding-right: 2em;
    
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%; 
    
}

.form-container h2 {
  color: white; 
  padding-top: 1em;
  padding-bottom: 1em; 
  font-weight: 300;
  text-align: center;
}



#bookingForm {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;

    background: purple;
    padding: 3em;
    border-radius: 12px;
} 




/*---Input Fields-------*/

#bookingForm input,
#bookingForm select {
    
    height: 56px;
    padding: 0 15px;
    font-size: 1rem;
    font-family: inherit;

    background: #ffffff;
    color: black;

    border: 1px solid #d9d9d9;
    border-radius: 10px;

    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

#bookingForm select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


#bookingForm input:focus,
#bookingForm select:focus {
    border-color: #2E8BFF;
    box-shadow: 0 0 0 4px rgba(46, 139, 255, 0.15);
}

#bookingForm input::placeholder {
    color: black;
}

#step1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/*-------Form Buttons---------*/

#bookingForm button {
    width: 100%;
    height: 56px;
    padding: 18px 24px;

    background: white;
    color: purple;

    border: none;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 600;
    font-family: inherit;

    cursor: pointer;
    transition: all 0.3s ease;
}

#bookingForm button:hover {
    background: white;
    color: purple;
    transform: translateY(-2px);
}


/*-------Consent Text ----------------*/
.consent-section { 
  background-color: black; 
}

.consent-container {
  padding: 2em 4em;
  margin: 0 auto;
  text-align: center;
  
    
}


.consent-text p { 
  font-size: 12px;
  color: gray;
  max-width: 600px;
  margin: 0 auto;
  
}

@media (max-width: 768px) {
  
  .lets-talk { 
  font-size: 30px; 
  padding-top: 1em; 
  text-align: center;
   
}
  
  
