/* =========================
   Base
========================= */
:root {
  --brand-brown: #6d3b1c;
  --brand-accent: #f6930b;
  --brand-dark: #1f2a44;
  --text-main: #20242c;
  --text-muted: #5f6773;
  --border-soft: #ece7e2;
  --bg-soft: #faf8f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(28, 25, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* =========================
   Header / Top wrapper
========================= */
.site-header {
  padding-top: 18px;
}

.contain {
  width: min(75%, 1180px);
  margin: 0 auto;
  padding: 8px 0;
  background-color: transparent !important;
}

/* =========================
   Navbar
========================= */
.mynav,
.site-navbar {
  background: transparent !important;
  margin-top: 8px;
  padding: 0;
}

.navbar-brand {
  background: transparent !important;
  padding: 0;
}

.navbar-brand img,
.site-logo {
  width: 110px;
  height: auto;
}

/* More modern nav link feel */
.nav-link,
.dropdown-toggle {
  margin-right: 12px;
  color: var(--brand-brown) !important;
  background: transparent;
  border: 2px solid transparent !important;
  border-radius: 999px;
  padding: 8px 14px !important;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link.active {
  background: rgba(246, 147, 11, 0.12);
  color: var(--brand-accent) !important;
  border-color: transparent !important;
}

.dropdown-menu {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 8px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-item:hover {
  background: #fff4e8;
  color: var(--brand-brown);
}

/* =========================
   Main hero wrapper
========================= */
/* Use a custom content width instead of overriding Bootstrap .container globally */
.hero-section {
  padding: 20px 0 36px;
}

.hero-section .container {
  width: min(75%, 1180px);
  margin: 0 auto;
  padding: 0;
  box-shadow: none;
  background-color: transparent !important;
}

/* Hero card */
.hero-card {
  background: var(--white);
  border-radius: 26px;
  box-shadow:
    20px 0 20px -20px #864d25,
    -20px 0 20px -20px #864d25,
    var(--shadow-soft);
  padding: 42px 36px;
}

/* =========================
   Hero content
========================= */
.home-section {
  text-align: left;
  padding: 0;
  margin: 0;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.welcome-message {
  flex: 1.2 1 420px;
  text-align: left;
  order: 1;
}

.hero-media {
  flex: 1 1 320px;
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff4e8;
  color: #a85b06;
  font-weight: 700;
  font-size: 0.92rem;
}

.welcome-message h1,
.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 18px;
}

.welcome-message .lead,
.hero-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-subtext,
.welcome-message .mb-2 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 20px !important;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 0;
  padding-top: 0;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.03);
}

/* =========================
   Store badges
========================= */
.store-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  height: 50px;
}

.store-badge img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.store-badge:hover img {
  transform: translateY(-2px);
}

/* =========================
   Hero CTA buttons
========================= */
.hero-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}

.hero-btn-primary {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #111;
}

.hero-btn-primary:hover {
  background: #de8208;
  border-color: #de8208;
  color: #111;
}

.hero-btn-secondary {
  border: 1px solid #20242c;
  color: #20242c;
}

.hero-btn-secondary:hover {
  background: #20242c;
  color: #fff;
}

/* =========================
   Footer / Social
========================= */
.site-footer,
footer {
  background: transparent !important;
  color: #000;
  text-align: center;
  padding: 24px 0 20px;
}

.footer-copy {
  color: var(--text-main);
  font-size: 1rem;
}

.social-media {
  display: inline-flex;
  gap: 14px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

.social-media a,
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.social-media a:hover,
.social-link:hover {
  transform: translateY(-2px);
  border-color: #ffd1a1;
}

.social-media a.facebook,
.social-link.facebook {
  color: #0a399e;
}

.social-media a.twitter,
.social-link.twitter {
  color: #1da1f2;
}

.social-media a.instagram,
.social-link.instagram {
  color: #e4405f;
}

/* =========================
   Misc
========================= */
figure {
  margin: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
  .contain,
  .hero-section .container {
    width: min(90%, 1180px);
  }

  .hero-card {
    padding: 28px 22px;
  }

  .content-wrapper {
    gap: 28px;
    align-items: flex-start;
  }

  .navbar-collapse {
    margin-top: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  }

  .nav-link,
  .dropdown-toggle {
    margin-right: 0;
    margin-bottom: 6px;
    display: inline-block;
  }
}

@media (max-width: 575.98px) {
  .site-header {
    padding-top: 12px;
  }

  .contain,
  .hero-section .container {
    width: min(94%, 1180px);
  }

  .hero-card {
    border-radius: 18px;
    padding: 22px 16px;
  }

  .welcome-message h1,
  .hero-title {
    font-size: 2rem;
  }

  .welcome-message .lead,
  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .store-badge {
    height: 44px;
  }

  .hero-links {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .navbar-brand img,
  .site-logo {
    width: 95px;
  }
}
.nav-download-btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 16px;
}

.hero-trust {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.rounded-4 {
  border-radius: 18px !important;
}

.border.rounded-4.bg-white,
.border.rounded-4.h-100.bg-white {
  border-color: var(--border-soft) !important;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.04);
}
.register-form-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.04);
}

.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  color: var(--text-main);
  font-weight: 500;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 12px;
  border-color: var(--border-soft);
}

.form-control:focus,
.form-select:focus {
  border-color: #f6b254;
  box-shadow: 0 0 0 0.2rem rgba(246, 147, 11, 0.12);
}

.form-check-input:checked {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}
.info-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.04);
  height: 100%;
}
.accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-button {
  font-weight: 600;
  color: var(--text-main);
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: #fff8ef;
  color: var(--brand-brown);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(246, 147, 11, 0.12);
}

.accordion-body {
  color: var(--text-muted);
  line-height: 1.7;
}
