/* Exact Mockup CSS Stylesheet - Tightened Responsive Version */

:root {
  --color-bg: #ffffff;
  --color-navy: #0e1b2f; /* Dark matte blue with high contrast like black */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-family);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Centered Container */
.page-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 8rem; /* Spacing between the mockup rows */
}

/* Header Section (Row 1 & Row 2 Centered Layout) */
.header-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem; /* Tightened internal spacing between title and image */
}

.mockup-title-centered {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.image-wrapper-centered {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Layout Row */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* Full Width Row */
.full-width-row {
  grid-template-columns: 1fr;
  margin-top: 1rem; /* Tightened space between sections */
}

/* Text Block */
.text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-col-full {
  width: 100%;
}

/* Mockup Title Styles */
.mockup-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.desc-large {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  text-wrap: balance; /* Automatically balances line lengths */
  text-wrap: pretty;
  word-break: keep-all; /* Prevents awkward word breaks */
}

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

.sub-text {
  font-size: 2.8rem;
  font-weight: 500;
  opacity: 0.65;
  display: inline-block;
  margin: 0.2rem 0;
}

/* Image Block */
.image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-image {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
}

.img-d-you {
  max-width: 300px; /* Scaled down */
}

.img-d-core {
  max-width: 580px; /* Scaled up */
}

/* Homepage-specific device overrides */
.landing-page .img-d-you {
  max-width: 210px; /* Reduced by 30% from 300px */
}

.landing-page .img-d-core {
  max-width: 754px; /* Increased by 30% from 580px */
}

/* Responsive Scaling and Layout Tweaks */
.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

.desc-section {
  margin-top: -3.5rem; /* Pull description closer to the device image */
}

/* Funds Title Block Layout */
.funds-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  gap: 4.5rem; /* Increased white space between AND, We Are Crowdfunding!, and BECAUSE */
}

.funds-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin: 0;
}

.funds-line {
  font-size: 2.8rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  line-height: 1.2;
}

/* Query Block Styling */
.query-block {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem; /* White space between "Do you believe..." and "Then" */
}

.then-line {
  font-size: 2.8rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  line-height: 1.2;
  text-align: center;
}

/* Contribute Button Styling */
.crypto-container-match {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 380px;
  max-width: 100%;
  margin: 0;
}

.btn-contribute {
  background-color: #0172b0;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 800;
  padding: 1.4rem 0;
  width: 100%;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(1, 114, 176, 0.25);
  display: block;
}

.btn-contribute:hover {
  background-color: #015e91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 114, 176, 0.35);
}

.btn-contribute:active {
  transform: translateY(1px);
}



/* Footnote Block Styling */
.footnote-block {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem; /* Increased whitespace between highlighted text and P.S. note on PC */
}

.highlight-text {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-navy);
}

.ps-text {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  line-height: 1.5;
  max-width: 800px;
  text-wrap: pretty;
}

/* FAQs Section Styling */
.faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

.faq-section-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 1rem;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-question {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.3;
}

.faq-answer {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  line-height: 1.5;
  text-wrap: pretty;
}

/* Social Footer Styling */
.social-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.social-link-x {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(14, 27, 47, 0.15);
}

.social-link-x:hover {
  background-color: #0172b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(1, 114, 176, 0.35);
}

.social-link-x:active {
  transform: translateY(1px);
}

.x-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 27, 47, 0.82); /* Dark navy background overlay */
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Content Box */
.modal-content {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 90%;
  max-height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  background-color: #0172b0;
  color: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 1010;
}

.modal-close-btn:hover {
  background-color: #015e91;
  transform: scale(1.08);
}

.modal-close-btn:active {
  transform: scale(0.95);
}



/* Homepage Styles */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
}

