@charset "utf-8";
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fffaf3;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #1a1a1a;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-height: 50px;
}
.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f5f5f5;
  cursor: pointer;
}
.nav-menu {
  background-color: #1a1a1a;
  padding: 1rem;
}
.nav-menu[hidden] {
  display: none;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li + li {
  margin-top: 0.5rem;
}
.nav-menu a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  display: block;
}
.nav-menu a:hover {
  text-decoration: underline;
}
/* Desktop: show nav, hide toggle */
@media (min-width: 1000px) {
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    display: flex !important;
    background: transparent;
    padding: 0;
  }
  .nav-menu ul {
    display: flex;
  }
  .nav-menu li + li {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}


main {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.thank-you h1 {
  font-size: 2.4rem;
  color: #c5a059;
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  background-color: #c5a059;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #a4833f;
}

.next-steps {
  margin-top: 3rem;
}

.next-steps h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.timeline {
  list-style: none;
  padding: 0;
}

.timeline li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.timeline li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c5a059;
  font-weight: bold;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  flex: 1 1 250px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: #c5a059;
  margin-bottom: 0.5rem;
}

.feature h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* 12. Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}
.footer p {
  font-size: .9rem;
  margin-bottom: .5rem;
}
.footer-nav li a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-nav li a:hover {
  text-decoration: underline;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
}
.social-icons {
  margin-top: 1rem;
}
.social-icons a {
  color: #ffbf00;
  margin: 0 .5rem;
  font-size: 1.2rem;
}
.social-icons a:hover {
  opacity: .8;
}
/*--------------------------------------------*/
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #d4af37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
	text-decoration: none;
}
.floating-cta .cta-icon {
  font-size: 1.5rem;       /* adjust to taste */
  line-height: 1;
}
