body{
    margin:0;
    padding:0;
    font-family:"Contrail One", sans-serif;
    background:rgb(235,235,235);
    color:black;
}
.contact-hero{
    min-height:48vh;
    background:linear-gradient(150deg, rgb(0,0,0) 0%, rgb(35,35,35) 65%, rgb(105,105,105) 100%);
    color:white;
    display:flex;
    align-items:center;
    padding:70px 8%;
}
.contact-hero div{
    max-width:760px;
}
.eyebrow{
    margin:0 0 12px 0;
    letter-spacing:4px;
    text-transform:uppercase;
    color:rgb(205,205,205);
    font-size:15px;
}
.eyebrow.dark{
    color:rgb(85,85,85);
}
.contact-hero h1{
    font-size:64px;
    margin:0;
    line-height:1;
}
.contact-hero p{
    font-size:22px;
    color:rgb(220,220,220);
}
.contact-section{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:35px;
    padding:80px 8%;
}
.contact-info,
.contact-form{
    background:white;
    padding:42px;
    box-shadow:0 14px 35px rgba(0,0,0,0.1);
}
.contact-info h2,
.contact-form h2{
    font-size:42px;
    margin:0 0 15px 0;
}
.contact-info p{
    font-size:18px;
    line-height:1.5;
    color:rgb(70,70,70);
}
.info-card{
    border-top:1px solid rgb(215,215,215);
    padding:22px 0;
}
.info-card h3{
    font-size:25px;
    margin:0 0 8px 0;
}
.info-card p{
    margin:5px 0;
}
.info-card a{
    margin:5px 0;
    font-size:18px;
    line-height:1.5;
    color:rgb(70,70,70);
    text-decoration: none;

}
.contact-form{
    background:black;
    color:white;
}
.contact-form h2{
    color:white;
}
.contact-form label{
    display:block;
    margin:18px 0 8px 0;
    font-size:18px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    box-sizing:border-box;
    padding:14px;
    border:1px solid rgb(100,100,100);
    background:rgb(245,245,245);
    font-family:"Contrail One", sans-serif;
    font-size:17px;
    outline:none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:white;
    box-shadow:0 0 0 3px rgba(255,255,255,0.18);
}
.contact-form button{
    width:100%;
    margin-top:25px;
    background:white;
    color:black;
    border:1px solid white;
    padding:16px;
    font-size:20px;
    font-family:"Contrail One", sans-serif;
    transition:0.4s ease;
}
.contact-form button:hover{
    background:black;
    color:white;
    cursor:pointer;
}
.form-note{
    color:rgb(200,200,200);
    font-size:15px;
    line-height:1.4;
}
.locations-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
}
.locations-section article{
    min-height:260px;
    padding:50px 8%;
    background:rgb(25,25,25);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.locations-section article:nth-child(2){
    background:rgb(70,70,70);
}
.locations-section h3{
    font-size:34px;
    margin:0 0 12px 0;
}
.locations-section p{
    color:rgb(225,225,225);
    font-size:19px;
}
.locations-section a{
    width:max-content;
    text-decoration:none;
    background:white;
    color:black;
    border:1px solid white;
    padding:13px 22px;
    margin-top:10px;
    transition:0.4s ease;
}
.locations-section a:hover{
    background:black;
    color:white;
}
/* Thank you card */
.thank-you-page {
  min-height: 80vh;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.95)),
    url("/images/mar080623_944_DimitriusSouza_Seminar_Upper.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.thank-you-hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 20px;
  box-sizing: border-box;
}

.thank-you-card {
  width: min(900px, 100%);
  background: rgba(245, 245, 245, 0.96);
  color: black;
  border: 2px solid white;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  padding: clamp(28px, 5vw, 60px);
  text-align: center;
  animation: cardReveal 0.9s ease forwards;
}

.small-heading {
  display: inline-block;
  margin: 0 0 15px 0;
  padding: 8px 16px;
  background-color: black;
  color: white;
  border: 1px solid black;
  letter-spacing: 1px;
  font-size: 16px;
}

.thank-you-card h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1;
}

.main-message {
  max-width: 720px;
  margin: 22px auto 30px auto;
  color: #333;
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1.35;
}

.confirmation-box {
  margin: 30px auto;
  padding: 26px;
  background-color: #111;
  color: white;
  border: 1px solid #444;
}

.confirmation-box h2 {
  margin: 0 0 22px 0;
  font-size: clamp(24px, 4vw, 38px);
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  background-color: #232323;
  border: 1px solid #555;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 130px;
}

.step span {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: black;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 12px;
}

.step p {
  margin: 0;
  color: #e8e8e8;
  font-size: 18px;
  line-height: 1.3;
}

.note {
  margin: 15px 0 30px 0;
  color: #555;
  font-size: 18px;
}

.thank-you-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.thank-you-buttons a {
  display: inline-block;
  min-width: 150px;
  text-decoration: none;
  color: white;
  background-color: black;
  border: 1px solid black;
  padding: 15px 22px;
  font-size: 19px;
  transition: 0.4s ease;
}

.thank-you-buttons a:hover {
  background-color: white;
  color: black;
}

@keyframes cardReveal {
  from {
    transform: translateY(35px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media(max-width:920px){
    .contact-section,
    .locations-section{
        grid-template-columns:1fr;
    }
}
@media(max-width:600px){
    .contact-hero h1{font-size:42px;}
    .contact-section{
        padding:55px 6%;
    }
    .contact-info,
    .contact-form{
        padding:28px;
    }
  .thank-you-hero {
    padding: 45px 14px;
  }

  .thank-you-card {
    padding: 28px 18px;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .thank-you-buttons a {
    width: 100%;
    box-sizing: border-box;
  }
}