.hero-title {
  font-size: 5.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.hero-subtitle {
  font-size: 2.2rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  line-height: 1.4;
  max-width: 720px;
  margin-top: 1.8rem;
  text-wrap: balance;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
  justify-content: center;
  align-items: center;
  align-self: center; /* Center horizontally in vertical flex containers */
}

.btn-primary {
  background-color: #0172b0;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 800;
  padding: 1.4rem 3.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(1, 114, 176, 0.25);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #015e91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 114, 176, 0.35);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-navy);
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 800;
  padding: 1.2rem 3.3rem; /* Compensate for 2px border */
  border: 2px solid var(--color-navy);
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--color-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(14, 27, 47, 0.15);
}

.btn-secondary:active {
  transform: translateY(1px);
}

.btn-secondary-match {
  width: 100%;
  max-width: 380px;
  padding: 1.2rem 0;
  display: block;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 6rem;
  width: 100%;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.1);
  border-radius: 28px;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 114, 176, 0.3);
  box-shadow: 0 12px 30px rgba(14, 27, 47, 0.08);
}

.feature-card h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  line-height: 1.5;
  text-wrap: pretty;
}

.feature-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  flex-grow: 1;
}

.home-footer {
  margin-top: 6rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   Responsive Media Queries (Cascaded at end)
   ========================================== */

@media (max-width: 1024px) {
  .mockup-title, .mockup-title-centered, .funds-title {
    font-size: 3.8rem;
  }
  .desc-large {
    font-size: 2.2rem;
  }
  .sub-text, .funds-line {
    font-size: 2.2rem;
  }
  .page-container {
    gap: 5rem;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: inline;
  }

  .desc-section {
    margin-top: -1.5rem;
  }

  .page-container {
    padding: 4rem 1.2rem;
    gap: 3.5rem;
  }
  
  .header-section {
    gap: 1.5rem;
  }
  
  .full-width-row {
    margin-top: 0;
  }

  .content-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .mockup-title, .mockup-title-centered, .funds-title {
    font-size: 3.2rem;
  }
  
  .desc-large {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .sub-text, .funds-line {
    font-size: 1.8rem;
  }
  
  .mockup-image {
    max-width: 100%;
  }

  .img-d-you {
    max-width: 220px;
  }

  .img-d-core {
    max-width: 100%;
  }

  .landing-page .img-d-you {
    max-width: 154px; /* Reduced by 30% from 220px */
  }

  .funds-title-block {
    gap: 2.8rem;
  }

  .query-block {
    margin-top: 3.5rem;
    gap: 2.2rem;
  }

  .crypto-container-match {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .btn-contribute {
    font-size: 1.4rem;
    padding: 1.1rem 0;
  }

  .footnote-block {
    margin-top: 3.5rem;
    gap: 1.5rem;
  }

  .highlight-text {
    font-size: 1.4rem;
  }

  .ps-text {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .faq-container {
    gap: 2rem;
    padding: 0 1rem;
  }

  .faq-section-title {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.3rem;
  }

  .faq-answer {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .social-footer {
    margin-top: 1.5rem;
  }
  .social-link-x {
    width: 42px;
    height: 42px;
  }
  .x-icon {
    width: 18px;
    height: 18px;
  }

  /* Modal Overrides */
  .modal-content {
    padding: 0.8rem;
    border-radius: 20px;
  }
  .modal-close-btn {
    top: -12px;
    right: -12px;
    width: 34px;
    height: 34px;
    font-size: 1.8rem;
  }

  /* Homepage Mobile Overrides */
  .hero-title {
    font-size: 3.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1.2rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
  }
  
  .feature-card {
    padding: 2.5rem 1.8rem;
    border-radius: 20px;
  }

  .feature-card h2 {
    font-size: 2rem;
  }

  .feature-card p {
    font-size: 1.4rem;
  }

  .home-footer {
    margin-top: 4rem;
  }
}

/* Landing Page Specific Custom Spacing & Overrides */
.landing-page .page-container {
  padding-top: 2rem; /* Decreased whitespace before title */
}

.landing-page .hero-container {
  padding-top: 1rem; /* Decreased whitespace before title */
  padding-bottom: 0rem;
}

.landing-page .features-grid {
  margin-top: -3.5rem; /* Parent gap is 8rem, so total spacing is 4.5rem */
}

.landing-page .page-container > .bottom-buttons {
  margin-top: -3rem; /* Pull closer to details section */
  margin-bottom: -3rem; /* Pull closer to footer */
}

@media (max-width: 768px) {
  .landing-page .page-container {
    padding-top: 1.5rem; /* Even tighter top spacing on mobile */
  }
  .landing-page .hero-container {
    padding-top: 0.5rem;
  }
  .landing-page .features-grid {
    margin-top: -1.5rem; /* Parent gap is 3.5rem, so total spacing is 2rem */
  }
  .landing-page .page-container > .bottom-buttons {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .btn-secondary-match {
    max-width: 250px;
    padding: 0.9rem 0;
    font-size: 1.4rem;
  }
}

/* Navigation Button */
.btn-nav-back {
  background-color: var(--color-navy);
  color: #ffffff;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(14, 27, 47, 0.15);
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-nav-back:hover {
  background-color: #0172b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(1, 114, 176, 0.3);
}

.btn-nav-back:active {
  transform: translateY(1px);
}

/* Careers & Job Board Styling */
.job-meta-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(14, 27, 47, 0.1);
  padding-bottom: 1.2rem;
  margin-bottom: 1rem;
}

.job-tag {
  background-color: #f0fafc;
  color: #0172b0;
  font-family: var(--font-family);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-location {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.6;
}

.btn-apply-job {
  width: 100%;
  margin-top: 1.5rem;
  align-self: flex-start;
  text-align: center;
}

/* Careers Application Form */
.application-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 28px;
  padding: 4.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-shadow: 0 10px 40px rgba(14, 27, 47, 0.05);
}

.application-section h2 {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-navy);
}

.app-form {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  font-family: var(--font-family);
  font-size: 1.5rem;
  padding: 1.2rem 1.6rem;
  border: 1.5px solid rgba(14, 27, 47, 0.15);
  border-radius: 12px;
  background-color: #fafbfc;
  color: var(--color-navy);
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
}

.form-group input:hover, 
.form-group select:hover, 
.form-group textarea:hover {
  border-color: rgba(1, 114, 176, 0.4);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: #0172b0;
  box-shadow: 0 0 0 4px rgba(1, 114, 176, 0.12);
  background-color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  margin-top: 1rem;
  width: 100%;
}

/* Success Confirmation State */
.success-message-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.success-message-box h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-navy);
}

.success-message-box p {
  font-size: 1.5rem;
  opacity: 0.7;
  line-height: 1.5;
  max-width: 480px;
}

@media (max-width: 768px) {
  .application-section {
    padding: 3rem 2rem;
    border-radius: 20px;
  }
  .application-section h2 {
    font-size: 2.4rem;
  }
  .form-group label {
    font-size: 1.3rem;
  }
}

/* Forum Board Styles */
.forum-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  width: 100%;
}

.forum-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.forum-sidebar-card {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.02);
}

.forum-sidebar-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.board-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.board-item {
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.board-item:hover {
  background-color: #f8fafc;
  border-color: rgba(14, 27, 47, 0.05);
}

.board-item.active {
  background-color: #0e1b2f;
  color: #ffffff;
  border-color: #0e1b2f;
}

.board-item.active .board-name {
  color: #ffffff;
}

.board-item.active .board-meta {
  color: rgba(255, 255, 255, 0.6);
}

.board-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.board-meta {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.6;
}

.lock-badge {
  background-color: #fef2f2;
  color: #ef4444;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.board-item.active .lock-badge {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.open-badge {
  background-color: #ecfdf5;
  color: #10b981;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  max-width: fit-content;
}

.board-item.active .open-badge {
  background-color: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
}

/* Discussion Threads Area */
.forum-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.thread-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.thread-card {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-align: left;
}

.thread-card:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 114, 176, 0.2);
}

