/* Montserrat Local Font */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2') format('woff2');
}

:root {
  --primary-red: #A80534;
  /* Dark Red to match image */
  --primary-green: #00563B;
  /* Dark Green */
  --primary-yellow: #FFBC0D;
  /* Dark Yellow */
  --text-dark: #1F1F1F;
  --text-light: #FFFFFF;
  --bg-footer: #002244;
  --btn-blue: #0A58CA;
  --btn-gold: #F1C40F;
  --font-family: 'Montserrat';
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Utility Classes */
.text-red {
  color: var(--primary-red);
}

.text-green {
  color: var(--primary-green);
}

.text-yellow {
  color: var(--primary-yellow);
}

.bg-red {
  background-color: var(--primary-red);
}

.bg-green {
  background-color: var(--primary-green);
}

.bg-yellow {
  background-color: var(--primary-yellow);
}

/* Buttons */
.btn-gold {
  background-color: var(--btn-gold);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  padding: 6px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-gold:hover {
  background-color: #d4ac0d;
  color: #000;
  transform: scale(1.05);
}

.btn-red-filled {
  background-color: var(--primary-red);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 14px 40px;
  border: 2px solid var(--primary-red);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-red-filled:hover {
  background-color: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-white-outlined {
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 14px 40px;
  border: 2px solid #fff;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-white-outlined:hover {
  background-color: #fff;
  color: #000;
}

/* Header Top Strip */
.top-strip {
  background-color: var(--primary-red);
  color: #fff;
  padding: 12px 0;
}

.top-contact a {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.top-icon {
  font-size: 1.2rem;
}

.btn-top-strip {
  background-color: #ffb900;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  padding: 2px 50px;
  font-size: 12px;
  display: inline-block;
  box-shadow: inset 0 -4px 0 rgba(200, 110, 0, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-top-strip:hover {
  background-color: #f0ad00;
  color: #000;
  transform: translateY(1px);
  box-shadow: inset 0 -2px 0 rgba(200, 110, 0, 0.4);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.header-logo-title {
  font-weight: 800;
  font-size: 25px;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.header-logo-sub {
  font-size: 12px;
  color: #222;
  font-weight: 500;
  margin-top: 2px;
}

.header-nav-menu .nav-link {
  font-weight: 600;
  color: #222;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 8px 0 !important;
  transition: color 0.3s;
}

.header-nav-menu .nav-link:hover {
  color: var(--primary-red);
}

.nav-link-signup {
  font-weight: 700 !important;
  color: #000 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px !important;
}

.nav-link-signup i {
  font-size: 1rem;
  vertical-align: middle;
}

/* Hero Section */
.hero-section {
  background: url('../images/banner-image.png') center top / 100% 100% no-repeat;
  padding: 0;
  min-height: 550px;
  width: 100%;
  aspect-ratio: 1920 / 800;
  padding: 160px 0;
  overflow: hidden;
  padding: 135px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 15px;
  letter-spacing: 1px;
  max-width: 1200px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subheading {
  font-size: 27px;
  font-weight: 700;
  margin: 0 auto 35px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 1000px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* Features Strip */
.feature-box {
  padding: 48px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 160px;
}

.feature-icon-img {
  width: 80px;
  height: auto;
  min-width: 80px;
  object-fit: contain;
}

.feature-box h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  max-width: 250px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* How It Works Section */
.how-it-works {
  padding: 50px 20px 20px 20px;
}

.section-title {
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  color: #760425;
  /* Darker red matching image specifically */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #2f2f2f;
  max-width: 950px;
  margin: 0 auto 55px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0px;
}

.content-block {
  margin-bottom: 70px;
  align-items: center;
}

.custom-gradient-divider {
  width: 100%;
  margin-bottom: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 17, 43, 0) 0%, rgba(201, 17, 43, 0.5) 50%, rgba(201, 17, 43, 0) 100%);
}

.content-block img {
  width: 100%;
}

.img-blob-bg {
  position: relative;
  z-index: 1;
}

.img-blob-bg::before {
  content: '';
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: -20px;
  right: -20px;
  background-color: #f2f6fa;
  border-radius: 15px;
  z-index: -1;
  transform: skewY(-2deg);
}

.shield-glass-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.shield-glass-overlay i {
  font-size: 1.4rem;
}

.content-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.2px;
  color: #111;
}

.content-sub {
  color: #A80534;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 7px;
  line-height: 1.5;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.check-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #667085;
  line-height: 1.6;
}

.check-list li strong {
  color: #111;
  font-weight: 700;
}

.check-list li i.check-custom {
  position: absolute;
  left: 0;
  top: 5px;
  color: #A80534;
  font-size: 0.9rem;
}

.btn-outlined-red {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid #A80534;
  color: #A80534;
  background-color: transparent;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outlined-red:hover {
  background-color: #A80534;
  color: #fff;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(176, 17, 38, 0.2), transparent);
  margin: 70px auto;
  width: 50%;
}

/* FAQs */
.faq-section {
  padding: 10px 0 50px;
  background-color: #fff;
}

.faq-title {
  color: #760425;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0px;
}

.custom-faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 0 !important;
  background-color: transparent;
}

.custom-faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.custom-faq-accordion .accordion-button {
  font-weight: 700;
  color: #A60D33;
  font-size: 15px;
  padding: 18px 0;
  background-color: transparent !important;
  box-shadow: none !important;
  letter-spacing: -0.2px;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  color: #A60D33;
}

.custom-faq-accordion .accordion-body {
  padding: 0 0 40px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.custom-faq-accordion .accordion-button::after {
  background-image: none;
  font-family: 'Font Awesome 6 Free';
  content: "\f078";
  font-weight: 900;
  color: #A60D33;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: none;
}

/* Contact Form */
.contact-section {
  background-color: #121212;
  padding: 100px 0 120px;
  color: #fff;
  text-align: center;
}

.contact-title {
   font-size: 40px;
   font-weight: 700;
   margin-bottom: 20px;
   letter-spacing: -0.5px;
   color: #fff;
}

.contact-form-container {
  background-color: #1e1e1e;
  padding: 50px 60px;
  border-radius: 4px;
  text-align: left;
}

.form-dark {
  background-color: #2A2A2A !important;
  border: 1px solid rgba(255, 255, 255, 0.02) !important;
  border-radius: 4px !important;
  padding: 16px 20px !important;
  font-size: 0.95rem !important;
  color: #ddd !important;
  box-shadow: none !important;
}

.form-dark::placeholder {
  color: #666 !important;
  font-weight: 400 !important;
}

.form-dark:focus {
  background-color: #333 !important;
  border-color: #555 !important;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
}

textarea.form-dark {
  resize: vertical;
}

.btn-submit-new {
  background-color: #A60D33;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  padding: 16px 30px;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(176, 17, 38, 0.4);
}

.btn-submit-new:hover {
  background-color: #A60D33;
  color: #fff;
  transform: translateY(-1px);
}

/* Footer New */
.footer-new {
  background-color: #0c0c0c;
  padding: 40px 0;
  color: #fff;
}

.footer-new-brand {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-new-subtitle {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
  opacity: 0.9;
}

.footer-new-copyright {
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-new-policy a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 25px;
  transition: color 0.3s;
}

.footer-new-policy a:hover {
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .footer-new {
    text-align: center;
  }

  .footer-new text-md-end {
    text-align: center !important;
  }

  .footer-new-policy a {
    margin: 0 12px;
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 3.5rem;
  }

  .feature-box h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 991px) {
  .hero-heading {
    font-size: 2.8rem;
  }

  .feature-box {
    min-height: auto;
    padding: 30px 25px;
    justify-content: flex-start;
  }

  .content-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.4rem;
    padding-top: 20px;
  }

  .hero-section {
    padding: 160px 0;
  }

  .top-strip {
    text-align: center;
  }

  .top-strip .d-flex {
    flex-direction: column !important;
    row-gap: 12px;
  }

  .content-block {
    margin-bottom: 80px;
    text-align: center;
  }

  .check-list li {
    text-align: left;
  }

  .btn-outlined-red {
    margin-bottom: 20px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .faq-section {
    padding: 60px 0 80px;
  }
}

/* Legal / static pages (Privacy, Terms) */
.legal-page-header {
  padding: 3rem 1.25rem 2.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-page-main {
  padding: 2.5rem 1.25rem 5rem;
  background: #fafafa;
}

.legal-content {
  font-size: 15px;
  line-height: 1.75;
  color: #5a6474;
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}