/* CSS BY SUWANSHREE ACHARYA */
/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}

/* ROOT VARIABLES */
:root {
  --blue: #007bff;
  --red: #ff0000;
  --darkRed: #b20000;
  --white: #eaeaea;
  --black: #000000;
  --charcoal: #333333;
  --gold: #fdd017;
  --font-brand: "League Spartan", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-height: 65px;
}

/* GLOBAL STYLES (MOBILE FIRST - SMALL) */

html {
  width: 100%;
  min-width: 400px;
  font-weight: normal;
  font-style: normal;
  background-color: var(--darkRed);
  color: var(--white);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-brand);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-top: 0.2em;
}

body {
  padding-top: var(--header-height);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  font-optical-sizing: auto;
}

em,
i {
  font-style: italic;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

#about {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("/assets/images/smoky-express-hero.png") no-repeat center center/cover;
  height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.25em;
  background-color: var(--darkRed);
  box-shadow: 0 2px 2px var(--black);
}

.mobile-br {
  display: block;
}

header.header--hidden {
  transform: translateY(-100%);
}

header p {
  padding-top: 0.5em;
}

header p a {
  color: var(--white);
  text-decoration: none;
}

header h2 {
  margin-top: 0.2em;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
  margin-right: 1.5em;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

header div .desktop-social {
  display: none;
}

header img {
  height: 2rem;
  pointer-events: none;
}

header div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

h1 {
  font-size: 1.5em;
  font-weight: 800;
  margin-left: 1em;
  color: var(--white);
  line-height: 1.8ch;
  text-shadow:
    -1.5px -1.5px 0 #000,
    1.5px -1.5px 0 #000,
    -1.5px 1.5px 0 #000,
    1.5px 1.5px 0 #000;
}

h1 a {
  text-decoration: none;
  color: var(--white);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

h1 a:hover {
  color: var(--gold);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#b80000, var(--darkRed));
  padding-top: 4rem;
  transform: translateY(-150%);
  transition: transform 0.45s ease;
  z-index: 999;
}

nav.nav--open {
  transform: translateY(0);
}

.mobile-social {
  display: flex;
  gap: 2em;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 1em;
}

.mobile-social a {
  font-size: 1.8em;
  color: var(--white);
  transition: transform 0.3s ease;
}

.mobile-social a:hover {
  transform: scale(1.2);
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-links li {
  margin-top: 1em;
}

.nav-links h2 {
  font-size: 2em;
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  padding-top: 2.5em;
  text-align: center;
}

nav ul {
  display: flex;
  text-transform: uppercase;
}

nav a {
  cursor: default;
  transition: all 0.4s ease-in-out;
}

nav li {
  transition: all 0.5s ease-in-out;
}

.nav-links li:hover {
  background-color: var(--white);
  cursor: pointer;
}

.nav-links li:hover a {
  color: var(--darkRed);
  cursor: pointer;
}

.special-button {
  position: relative;
  background: linear-gradient(180deg, #ffe26a 0%, var(--gold) 100%);
  padding-left: 1em;
  padding-right: 1em;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: inline-block;
}

.special-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, #ececec 0%, var(--white) 100%);
}

.button-one,
.special-button a {
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 5;
}

.button-one::before,
.button-two::before,
.special-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  z-index: 3;
}

.button-one:hover::before,
.button-two:hover::before,
.special-button:hover::before {
  animation: sweep 0.7s forwards;
}

@keyframes sweep {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.social-nav {
  display: flex;
  gap: 2em;
}

.social-nav a {
  color: var(--white);
  font-size: 1.4em;
  transition: transform 0.3s ease;
}

.social-nav a:hover {
  transform: scale(1.2);
}

h2 {
  opacity: 0;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 2ch;
  transform: translateY(-20px);
  animation: dropFade20 0.8s ease-out forwards;
  will-change: transform, opacity;
}

h2 a {
  color: var(--white);
  text-decoration: none;
}

#about h2 {
  padding-left: 0;
}

h3 {
  opacity: 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 2ch;
  transform: translateY(-14px);
  animation: dropFade14 0.8s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes dropFade20 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropFade14 {
  0% {
    opacity: 0;
    transform: translateY(-14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

p {
  font-size: 1.2em;
  line-height: 2.2ch;
}

main h2 {
  padding-top: 1em;
}

main button {
  border: none;
  box-shadow: none;
  border: none;
  padding: 0.4em 0.8em;
  margin-top: 1em;
  border-radius: 999px;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 4ch;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

main button:hover {
  cursor: pointer;
}

.button-one {
  width: 80vw;
  color: var(--black);
  background-color: var(--gold);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.button-one:hover {
  transform: translateY(-2px) scale(1.01);
  color: var(--darkRed);
  background: var(--white);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.button-two {
  width: 80vw;
  color: var(--white);
  background-color: var(--darkRed);
  transition: all 0.3s ease-in-out;
}

.button-two:hover {
  color: var(--darkRed);
  background: var(--white);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

section {
  padding-bottom: 2.5em;
}

section > div > p {
  padding-bottom: 1em;
}

#services h2 {
  padding-bottom: 1em;
}

#services article {
  color: var(--white);
  background: linear-gradient(
    180deg,
    #c61a1a 0%,
    var(--darkRed) 36%,
    #830000 100%
  );
  padding: 1em 1em 1em 1em;
  margin-bottom: 1em;
  border: 1px solid rgba(253, 208, 23, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  cursor: default;
  position: relative;
  overflow: hidden;
}

#services article:hover {
  transform: translateY(-0.35em);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.22);
  border-color: rgba(253, 208, 23, 0.28);
}

.results-container {
  display: block;
}

#expertise,
#privacy,
#team,
#free,
#terms,
#services {
  color: var(--black);
  background-color: var(--white);
}

#services article i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: var(--white);
}

#services article {
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
}

#membership {
  background: var(--white);
  color: var(--black);
}

.membership-grid {
  display: grid;
  gap: 1.5rem;
}

.membership-grid article {
  background: linear-gradient(
    180deg,
    #c61a1a 0%,
    var(--darkRed) 36%,
    #830000 100%
  );
  color: var(--white);
  padding: 1.5em;
  border: 1px solid rgba(253, 208, 23, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.membership-grid article.featured {
  transform: scale(1.05);
  border-color: rgba(253, 208, 23, 0.3);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
}

.membership-grid article:hover {
  transform: translateY(-0.35em);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.22);
  border-color: rgba(253, 208, 23, 0.28);
}

.membership-grid article.featured:hover {
  transform: scale(1.05) translateY(-0.15em);
}

.price {
  font-size: 2em;
  font-weight: 800;
  margin: 0.5em 0;
  color: var(--gold);
}

.membership-grid ul {
  margin: 1em 0;
}

.membership-grid li {
  margin-bottom: 0.5em;
}

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

#faq {
  padding: 60px 16px;
  background: linear-gradient(180deg, #1b0f0f 0%, #111 100%);
  color: #fff;
}

#faq .container {
  max-width: 700px;
  margin: 0 auto;
}

#faq h2 {
  text-align: center;
  margin-bottom: 8px;
}

#faq .container > p {
  text-align: center;
  margin-bottom: 32px;
  color: #bbb;
  font-size: 0.95rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  background: #181818;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: #e63946;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #222;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 16px 16px 16px;
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

#contact {
  color: var(--black);
  background-color: var(--white);
}

form {
  display: flex;
  flex-direction: column;
  padding-top: 1.5em;
  gap: 1rem;
}

form label {
  display: block;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.4rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--darkRed);
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 1rem;
  border-radius: 6px;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #a11212;
  box-shadow: 0 0 0 2px var(--gold);
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  width: 20px;
  aspect-ratio: 1 / 1;
  height: auto;

  flex: none;
  display: inline-block;

  border: 2px solid var(--charcoal);
  border-radius: 4px;
  background: white;

  cursor: pointer;
  position: relative;

  vertical-align: middle;

  transition: all 0.25s ease;
}