.thread-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0172b0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
}

.user-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.user-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
}

.thread-time {
  font-size: 1.1rem;
  opacity: 0.55;
  font-weight: 500;
}

.thread-body {
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--color-navy);
  text-wrap: pretty;
}

.thread-replies {
  border-left: 2px solid rgba(14, 27, 47, 0.08);
  padding-left: 2rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.reply-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reply-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #334155;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reply-body {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-navy);
}

/* Post Form styles */
.post-form-card {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.post-form-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
}

/* Biometric Enclave Login Modal */
.bio-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 27, 47, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.bio-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.bio-modal-content {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 4rem;
  max-width: 480px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.bio-modal-overlay.active .bio-modal-content {
  transform: translateY(0) scale(1);
}

.bio-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fef2f2;
  color: #ef4444;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
}

.bio-modal-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.bio-modal-content p {
  font-size: 1.4rem;
  opacity: 0.7;
  line-height: 1.5;
}

.bio-key-upload {
  border: 2px dashed rgba(14, 27, 47, 0.2);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fafbfc;
}

.bio-key-upload:hover {
  border-color: #0172b0;
  background-color: #f0fafc;
}

.bio-key-icon {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.bio-key-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.bio-key-subtext {
  font-size: 1rem;
  opacity: 0.5;
  margin-top: 0.2rem;
}

.bio-close-btn {
  background-color: var(--color-navy);
  color: #ffffff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 1.3rem;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.bio-close-btn:hover {
  background-color: #334155;
}

@media (max-width: 900px) {
  .forum-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .thread-card {
    padding: 2rem;
  }
  .thread-replies {
    padding-left: 1.2rem;
  }
  .bio-modal-content {
    padding: 3rem 2rem;
  }
}

/* Floating Animation for Landing Page Images */
.landing-page .mockup-image {
  animation: float-landing 6s ease-in-out infinite;
}

.landing-page .img-d-core {
  animation-delay: 1.5s;
}

@keyframes float-landing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Follow us text and navigation footer links */
.follow-us-text {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
}

.bottom-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  width: 100%;
}

