/* CONTACT PAGE */

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */

.contact-hero {
  text-align: center;
  padding: 45px 0 25px;
  overflow: hidden;
  position: relative;
}

.contact-hero h1 {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 2;
}

.contact-line {
  width: 100vw;
  height: 8px;
  background-color: var(--brand-green-light);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 2px 0 4px;
  z-index: 1;
}

.contact-hero p {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* MAIN */

.contact-page {
  padding: 0 0 110px;
}

/* CONTACT CARDS */

.contact-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin: 0 auto 70px;
  padding: 35px 0;
  max-width: 1000px;
}

/* GRADIENT BEHIND CARDS */

.contact-cards::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 240px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--brand-green) 18%, transparent) 25%,
    color-mix(in srgb, var(--brand-green) 35%, transparent) 50%,
    color-mix(in srgb, var(--brand-green) 18%, transparent) 75%,
    transparent 100%
  );

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  filter: blur(40px);
  z-index: 0;
}

.contact-cards * {
  position: relative;
  z-index: 1;
}

.contact-card {
  min-height: 150px;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  padding: 35px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 8px 18px color-mix(in srgb, var(--brand-green) 30%, transparent),
    0 3px 8px rgba(0, 0, 0, 0.08);

  transition: 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 14px 30px color-mix(in srgb, var(--brand-green) 40%, transparent),
    0 6px 12px rgba(0, 0, 0, 0.12);
}
.contact-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  display: block;

  color: var(--brand-green); /* 👈 this makes SVG green */
}

.contact-card p {
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}


/* FULL WIDTH DIVIDER */

.contact-rule {
  width: 100vw;
  height: 3px;
  background-color: var(--brand-green-light);

  position: relative;
  left: 50%;
  transform: translateX(-50%);

  margin: 0 0 65px;
}

/* FORM */

.contact-form label {
  display: block;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--brand-green);
  background-color: #fff;
  padding: 14px;
  font-size: 18px;
  margin-bottom: 36px;
  font-family: inherit;
}

.contact-form input {
  height: 55px;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-green) 20%, transparent);
}

/* BUTTON DIVIDER */

.form-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.form-divider span {
  height: 2px;
  background-color: var(--brand-green-light);
}

.form-divider button {
  border: none;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.form-divider button:hover {
  background-color: var(--brand-green);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 360px;
    padding: 35px 0;
  }

  .contact-card p {
    font-size: 24px;
  }

  .contact-hero p {
    font-size: 19px;
    padding: 0 20px;
  }

  .form-divider {
    grid-template-columns: 1fr;
  }

  .form-divider span {
    display: none;
  }
}

.contact-card {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}
.contact-card,
.contact-card:visited,
.contact-card:active {
  color: #000;
  text-decoration: none;
}
.success-message {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;

  font-size: 22px;
  font-weight: 500;
}
/* =========================
   AIR & SPACE MUSEUM
========================= */

.air-top-grid {
  max-width: 1100px;
  margin: 0 auto 85px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: stretch;
}

.air-top-grid img {
  width: 100%;
  display: block;
}

.air-top-grid img:first-child {
  aspect-ratio: auto;
  object-fit: contain;
}

.air-top-grid img:last-child {
  aspect-ratio: auto;
  object-fit: cover;
}

.air-grid-two {
  max-width: 1100px;
  margin: 0 auto 90px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.air-grid-two img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.air-phone-grid {
  max-width: 900px;
  margin: 0 auto 120px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  padding: 0 20px;
}

.air-phone-grid img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;

  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
}

/* MOBILE */

@media (max-width: 768px) {

  .air-top-grid,
  .air-grid-two,
  .air-phone-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .air-phone-grid {
    margin-bottom: 80px;
  }

  .air-phone-grid img {
    max-width: 240px;
  }

}
.success-message {
  margin-bottom: 25px;
  color: #2f6f5e;
  font-size: 28px;
  font-family: "Big Shoulders Display", Arial, sans-serif;
}