input[type="checkbox"]:hover {
  border-color: var(--darkRed);
  box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.08);
}

input[type="checkbox"]:checked {
  background: var(--darkRed);
  border-color: var(--darkRed);
}

input[type="checkbox"]:checked {
  animation: checkboxPop 0.25s ease;
}

@keyframes checkboxPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

input[type="checkbox"]::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;

  width: 10px;
  height: 10px;

  transform: scale(0);

  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);

  background: white;
  transition: transform 0.2s ease;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

form button[type="submit"] {
  width: 100%;
  background: var(--darkRed);
  border: 2px solid var(--darkRed);
  border-radius: 999px;
  color: var(--white);
  font: inherit;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 3ch;
  transition: 0.2s ease;
}

form button[type="submit"]:hover {
  color: var(--darkRed);
  background-color: #fff;
}

form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#location {
  background: var(--white);
  color: var(--black);
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em 0.5em;
}

.copyright {
  text-align: center;
}

.footer-grid {
  display: grid;
  gap: 2em;
  text-align: center;
  margin-bottom: 2em;
}

.footer-brand img {
  width: 140px;
}

.footer-socials {
  margin-top: 0.5em;
}

.footer-socials a {
  margin-top: 0.5em;
  margin-right: 0.5em;
  font-size: 1.4em;
}

.footer-grid .footer-brand div {
  padding-left: 0.7em;
}

footer h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

#contact a,
#free a {
  color: var(--black);
  text-decoration: none;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer li {
  margin-top: 0.5em;
}

footer p {
  margin-top: 0.25em;
}

/* CONSTRUCTION BANNER */