.bottom-nav-link {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bottom-nav-link:hover {
  color: #0172b0;
  transform: translateY(-1px);
}

.question-text {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.8;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.ask-link {
  color: #0172b0;
  text-decoration: underline;
  font-weight: 800;
  transition: color 0.2s ease;
}

.ask-link:hover {
  color: #015e91;
}

@media (max-width: 768px) {
  .follow-us-text {
    font-size: 1.3rem;
  }
  .bottom-nav-links {
    gap: 1.5rem;
  }
  .bottom-nav-link {
    font-size: 1.2rem;
  }
  .question-text {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

/* Responsive Grid Card Spanning */
.feature-card.span-2 {
  grid-column: span 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .feature-card.span-2 {
    grid-column: span 1;
  }
}

/* Q&A Page Styles */
.qa-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.qa-card {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-align: left;
}

.qa-card:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 114, 176, 0.2);
}

.qa-question-box, .qa-answer-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.qa-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.qa-badge.Q {
  background-color: #f0fafc;
  color: #0172b0;
}

.qa-badge.A {
  background-color: #ecfdf5;
  color: #10b981;
}

.qa-question {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.35;
}

.qa-answer {
  font-size: 1.45rem;
  font-weight: 500;
  opacity: 0.7;
  color: var(--color-navy);
  line-height: 1.55;
  text-wrap: pretty;
}

.search-box-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.search-box-container input {
  font-family: var(--font-family);
  font-size: 1.6rem;
  padding: 1.4rem 2rem;
  border: 1.5px solid rgba(14, 27, 47, 0.15);
  border-radius: 16px;
  background-color: #fafbfc;
  color: var(--color-navy);
  outline: none;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(14, 27, 47, 0.01);
}

.search-box-container input:hover {
  border-color: rgba(1, 114, 176, 0.4);
}

.search-box-container input:focus {
  border-color: #0172b0;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(1, 114, 176, 0.12);
}

.ask-box-container {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.ask-box-container h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
}

.ask-box-container p {
  font-size: 1.35rem;
  opacity: 0.6;
  line-height: 1.4;
}

.qa-card.user-submitted {
  border-left: 4px solid #0172b0;
}

@media (max-width: 768px) {
  .qa-card {
    padding: 2rem 1.8rem;
  }
  .qa-question {
    font-size: 1.4rem;
  }
  .qa-answer {
    font-size: 1.3rem;
  }
  .search-box-container input {
    font-size: 1.4rem;
    padding: 1.2rem 1.6rem;
  }
  .ask-box-container {
    padding: 2rem 1.8rem;
  }
  .ask-box-container h3 {
    font-size: 1.6rem;
  }
}

/* Inline X Icon Button */
.social-link-x-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: #000000;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-link-x-inline:hover {
  background-color: #0172b0;
  transform: scale(1.1);
}

.x-icon-inline {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .success-message-box h3 {
    font-size: 2rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
  }
  .btn-primary, .btn-secondary, .form-submit-btn, .btn-apply-job {
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
  }
  .form-group select, .form-group input, .form-group textarea {
    font-size: 1.4rem;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Site Header and Logo */
.site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.5rem 4rem 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 16px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.site-logo:hover {
  opacity: 0.8;
}

.btn-login-header {
  background-color: transparent;
  color: var(--color-navy);
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-weight: 800;
  padding: 0;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease-in-out;
  line-height: 16px; /* Match D-YOU logo height */
  display: inline-block;
}

.btn-login-header:hover {
  color: #0172b0;
}

.btn-login-header:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 2rem 0 2rem;
  }
  .site-logo {
    height: 13px;
  }
  .btn-login-header {
    font-size: 1.1rem;
    line-height: 13px; /* Match mobile D-YOU logo height */
  }
}

/* Copyright Text */
.copyright-text {
  font-size: 1.25rem;
  opacity: 0.45;
  color: var(--color-navy);
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 100%;
}

@media (max-width: 768px) {
  .copyright-text {
    font-size: 1.05rem;
    margin-top: 1.8rem;
  }
}

/* Floating DU Home Button */
.floating-home-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  z-index: 9999;
}

