:root {
  --gold: #ab660a;
  --gold-soft: #f3d27b;
  --dark: #050608;
  --dark-alt: #101318;
  --text-light: #f5f5f5;
  --text-muted: #b0b0b0;
  --danger: #e57373;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #202430 0, #050608 55%);
  color: var(--text-light);
  line-height: 1.7;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* header & Nav End */

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.8fr);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(120deg, #f3d27b, #f6f0c5, #f3d27b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(243, 210, 123, 0.35);
  padding: 0.28rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-subtitle,
  .hero-badges,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.btn-primary,
.btn-ghost {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.2s, background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f3d27b, #d4af37);
  color: #3a2903;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
  height: 50px;
  font-weight: bold;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(243, 210, 123, 0.55);
}

.btn-ghost:hover {
  background: rgba(243, 210, 123, 0.12);
}

.hero-meta {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: var(--gold-soft);
}

.hero-card {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #272036, #050608 60%);
  padding: 2.1rem 2rem;
  border: 1px solid rgba(243, 210, 123, 0.25);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      circle at 10% 0,
      rgba(243, 210, 123, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 110% 120%,
      rgba(152, 103, 255, 0.18),
      transparent 55%
    );
  opacity: 0.8;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.match-score {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.1rem;
}

.match-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.78rem;
}

.mini-item {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(243, 210, 123, 0.2);
  background: rgba(0, 0, 0, 0.3);
}

.mini-item span {
  display: block;
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.mini-value {
  color: var(--gold-soft);
}

.hero-card-footer {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(243, 210, 123, 0.12);
  background: linear-gradient(
    to bottom,
    rgba(3, 4, 7, 0.95),
    rgba(3, 4, 7, 0.98)
  );
}

.section-alt {
  background: radial-gradient(circle at top, #151824, #050608 65%);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.section-title span {
  color: var(--gold-soft);
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0.8rem auto 0;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-text p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(243, 210, 123, 0.35);
  padding: 0.28rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-card {
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(243, 210, 123, 0.22);
  background: radial-gradient(
    circle at top left,
    rgba(243, 210, 123, 0.14),
    rgba(0, 0, 0, 0.8)
  );
  font-size: 0.9rem;
}

.about-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--gold-soft);
}

.tagline {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: 16px;
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid rgba(243, 210, 123, 0.16);
  background: radial-gradient(
    circle at top,
    rgba(243, 210, 123, 0.16),
    rgba(0, 0, 0, 0.9)
  );
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
  font-size: 0.92rem;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
}

.card small {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.card ul li::before {
  content: "•";
  color: var(--gold-soft);
  position: absolute;
  left: 0;
  top: 0;
}

/* Two-column region section */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.list-dot {
  margin-top: 0.7rem;
  font-size: 0.94rem;
}

.list-dot li {
  margin-bottom: 0.3rem;
}

/* Success stories */
.stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stories {
    grid-template-columns: minmax(0, 1fr);
  }
}

.story {
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(243, 210, 123, 0.18);
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}

.story strong {
  color: var(--gold-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-form {
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(243, 210, 123, 0.2);
  background: radial-gradient(
    circle at top,
    rgba(243, 210, 123, 0.13),
    rgba(0, 0, 0, 0.9)
  );
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(243, 210, 123, 0.35);
  background: rgba(3, 4, 7, 0.9);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.9rem;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(243, 210, 123, 0.6);
}

.contact-meta {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-meta p {
  margin-bottom: 0.6rem;
}

.contact-meta h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}

/* Legal section */
.legal-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .legal-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

.legal-wrapper h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(243, 210, 123, 0.2);
  background: #020305;
  padding: 1.1rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  margin-left: 0.9rem;
}

/* Small helper */
.note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* register css start */

main {
  flex: 1;
  /* padding: 3rem 0 2.5rem; */
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
}
.page-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.page-heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.page-heading span {
  color: var(--gold-soft);
}
.page-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.card {
  margin-top: 2rem;
  border-radius: 18px;
  padding: 2rem 1.7rem 2.2rem;
  background: radial-gradient(
    circle at top left,
    rgba(243, 210, 123, 0.18),
    rgba(0, 0, 0, 0.9)
  );
  border: 1px solid rgba(243, 210, 123, 0.35);
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.75);
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.7rem;
}

@media (max-width: 850px) {
  form {
    grid-template-columns: minmax(0, 1fr);
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.required::after {
  content: " *";
  color: #ffb4b4;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  padding: 0.58rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(243, 210, 123, 0.5);
  background: rgba(5, 6, 10, 0.9);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: #777b85;
  font-size: 0.83rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(243, 210, 123, 0.7);
}

.field-inline {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.field-inline > * {
  flex: 1;
}

.help-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.btn-submit {
  margin-top: 31px;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #f3d27b, #d4af37);
  color: #362502;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  justify-self: flex-start;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.7);
  transition: transform 0.15s ease-out, box-shadow 0.2s;
  font-weight: bold;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.8);
}

.small-print {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* Pretty checkbox */
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.checkbox-field input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--gold-soft); /* gold accent */
  cursor: pointer;
  margin-top: -5px;
}

.checkbox-label {
  font-size: 0.92rem;
  color: #ddd;
}

.checkbox-label a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--gold);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(#f7c65b, #e7a62c, #a86a00);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-title span {
  background: linear-gradient(#f7c65b, #e7a62c, #a86a00);
  -webkit-background-clip: text;
  color: transparent;
}
