@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&display=swap');

:root {
  --primary: #041E3F;
  --secondary: #FFC107;
  --tertiary: #01142D;
  --quaternary: #bfc9c7;
  --accent: #F9A826;
  --white: #ffffff;
  --dark: #212529;
  --lt-black: #222;
  --solid-black: #000000;
  --solid-white: #ffffff;
}

* {
  font-family: sans-serif;
}

/*alternate spacing*/

div.border-radius-20 {
  border-radius: 20px;
}

.max-width-600 {
  max-width: 600px;
}

.pointer-cursor {
  cursor: pointer;
}

.thin-white-border {
  border: 1px solid var(--solid-white);
}

.sign-up-number {
  font-size: 14px;
  min-width: 60px;
}

.padding-top-11 {
  padding-top: 11px;
}

html {
  scroll-behavior: smooth;
}

.support-email-column a {
  color: var(--secondary);
}

.navbar-toggler {
  background-color: var(--secondary);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

.corp-card p {
  color: var(--solid-black);
}

#logo,
#footer-logo {
  color: var(--solid-white);
  font-family: serif;
}

#phone.navbar-nav {
  background-color: var(--primary);
  border-left: var(--solid-white) solid 1px;
}

.journey-heading,
.value-section-titles {
  font-family: serif;
}