.floating-home-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-home-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

/* PayPal Button Styling Match */
.paypal-form-match {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 380px;
  max-width: 100%;
}

.btn-paypal-match {
  background-color: #0172b0;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 800;
  padding: 1.4rem 0;
  width: 100%;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(1, 114, 176, 0.25);
  display: block;
  text-align: center;
  margin: 0 auto;
}

.btn-paypal-match:hover {
  background-color: #015e91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 114, 176, 0.35);
}

.btn-paypal-match:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .floating-home-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .floating-home-btn img {
    width: 20px;
    height: 20px;
  }
  
  .paypal-form-match {
    width: 100%;
    max-width: 100%;
  }

  .btn-paypal-match {
    font-size: 1.4rem;
    padding: 1.1rem 0;
  }
}

/* Inline Button Logo */
.btn-logo-inline {
  height: 1.25em;
  width: auto;
  vertical-align: middle;
  margin: -0.25em 0.25em 0 0.25em;
  display: inline-block;
  filter: brightness(0) invert(1);
}

/* Inline Text Logo */
.logo-inline {
  height: 1.1em;
  width: auto;
  vertical-align: middle;
  margin: -0.2em 0.15em 0 0.15em;
  display: inline-block;
}

/* Fund Type Under-Button Text */
.fund-type-text {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  margin-top: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .fund-type-text {
    font-size: 1.1rem;
    margin-top: 0.6rem;
  }
}

/* Funding Channels Flex Layout */
.funding-channels-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  margin-top: 4.5rem;
  width: 100%;
}

.funding-divider-or {
  align-self: center;
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.65;
  color: var(--color-navy);
  margin-top: 1.8rem; /* Align vertically with the center of the buttons */
  text-transform: lowercase;
}

@media (max-width: 768px) {
  .funding-channels-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .funding-divider-or {
    margin: 0.5rem 0;
    align-self: center;
    margin-top: 0; /* Reset desktop top margin offset on mobile */
  }
}

/* Team Page Styles */
.team-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team-list-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 1rem;
}

.team-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 0;
  margin: 0;
}

.team-member-item {
  position: relative;
  padding-left: 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(14, 27, 47, 0.75);
  text-align: left;
}