.construction-banner {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(-45deg, #ffd54a 0 16px, #f2bd15 16px 32px);
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 11px 16px;
  font-size: 0.95rem;
  position: relative;
  z-index: 999;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* LARGE */
@media screen and (min-width: 1180px) {
  .construction-banner {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* EXTRA LARGE */
@media screen and (min-width: 1800px) {
  .construction-banner {
    font-size: 1.15rem;
    padding: 14px 24px;
  }
}

/* CARD CONSTRUCTION OVERLAY */

.card-under-construction {
  position: relative;
  overflow: hidden;
}

.card-under-construction::after {
  content: "Coming Soon | Pricing & Details Not Yet Available";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background:
    linear-gradient(rgba(14, 14, 14, 0.8), rgba(14, 14, 14, 0.82)),
    repeating-linear-gradient(
      -45deg,
      rgba(253, 208, 23, 0.16) 0 14px,
      rgba(253, 208, 23, 0.05) 14px 28px
    );
  color: #fff;

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

  text-align: center;
  padding: 20px;

  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: 0.01em;

  z-index: 5;
}

/* blur content behind */
.card-under-construction > * {
  filter: blur(5px) saturate(0.85);
  pointer-events: none;
}

/* Disable button interaction */
.disabled-construction {
  opacity: 0.75;
  filter: grayscale(15%);
  cursor: not-allowed !important;
}

/* Prevent hover effects */
.disabled-construction:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* CONTENT CONSTRUCTION OVERLAY */

#construction-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 230, 120, 0.35);
  backdrop-filter: blur(1.5px);
  z-index: 999;

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

  cursor: not-allowed;
}

/* message box */

.construction-overlay-message {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 20px 28px;
  border-radius: 8px;

  font-size: 1.1rem;
  text-align: center;
  line-height: 1.5;

  max-width: 380px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* MEDIA QUERIES (LARGE) */
@media screen and (min-width: 1180px) {
  h1 {
    font-size: 1.25em;
    margin-left: 0.5em;
  }

  nav {
    position: static;
    transform: none;
    height: auto;
    background: transparent;
    padding: 0;
  }

  .nav-drawer {
    flex-direction: row;
    align-items: center;
  }

  .mobile-social {
    display: none;
  }

  .menu-footer {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  nav {
    display: flex;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
  }

  .nav-links li {
    opacity: 0;
    margin-top: 0;
    transform: translateY(-10px);
    animation: navFade 0.5s ease forwards;
  }

  .nav-links li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-links li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-links li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav-links li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .nav-links li:nth-child(5) {
    animation-delay: 0.5s;
  }

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

  nav ul {
    flex-direction: row;
    padding: 0;
  }

  nav ul li {
    padding: 0 1em 0 1em;
  }

  nav ul li {
    padding-top: 2px;
  }

  .nav-links h2 {
    padding: 0;
    font-size: 1em;
  }

  header {
    justify-content: space-between;
    padding: 0.5em 0.5em;
  }

  .mobile-br {
    display: none;
  }

  #services article {
    margin-bottom: 0;
  }

  #services .container {
    padding-bottom: 1em;
  }

  #services .container div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }

  .membership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #faq {
    padding: 80px 24px;
  }

  #faq .container {
    max-width: 900px;
  }

  #faq .container > p {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 20px;
  }

  .faq-answer p {
    font-size: 1rem;
    padding: 0 20px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }

  .footer-grid .footer-brand div {
    padding-left: 2.7em;
  }

  .footer-grid .footer-brand a img {
    transform: translateX(1.2em);
    transition:
      filter 0.3s ease,
      transform 0.3s ease;
  }

  .footer-brand a:hover img {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8))
      drop-shadow(0 0 20px rgba(255, 223, 0, 0.4));

    transform: translateX(1.2em) scale(1.02);
  }

  #contact a {
    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }

  #contact a:hover {
    color: var(--darkRed);
  }

  #free a {
    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }

  #free a:hover {
    color: var(--darkRed);
  }

  footer a {
    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }

  footer a:hover {
    color: var(--gold);
  }

  .button-one {
    width: auto;
  }

  .button-two {
    width: auto;
    margin-left: 1em;
  }

  form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: start;
  }
}

@media screen and (min-width: 1400px) {
  header div .desktop-social {
    display: flex;
    gap: 1.5em;
    margin-right: 2em;
  }
}

/* MEDIA QUERIES (EXTRA LARGE) */
@media screen and (min-width: 1800px) {
  header img {
    height: 3rem;
  }

  h1 {
    font-size: 1.75em;
  }

  .nav-links h2 {
    font-size: 1.5em;
  }

  .desktop-social li a {
    color: var(--white);
    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }

  .desktop-social li a:hover {
    color: var(--gold);
  }

  #faq {
    padding: 100px 24px;
  }

  #faq .container {
    max-width: 1100px;
  }

  .faq-question {
    font-size: 1.2rem;
    padding: 24px;
  }

  .faq-answer p {
    font-size: 1.05rem;
    padding: 0 24px 24px 24px;
  }
}