/* Navbar */
.navbar {
  background-color: var(--primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav.navbar .navbar-brand,
nav.navbar .nav-link {
  color: var(--solid-white);
  font-weight: 500;
}

nav.navbar .nav-link:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero-section {
  background:
    linear-gradient(to right, rgba(4, 30, 63, 0.9) 0%, rgba(4, 30, 63, 0.4) 100%),
    url("../images/hero-bg-new.png");
  background-size: cover;
  background-position: center;
  color: var(--solid-white);
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.modal-body {
  background-color: var(--primary);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--secondary);
}

.hero-divider {
  width: 80px;
  height: 5px;
  background-color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-custom-primary {
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-custom-primary:hover {
  background-color: var(--quaternary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background-color: var(--primary);
}

.font-size-38 {
  font-size: 38px;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature Cards */
.features-section {
  padding: 80px 0;
  background:
    linear-gradient(rgba(48, 54, 79, 0.75), rgba(172, 186, 196, 0.75)),
    url("../images/ocean-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.icon-box {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.panel-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  width: fit-content;
}

/* Value Cards */
.value-section {
  padding: 80px 0;
  background-color: var(--white);
}

.corp-card {
  background-color: var(--tertiary);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.corp-card h3 {
  color: var(--lt-black);
  margin-bottom: 15px;
  font-weight: 200;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--accent);
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-email {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Features Modal */
.feature-detail-card {
  padding: 25px;
  border-radius: 15px;
  background: var(--white);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.feature-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--quaternary) 100%);
  border: 2px solid var(--primary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--solid-white);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-detail-card h4 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-detail-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

#featuresModal .modal-content {
  background: var(--solid-white);
}

#featuresModal .modal-lg {
  max-width: 900px;
}

.section-title {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--secondary);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--primary);
  text-align: center;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--solid-white);
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--solid-white);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1.5rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--solid-white);
}

/* Growth Section */
.growth-section {
  padding: 100px 0;
  background: var(--accent);
  color: var(--dark);
}

.growth-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-item-small {
  background: var(--solid-white);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item-small:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.feature-icon-small {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.pricing-card {
  background: var(--primary);
  color: var(--solid-white);
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(100, 255, 218, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
}

.pricing-period {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Info Bar (Full Width Horizontal Stack) */
.info-bars-container {
  margin-top: -120px;
  position: relative;
  z-index: 10;
}

.info-bar-row {
  display: flex;
  align-items: stretch;
}

.info-section {
  padding: 30px 15px;
  display: flex;
  align-items: center;
}

.blue-bg {
  background-color: var(--tertiary);
  color: var(--solid-white);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-bar-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-bar-text-small {
  font-size: 0.9rem;
  line-height: 1.2;
}

.info-bar-item {
  cursor: pointer;
  transition: transform 0.2s;
}

.info-bar-item:hover {
  transform: translateY(-2px);
}

.badge-partner-overlay {
  position: absolute;
  right: 15px;
  top: 0;
  transform: translateY(-50%);
  width: 190px;
  height: 190px;
  background-color: var(--tertiary);
  border: 5px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--solid-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  padding: 10px;
  z-index: 20;
}

@media (max-width: 991px) {
  .info-bar-row {
    flex-direction: column;
  }
  .badge-partner-overlay {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 20px auto;
  }
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--solid-white);
  padding: 80px 0 40px;
}

.footer-email-label {
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-email {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--tertiary);
  text-decoration: underline;
}

.footer-email-inline {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-email-inline:hover {
  color: var(--tertiary);
  text-decoration: underline;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-links-container {
  margin: 20px 0;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.footer-links-row > a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links-row > a:hover {
  color: var(--secondary);
}

.support-email-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 100px;
}

#supportEmail {
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-email-below a {
  color: var(--secondary) !important;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  opacity: 0.9;
}

.footer-email-below a:hover {
  opacity: 1;
  text-decoration: underline;
}

.why-us-title {
  color: var(--solid-white);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Journey Modal */
.modal-90 {
  width: 90vw;
  max-width: 90vw;
  height: 90vh;
  margin: 5vh auto;
}

.modal-90 .modal-content {
  background-color: var(--white);
  border: none;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  position: relative;
}

.journey-modal-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  z-index: 1051;
}

.min-vh-90 {
  min-height: 90vh;
}

.journey-panel {
  transition: all 0.3s ease;
}

.agent-panel {
  background-color: var(--primary);
  color: var(--solid-white);
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.company-panel {
  background-color: var(--primary);
  color: var(--primary);
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.custom-placeholder::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.custom-placeholder-dark::placeholder {
  color: rgba(48, 54, 79, 0.7) !important;
}

.journey-panel h2 {
  font-size: 2.5rem !important;
  margin-bottom: 0.5rem !important;
}

.journey-panel p.lead {
  font-size: 1.25rem !important;
  margin-bottom: 1rem !important;
}

.journey-panel p:not(.lead) {
  margin-bottom: 0.75rem !important;
}

.mb-075 {
  margin-bottom: 0.75rem !important;
}

.journey-panel.mb-1 {
  margin-bottom: 0.5rem; /* Overriding for tight modal fit */
}

.journey-panel .btn {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.journey-panel .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .modal-90 {
    width: 95vw;
    height: auto;
    min-height: 90vh;
  }
  .journey-panel {
    padding: 2rem 1.5rem !important; /* Standardized top padding for tab alignment */
  }
}

.input-group select:focus {
  box-shadow: none;
  background-color: transparent;
  color: var(--solid-white);
}

.input-group input:focus {
  box-shadow: none;
  background-color: transparent;
  color: var(--solid-white);
}

.input-group select option {
  background-color: var(--solid-white);
  color: var(--solid-black);
}

#agent-dial-code-display,
#company-dial-code-display {
  border-right: 10px solid rgba(255, 255, 255, 0.3) !important;
  font-weight: 500;
  padding: 0 10px;
}

#agent-country-selector,
#company-country-selector {
  cursor: pointer;
}

#agent-country-selector option,
#company-country-selector option {
  background-color: var(--solid-white);
  color: var(--primary);
}

/* Ensure the input takes the remaining space and override negative Bootstrap margins */
.input-group > input.form-control {
  flex: 1 1 0%;
  min-width: 0;
  margin-left: -9px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(30, 36, 61, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  z-index: 2000;
  display: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  display: flex !important;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--solid-white);
  margin-bottom: 10px;
}

.cookie-banner-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: 800px;
}

.cookie-banner-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 30px;
}

@media (max-width: 991px) {
  .cookie-banner {
    flex-direction: column;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 25px;
  }

  .cookie-banner-actions {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

/* ============================
   HERO — New messaging styles
   ============================ */
.hero-value-prop {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 600px;
}

.hero-invitation {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================
   SECTION SHARED UTILITIES
   ============================ */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: var(--secondary);
  color: var(--primary);
}

.section-badge--light {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--solid-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.section-subheading {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   HOW IT WORKS SECTION
   ============================ */
.how-it-works-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.hiw-card {
  background: var(--solid-white);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.hiw-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(4, 30, 63, 0.12);
  border-color: var(--secondary);
}

.hiw-card--featured {
  background: var(--primary);
  border-color: var(--secondary);
  border-width: 2px;
}

.hiw-card--featured h3,
.hiw-card--featured p {
  color: var(--solid-white);
}

.hiw-card--featured .hiw-step {
  color: var(--secondary);
}

.hiw-card--featured .hiw-icon {
  background-color: rgba(255, 193, 7, 0.15);
  color: var(--secondary);
}

.hiw-card--featured .hiw-cta {
  color: var(--secondary);
}

.hiw-step {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(4, 30, 63, 0.1);
  line-height: 1;
  margin-bottom: 10px;
}

.hiw-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(4, 30, 63, 0.07);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.hiw-card:hover .hiw-icon {
  transform: scale(1.1) rotate(5deg);
}

.hiw-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.hiw-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hiw-cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: letter-spacing 0.2s ease;
}

.hiw-cta:hover {
  letter-spacing: 1px;
  color: var(--secondary);
}

/* ============================
   GET INVOLVED SECTION
   ============================ */
.involvement-section {
  padding: 100px 0;
  background: var(--primary);
}

.involve-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 35px 28px;
  height: 100%;
  transition: all 0.35s ease;
}

.involve-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.involve-card--cta {
  background: rgba(255, 193, 7, 0.08);
  border-color: rgba(255, 193, 7, 0.3);
}

.involve-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.involve-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--solid-white);
  margin-bottom: 12px;
}

.involve-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ============================
   IMPACT STATS SECTION
   ============================ */
.impact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--solid-white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.impact-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impact-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
}

.impact-plus,
.impact-suffix,
.impact-currency {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.impact-currency {
  margin-right: 2px;
  margin-top: 0px;
}

.impact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  text-align: center;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  padding: 100px 0;
  background: var(--tertiary);
}

.about-vision-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-vision-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-vision-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 193, 7, 0.3);
}

.about-vision-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(255, 193, 7, 0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============================
   COMMUNITY SECTION
   ============================ */
.community-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.community-card {
  background: var(--solid-white);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  text-align: center;
}

.community-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 30, 63, 0.1);
  border-color: var(--secondary);
}

.community-card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.community-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.community-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.community-cta-block {
  background: var(--primary);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

/* ============================
   NEWSLETTER SECTION
   ============================ */
.newsletter-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.newsletter-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(4, 30, 63, 0.25);
  border: 1px solid rgba(255, 193, 7, 0.15);
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--solid-white) !important;
  border-radius: 12px !important;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3) !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 768px) {
  .newsletter-box {
    padding: 30px 20px;
  }
}

/* ============================
   FOOTER NAV LIST
   ============================ */
.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--secondary);
}

/* ============================
   RESPONSIVE ADJUSTMENTS
   ============================ */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .impact-number {
    font-size: 2.5rem;
  }

  .hiw-card {
    padding: 30px 20px;
  }

  .community-cta-block {
    padding: 28px 20px;
  }

  .hero-value-prop {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (min-width: 768px) {
  .info-bar-border {
    border-right: 1px solid #dee2e6;
  }
}

@media (max-width: 767px) {
  .info-bar-border {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
  }
}

/* Custom Sign Up Button Font Styling */
#nav-link-signup {
  color: var(--solid-white) !important;
}

#nav-link-signup:hover {
  color: var(--primary) !important;
}