.team-member-item::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  top: -0.2em;
  color: #0172b0; /* Signature D-YOU blue color */
  font-size: 3rem;
}

.team-member-name {
  font-weight: 800;
  color: var(--color-navy);
  margin-right: 0.2rem;
}

.landing-page .team-subtitle {
  font-size: 1.6rem;
  max-width: 900px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .landing-page .team-subtitle {
    font-size: 1.35rem;
    line-height: 1.4;
  }
  .team-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }
  .team-list-title {
    font-size: 2.4rem;
  }
  .team-member-item {
    font-size: 1.45rem;
    padding-left: 2.2rem;
    line-height: 1.5;
  }
  .team-member-item::before {
    left: 0.2rem;
    font-size: 2.4rem;
    top: -0.1em;
  }
}

/* Pals Hub Custom Styles */
.pals-hub-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  text-align: left;
}

.pals-hub-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.pals-hub-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

/* Progress Bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.progress-label {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
}

.progress-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
}

.progress-bar-bg {
  width: 100%;
  height: 16px;
  background-color: #f1f3f5;
  border-radius: 30px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #0172b0; /* Blue instead of green */
  border-radius: 30px;
  transition: width 1s ease-out;
}

/* Metrics Cards Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.metric-card {
  background-color: #ffffff;
  border: 1px solid rgba(14, 27, 47, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 20px rgba(14, 27, 47, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 27, 47, 0.05);
}

.metric-icon {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 1;
}

.metric-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.6;
  margin-bottom: 0.8rem;
}

.metric-value {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .pals-hub-title {
    font-size: 2.8rem;
  }
  .progress-list {
    gap: 4.5rem;
  }
  .progress-header {
    align-items: flex-start;
    gap: 1.5rem;
  }
  .progress-label, .progress-val {
    font-size: 1.4rem;
    line-height: 1.35;
  }
  .progress-item {
    gap: 1.2rem;
  }
  .metric-card {
    padding: 2.5rem 2rem;
  }
  .metric-value {
    font-size: 3rem;
  }
}

/* Bottom row container to align X follow, copyright and Share button on same level */
.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  margin: 3.5rem 0 1.5rem 0;
}

.follow-us-container {
  display: flex;
  align-items: center;
  justify-self: start;
}

/* Inline Share D-YOU's Vision Button Styles (End of Page - Bottom Right) */
.share-vision-container {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  justify-self: end;
}

.footer-bottom-row .copyright-text {
  margin: 0;
  width: auto;
  justify-self: center;
  text-align: center;
}

.share-vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.share-vision-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.share-vision-btn:active {
  transform: translateY(1px);
}

.share-vision-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0172b0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(1, 114, 176, 0.3);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.share-vision-logo-img {
  width: 27px;
  height: 27px;
  display: block;
  filter: brightness(0) invert(1);
}

.share-vision-btn:hover .share-vision-logo-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(1, 114, 176, 0.45);
  background-color: #015e91;
}

/* Share Toast Message */
.share-toast {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0e1b2f;
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10000;
  pointer-events: none;
  font-family: var(--font-family);
  letter-spacing: 0.02em;
  opacity: 0;
  visibility: hidden;
}

.share-toast.show {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .footer-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    width: 100%;
  }
  .follow-us-container {
    justify-content: center;
    width: 100%;
    justify-self: auto;
    order: 3;
  }
  .share-vision-container {
    margin-left: 0;
    justify-content: center;
    width: 100%;
    justify-self: auto;
    order: 2;
  }
  .footer-bottom-row .copyright-text {
    margin: 0;
    width: 100%;
    text-align: center;
    order: 1;
  }
  .share-vision-btn {
    font-size: 1.6rem;
    gap: 1rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  .share-vision-logo-circle {
    width: 40px;
    height: 40px;
  }
  .share-vision-logo-img {
    width: 22px;
    height: 22px;
  }
  .share-toast {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 90%;
    max-width: 320px;
    text-align: center;
  }
  .share-toast.show {
    bottom: 20px;
  }
}













