/* ==========================================================================
   TAFF - Golf & Impact Main Stylesheet
   Design Tokens, Modern Typography, Fixed Header, Hero Section & Glass Cards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-purple: #9556f8;
  --primary-purple-hover: #4c1dca;
  --primary-purple-light: #ece7fe;
  --accent-green: #a3e635;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --text-light: #ffffff;
  --bg-body: #f8fafc;
  --header-bg: #ffffff;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing & Layout */
  --header-height: 7vw;
  --border-radius-hero: 1.94vw;
  --border-radius-card: 1.11vw;

  /* Glassmorphism */
  --glass-bg: rgba(30, 42, 22, 0.62);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 1.11vw;
}

/* ==========================================================================
   TAFF CINEMATIC PRELOADER — Full Screen Luxury Golf Experience
   All sizes in vw; only @media max-width uses px
   ========================================================================== */

/* ==========================================================================
   Page Preloader
   ========================================================================== */
.loader-wrap {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 10s ease;
}

.loader-wrap.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.animation-preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner-container {
  position: relative;
  width: 22vw;
  height: 22vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  position: absolute;
  inset: -0.2vw;
  border-radius: 50%;
  border: 0.3vw solid transparent;
  border-top-color: var(--primary-purple);
  border-bottom-color: var(--accent-green);
  animation: spin 1.5s linear infinite;
  z-index: 0;
}

.preloader-logo {
  position: absolute;
  width: 93vw;
  height: 64vh;
  object-fit: contain;
  z-index: 1;
  animation: zoomInLogo 1.5s ease-out forwards;
}

@keyframes zoomInLogo {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.txt-loading {
  margin-top: 1.39vw;
  display: flex;
  gap: 0;
  text-align: center;
  user-select: none;
  animation: smooth-slide-up 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes smooth-slide-up {
  0% {
    opacity: 0;
    transform: translateY(1.5vw);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.txt-loading .letters-loading {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.5vw;
  display: inline-block;
  position: relative;
  font-size: 3vw;
  line-height: 3.5vw;
  text-transform: uppercase;
  color: var(--text-dark);
}

.txt-loading .letters-loading:nth-child(1):before {
  animation-delay: 0.0s;
}

.txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.1s;
}

.txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.2s;
}

.txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.3s;
}

.txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.4s;
}

.txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 0.5s;
}

.txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 0.6s;
}

.txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 0.7s;
}

.txt-loading .letters-loading:nth-child(9):before {
  animation-delay: 0.8s;
}

.txt-loading .letters-loading:nth-child(10):before {
  animation-delay: 0.9s;
}

.txt-loading .letters-loading:nth-child(11):before {
  animation-delay: 1.0s;
}

.txt-loading .letters-loading:nth-child(12):before {
  animation-delay: 1.1s;
}

.txt-loading .letters-loading:nth-child(13):before {
  animation-delay: 1.2s;
}

.txt-loading .letters-loading:nth-child(14):before {
  animation-delay: 1.3s;
}

.txt-loading .letters-loading:nth-child(15):before {
  animation-delay: 1.4s;
}

.txt-loading .letters-loading:nth-child(16):before {
  animation-delay: 1.5s;
}

.txt-loading .letters-loading:nth-child(17):before {
  animation-delay: 1.6s;
}

.txt-loading .letters-loading:nth-child(18):before {
  animation-delay: 1.7s;
}

.txt-loading .letters-loading:nth-child(19):before {
  animation-delay: 1.8s;
}

.txt-loading .letters-loading:nth-child(20):before {
  animation-delay: 1.9s;
}

.txt-loading .letters-loading:nth-child(21):before {
  animation-delay: 2.0s;
}

.txt-loading .letters-loading:nth-child(22):before {
  animation-delay: 2.1s;
}

.txt-loading .letters-loading:nth-child(23):before {
  animation-delay: 2.2s;
}

.txt-loading .letters-loading:nth-child(24):before {
  animation-delay: 2.3s;
}

.txt-loading .letters-loading:nth-child(25):before {
  animation-delay: 2.4s;
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}



/* Reset & Base Styles (Box Shadow Removed Globally) */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-dark);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Header Navigation (Fixed Top Bar)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: var(--header-height); */
  height: 9vw;
  background-color: var(--header-bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.33vw 0 0;
  box-shadow: 0 0.14vw 1.04vw rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 0.28vw 1.39vw rgba(0, 0, 0, 0.08);
  height: 8vw;
}

.header.scrolled .brand-logo-img {
  width: 11vw;
  /* margin-top: 1vw; */
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  text-decoration: none;
}

.brand-logo-icon {
  width: 2.22vw;
  height: 2.22vw;
  border-radius: 50%;
  background: conic-gradient(from 180deg at 50% 50%, #10b981 0deg, #3b82f6 120deg, #6366f1 240deg, #10b981 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0.14vw 0.56vw rgba(99, 102, 241, 0.3);
}

.brand-logo-img {
  width: 12vw;
  height: auto;
  object-fit: contain;
  margin-top: -1vw;
  transition: all 0.3s ease;
}

.brand-logo-icon::after {
  content: '';
  width: 0.83vw;
  height: 0.83vw;
  background: #ffffff;
  border-radius: 50%;
}

.brand-name {
  font-size: 1.53vw;
  font-weight: 800;
  letter-spacing: 0.07vw;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.04vw;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.28vw 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-purple);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.14vw;
  left: 0;
  width: 0;
  height: 0.14vw;
  background-color: var(--primary-purple);
  transition: width 0.3s ease;
  border-radius: 0.14vw;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-only-link {
  display: none;
}

/* Contact Button Group */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.42vw;
}

.btn-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 0.42vw;
  text-decoration: none;
  cursor: pointer;
}

.btn-contact {
  background-color: var(--primary-purple);
  color: white;
  padding: 0.69vw 1.67vw;
  border-radius: 694.38vw;
  font-size: 0.97vw;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease;
  /* box-shadow: 0 0.28vw 0.83vw rgba(94, 39, 230, 0.25); */
  display: flex;
  align-items: center;
}

.btn-contact-arrow {
  width: 2.64vw;
  height: 2.64vw;
  border-radius: 50%;
  background-color: var(--primary-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  /* box-shadow: 0 0.28vw 0.83vw rgba(94, 39, 230, 0.25); */
}

.btn-contact-arrow svg {
  width: 1.11vw;
  height: 1.11vw;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.25s ease;
}

.btn-contact-wrapper:hover .btn-contact,
.btn-contact-wrapper:hover .btn-contact-arrow {
  background-color: var(--primary-purple-hover);
  /* box-shadow: 0 0.42vw 1.25vw rgba(94, 39, 230, 0.4); */
}

.btn-contact-wrapper:hover .btn-contact-arrow svg {
  transform: translate(0.14vw, -0.14vw);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.56vw;
}

.mobile-menu-btn span {
  display: block;
  width: 1.67vw;
  height: 0.14vw;
  background-color: var(--text-dark);
  margin: 0.35vw 0;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
/* ==========================================================================
   Hero Section (Previous Section with 3 Glassmorphism Event Cards)
   ========================================================================== */
.hero-wrapper {
  padding-top: calc(var(--header-height) + 1.11vw);
  padding-bottom: 1.67vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
  background-color: white;
}

.hero-card {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-hero);
  background-color: white;
  overflow: hidden;
  /* box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.08); */
}

.hero-events-card {
  height: 40.28vw;
  min-height: 36.11vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.78vw 3.06vw;
}

.hero-full-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: 1;
}

/* Dark gradient overlay for event hero readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content-bottom {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-divider {
  width: 100%;
  height: 0.07vw;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.67vw;
}

.events-header {
  display: flex;
  align-items: center;
  gap: 0.69vw;
  margin-bottom: 1.39vw;
}

.events-title {
  font-family: var(--font-serif);
  font-size: 2.5vw;
  font-weight: 500;
  color: white;
  letter-spacing: -0.03vw;
}

.events-accent-circle {
  width: 0.83vw;
  height: 0.83vw;
  border: 0.14vw solid var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0.56vw rgba(163, 230, 53, 0.6);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.39vw;
  width: 100%;
}

.event-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 0.07vw solid var(--glass-border);
  border-radius: var(--border-radius-card);
  padding: 0.97vw 1.25vw;
  display: flex;
  align-items: center;
  gap: 1.11vw;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-0.28vw);
  background: rgba(42, 58, 30, 0.78);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0.69vw 2.08vw rgba(0, 0, 0, 0.3);
}

.event-thumb {
  width: 4.17vw;
  height: 4.17vw;
  border-radius: 0.69vw;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0.28vw 0.69vw rgba(0, 0, 0, 0.2);
}

.event-info {
  display: flex;
  flex-direction: column;
}

.event-card-title {
  font-size: 1.04vw;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: 0.28vw;
}

.event-card-date {
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

/* ==========================================================================
   Newly Created "Welcome to TAF" About Section Card
   ========================================================================== */
.about-section-wrapper {
  padding-top: 1.11vw;
  padding-bottom: 3.33vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.about-taf-card {
  height: 37.5vw;
  min-height: 33.33vw;
  display: flex;
  align-items: center;
}

/* Soft dark gradient overlay on left for supreme legibility */
.hero-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.5) 25%,
      rgba(255, 255, 255, 0.1) 45%,
      rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.33vw 4.44vw;
}

.hero-text-block {
  max-width: 36.11vw;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 3.2vw;
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 1.53vw;
  letter-spacing: -0.03vw;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 1), 0px 0px 30px rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 1.11vw;
  line-height: 1.68;
  color: #000000;
  font-weight: 400;
  margin-bottom: 2.22vw;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 20px rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.11vw;
}

.btn-discover {
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 0.97vw 2.22vw;
  border-radius: 694.38vw;
  font-size: 1.04vw;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.28vw 0.97vw rgba(94, 39, 230, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-discover:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-0.14vw);
  box-shadow: 0 0.56vw 1.53vw rgba(94, 39, 230, 0.45);
}

/* Floating Play Button on Right Side */
.hero-play-btn {
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background-color: var(--primary-purple);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3.33vw;
  box-shadow: 0 0.56vw 1.81vw rgba(94, 39, 230, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hero-play-btn:hover {
  transform: scale(1.12);
  background-color: var(--primary-purple-hover);
  box-shadow: 0 0.83vw 2.22vw rgba(94, 39, 230, 0.6);
}

.hero-play-btn .play-icon {
  width: 1.81vw;
  height: 1.81vw;
  fill: #ffffff;
  margin-left: 0.21vw;
}

/* Floating Bottom Right Assistant Icon */
.floating-widget {
  position: fixed;
  bottom: 1.67vw;
  right: 1.67vw;
  z-index: 990;
  background: #ffffff;
  border-radius: 0.83vw;
  padding: 0.69vw;
  box-shadow: 0 0.42vw 1.67vw rgba(0, 0, 0, 0.15);
  border: 0.07vw solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-widget:hover {
  transform: scale(1.06);
  box-shadow: 0 0.56vw 2.08vw rgba(0, 0, 0, 0.2);
}

.floating-widget svg {
  width: 1.39vw;
  height: 1.39vw;
  fill: #374151;
}

/* ==========================================================================
   "We Are All Ambassadors" Section (2-Column Card Grid)
/* ==========================================================================
   "We Are All Ambassadors" Section (Exact Match to Reference Image)
   ========================================================================== */
.ambassadors-section-wrapper {
  padding-top: 1.11vw;
  padding-bottom: 3.33vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.ambassadors-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.94vw;
  align-items: stretch;
}

.ambassadors-text-card {
  background-color: #041c12;
  border-radius: var(--border-radius-hero);
  padding: 3.33vw 3.61vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.08);
  height: 35vw;
}

.ambassadors-title {
  font-family: var(--font-serif);
  font-size: 2.8vw;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 1.67vw;
  letter-spacing: -0.03vw;
  line-height: 1.15;
}

.ambassadors-paragraph {
  font-family: var(--font-sans);
  font-size: 1.04vw;
  line-height: 1.65;
  color: #cbd5e1;
  font-weight: 400;
  margin-bottom: 1.53vw;
}

.ambassadors-actions {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  margin-top: 0.69vw;
}

.btn-explore-more {
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 0.9vw 2.08vw;
  border-radius: 694.38vw;
  font-size: 0.94vw;
  font-weight: 700;
  letter-spacing: 0.03vw;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.28vw 0.97vw rgba(94, 39, 230, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-explore-more:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-0.14vw);
  box-shadow: 0 0.56vw 1.53vw rgba(94, 39, 230, 0.45);
}

.btn-explore-arrow {
  width: 2.92vw;
  height: 2.92vw;
  border-radius: 50%;
  background-color: var(--primary-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.28vw 0.97vw rgba(94, 39, 230, 0.35);
}

.btn-explore-arrow svg {
  width: 1.25vw;
  height: 1.25vw;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.25s ease;
}

.ambassadors-actions:hover .btn-explore-arrow,
.btn-explore-arrow:hover {
  background-color: var(--primary-purple-hover);
  box-shadow: 0 0.56vw 1.53vw rgba(94, 39, 230, 0.45);
}

.ambassadors-actions:hover .btn-explore-arrow svg {
  transform: translate(0.14vw, -0.14vw);
}

.ambassadors-image-card {
  border-radius: var(--border-radius-hero);
  overflow: hidden;
  position: relative;
  height: 35vw;
  width: 100%;
  box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.08);
}

.ambassadors-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================================
   TAF Signature Experiences Section (Matches User Reference Image)
   ========================================================================== */
.signature-section-wrapper {
  padding-top: 3.89vw;
  padding-bottom: 5vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.signature-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3.06vw;
  gap: 2.22vw;
}

.signature-main-title {
  font-family: var(--font-serif);
  font-size: 3.2vw;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.03vw;
  line-height: 1.1;
  max-width: 48.61vw;
}

.signature-header-desc {
  font-family: var(--font-sans);
  font-size: 1.11vw;
  line-height: 1.6;
  color: #6b7280;
  max-width: 30.56vw;
  margin-top: 0.56vw;
}

.signature-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1vw 0;
}

.signature-grid {
  display: flex;
  gap: 0.8vw;
  width: max-content;
  animation: signature-marquee 120s linear infinite;
}

.signature-grid:hover {
  animation-play-state: paused;
}

@keyframes signature-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.97vw));
  }
}

.signature-card {
  width: 32vw;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.signature-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.67vw;
  overflow: hidden;
  margin-bottom: 1.39vw;
  box-shadow: 0 0.69vw 2.08vw rgba(0, 0, 0, 0.06);
}

.signature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.67vw;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.signature-card:hover .signature-img {
  transform: scale(1.05);
}

.signature-card-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.11vw;
  padding-right: 0.28vw;
}

.signature-card-title {
  font-family: var(--font-serif);
  font-size: 1.46vw;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  flex: 1;
}

.signature-arrow-btn {
  width: 2.78vw;
  height: 2.78vw;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.signature-arrow-btn.purple-btn {
  background-color: var(--primary-purple);
  color: #ffffff;
  box-shadow: 0 0.28vw 0.97vw rgba(94, 39, 230, 0.3);
}

.signature-arrow-btn.dark-btn {
  background-color: #111827;
  color: #ffffff;
  box-shadow: 0 0.28vw 0.97vw rgba(17, 24, 39, 0.3);
}

.signature-arrow-btn svg {
  width: 1.25vw;
  height: 1.25vw;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.25s ease;
}

.signature-card:hover .signature-arrow-btn {
  transform: scale(1.08);
}

.signature-card:hover .signature-arrow-btn svg {
  transform: translateX(0.21vw);
}

/* ==========================================================================
   "For the Global Society that matters ." Section (Matches User Reference Image)
   ========================================================================== */
.global-society-wrapper {
  padding-top: 1.67vw;
  padding-bottom: 5vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.global-society-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.94vw;
  align-items: stretch;
}

.global-society-image-card {
  border-radius: var(--border-radius-hero);
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.08);
}

.global-society-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.global-society-text-card {
  background-color: #ffffff;
  border-radius: var(--border-radius-hero);
  padding: 3.33vw 3.61vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.08);
}

.global-society-title {
  font-family: var(--font-serif);
  font-size: 2.8vw;
  font-weight: 700;
  color: #114b32;
  margin-top: 0;
  margin-bottom: 1.67vw;
  letter-spacing: -0.03vw;
  line-height: 1.15;
}

.global-society-paragraph {
  font-family: var(--font-sans);
  font-size: 1.04vw;
  line-height: 1.65;
  color: #1a593e;
  font-weight: 400;
  margin-bottom: 1.53vw;
}

.global-society-actions {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  margin-top: 0.69vw;
}

.btn-learn-more {
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 0.9vw 2.08vw;
  border-radius: 694.38vw;
  font-size: 0.94vw;
  font-weight: 700;
  letter-spacing: 0.03vw;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.28vw 0.97vw rgba(94, 39, 230, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-learn-more:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-0.14vw);
  box-shadow: 0 0.56vw 1.53vw rgba(94, 39, 230, 0.45);
}

.btn-learn-arrow {
  width: 2.92vw;
  height: 2.92vw;
  border-radius: 50%;
  background-color: var(--primary-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.28vw 0.97vw rgba(94, 39, 230, 0.35);
}

.btn-learn-arrow svg {
  width: 1.25vw;
  height: 1.25vw;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.25s ease;
}

.global-society-actions:hover .btn-learn-arrow,
.btn-learn-arrow:hover {
  background-color: var(--primary-purple-hover);
  box-shadow: 0 0.56vw 1.53vw rgba(94, 39, 230, 0.45);
}

.global-society-actions:hover .btn-learn-arrow svg {
  transform: translate(0.14vw, -0.14vw);
}

/* ==========================================================================
   "Our e3 impact" Section (8 photos movement)
   ========================================================================== */
/* ==========================================================================
   "Our e3 impact" Section (8 photos movement)
   ========================================================================== */
.e3-impact-section {
  padding-top: 3vw;
  padding-bottom: 3vw;
  max-width: 100vw;
  overflow: hidden;
  background-color: #041c12;
  /* Deep Theme Green for better contrast */
}

.e3-impact-header {
  text-align: center;
  margin-bottom: 2vw;
}

.e3-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8vw;
  font-weight: 700;
  letter-spacing: 0.25vw;
  color: #94a3b8;
  /* Muted light */
  text-transform: uppercase;
  margin-bottom: 0.6vw;
  display: block;
}

.e3-title {
  font-family: var(--font-serif);
  font-size: 2.2vw;
  font-weight: 500;
  color: #ffffff;
  /* White title on dark bg */
}

.e3-carousel {
  position: relative;
  width: 100%;
}

.e3-carousel-track {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  padding: 2vw 50vw 2vw 50vw;
  /* padding to allow center alignment of first and last items */
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  /* JS will handle centering */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.e3-carousel-track::-webkit-scrollbar {
  display: none;
}

.e3-card {
  position: relative;
  flex: 0 0 17vw;
  height: 24vw;
  border-radius: 1vw;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  opacity: 0.4;
  transform: scale(0.85);
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.2);
}

.e3-card.active {
  opacity: 1;
  flex: 0 0 26vw;
  height: 28vw;
  transform: scale(1);
  box-shadow: 0 1.5vw 3.5vw rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.e3-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.e3-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 2vw);
  margin: 1vw;
  background-color: #ffffff;
  /* Theme white */
  border-radius: 0.5vw;
  padding: 1.8vw;
  z-index: 3;
  color: #111827;
  transform: translateY(2vw);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
}

.e3-card.active .e3-card-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.e3-tag {
  display: none;
  /* Hiding tag to match the clean look of the screenshot text box */
}

.e3-card-title {
  display: none;
  /* We will use the desc as the main text like in the screenshot */
}

.e3-card-desc {
  font-family: var(--font-sans);
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.2vw;
  color: #1f2937;
}

.e3-btn-explore {
  font-family: var(--font-sans);
  display: inline-block;
  background-color: var(--primary-purple);
  /* Theme Purple */
  color: white;
  padding: 0.6vw 1.5vw;
  border-radius: 0.3vw;
  font-size: 0.75vw;
  font-weight: 700;
  letter-spacing: 0.05vw;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.e3-btn-explore:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-0.1vw);
}

.e3-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  margin-top: 2vw;
}

.e3-btn-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease;
}

.e3-btn-control:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
}

.e3-btn-control svg {
  width: 1vw;
  height: 1vw;
}

/* ==========================================================================
   7. TAFF Informal Rounds / Philosophy Section (Matches User Reference Images)
   ========================================================================== */
.informal-rounds-wrapper {
  padding-top: 3vw;
  padding-bottom: 4vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.informal-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.9vw;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2vw;
}

.informal-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.11vw;
  margin-bottom: 2.5vw;
}

.informal-icon-badge {
  width: 3.61vw;
  height: 3.61vw;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.informal-icon-badge:hover {
  transform: translateY(-0.14vw);
}

.informal-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42);
  display: block;
  mix-blend-mode: multiply;
}

.informal-statement-box {
  max-width: 66.67vw;
  margin: 0 auto 3.33vw auto;
  text-align: center;
}

.informal-paragraph {
  font-family: var(--font-sans);
  font-size: 1.18vw;
  line-height: 1.72;
  color: #334155;
  font-weight: 400;
  margin-bottom: 1.67vw;
}

.informal-paragraph:last-child {
  margin-bottom: 0;
}

.informal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5vw;
  align-items: center;
  margin-top: 3.89vw;
  padding-bottom: 1.67vw;
}

.peacock-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.informal-img-card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 1.67vw;
  overflow: hidden;
  box-shadow: 0 0.97vw 2.22vw rgba(0, 0, 0, 0.07);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.informal-img-card:nth-child(1) {
  transform: translateY(1.67vw);
}

.informal-img-card:nth-child(2) {
  transform: translateY(-1.94vw);
}

.informal-img-card:nth-child(3) {
  transform: translateY(1.67vw);
}

.informal-img-card:nth-child(4) {
  transform: translateY(-1.94vw);
}

.informal-img-card:nth-child(5) {
  transform: translateY(1.67vw);
}

.informal-img-card:nth-child(1):hover {
  transform: translateY(1.25vw) scale(1.03);
  box-shadow: 0 1.39vw 2.78vw rgba(0, 0, 0, 0.12);
}

.informal-img-card:nth-child(2):hover {
  transform: translateY(-2.36vw) scale(1.03);
  box-shadow: 0 1.39vw 2.78vw rgba(0, 0, 0, 0.12);
}

.informal-img-card:nth-child(3):hover {
  transform: translateY(0.83vw) scale(1.03);
  box-shadow: 0 1.39vw 2.78vw rgba(0, 0, 0, 0.12);
}

.peacock-gallery-grid .informal-img-card:nth-child(4):hover {
  transform: translateY(-2.36vw) scale(1.03);
  box-shadow: 0 1.39vw 2.78vw rgba(0, 0, 0, 0.12);
}

.informal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   8. Partnerships & Collaborators Section (Matches User Reference Images)
   ========================================================================== */
.partnerships-section-wrapper {
  padding-top: 3.89vw;
  padding-bottom: 6.11vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.partnerships-header {
  text-align: center;
  max-width: 56.94vw;
  margin: 0 auto 3.61vw auto;
}

.partnerships-title {
  font-family: var(--font-serif);
  font-size: 3.2vw;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03vw;
  margin-bottom: 1.25vw;
}

.partnerships-desc {
  font-family: var(--font-sans);
  font-size: 1.11vw;
  line-height: 1.65;
  color: #64748b;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.94vw;
  align-items: start;
}

.partnerships-col {
  display: flex;
  flex-direction: column;
  gap: 1.67vw;
}

.pillar-card {
  background-color: #fdfbf7;
  border: 0.07vw solid #f3eee6;
  border-radius: 1.39vw;
  padding: 1.39vw 1.94vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 0.28vw 0.97vw rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
  background-color: #ffffff;
  transform: translateY(-0.21vw);
  box-shadow: 0 0.83vw 1.94vw rgba(0, 0, 0, 0.07);
  border-color: var(--primary-purple);
}

.pillar-card-left {
  display: flex;
  align-items: center;
  gap: 1.11vw;
}

.pillar-icon-box {
  width: 1.94vw;
  height: 1.94vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.pillar-icon-box svg {
  width: 1.67vw;
  height: 1.67vw;
  fill: currentColor;
}

.pillar-name {
  font-family: var(--font-sans);
  font-size: 1.18vw;
  font-weight: 700;
  color: #111827;
}

.pillar-number {
  font-family: var(--font-sans);
  font-size: 1.18vw;
  font-weight: 600;
  color: #856a35;
}

.partnerships-img-card {
  width: 100%;
  height: 22.92vw;
  border-radius: 1.67vw;
  overflow: hidden;
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.08);
}

.partnerships-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnerships-img-card:hover .partnerships-img {
  transform: scale(1.05);
}

/* ==========================================================================
   9. "The Champions" Section (Matches User Reference Image)
   ========================================================================== */
.champions-section-wrapper {
  background-color: #e5e9ec;
  padding-top: 2.43vw;
  padding-bottom: 5vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  width: 100%;
}

.champions-title {
  font-family: var(--font-serif);
  font-size: 3.61vw;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3.33vw;
  letter-spacing: -0.03vw;
}

.champions-carousel-container {
  max-width: 108.33vw;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.11vw;
}

.champions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.94vw;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.champions-grid::-webkit-scrollbar {
  display: none;
}

.champions-card {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  border-radius: 1.67vw;
  overflow: hidden;
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.champions-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.champions-card:hover .champions-img {
  transform: scale(1.05);
}

.champions-nav-btn {
  width: 3.19vw;
  height: 3.19vw;
  border-radius: 50%;
  background-color: var(--primary-purple);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0.28vw 1.11vw rgba(94, 39, 230, 0.35);
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.champions-nav-btn:hover {
  background-color: var(--primary-purple-hover);
  transform: scale(1.1);
  box-shadow: 0 0.56vw 1.67vw rgba(94, 39, 230, 0.45);
}

.champions-nav-btn svg {
  width: 1.39vw;
  height: 1.39vw;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.25s ease;
}

/* ==========================================================================
   10. "Connect with TAFF" Section (Matches User Reference Image)
   ========================================================================== */
.connect-section-wrapper {
  padding-top: 3.89vw;
  padding-bottom: 6.11vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  max-width: 108.33vw;
  margin: 0 auto;
}

.connect-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.94vw;
  align-items: stretch;
}

.connect-image-card {
  border-radius: var(--border-radius-hero);
  overflow: hidden;
  position: relative;
  height: 25vw;
  max-height: 26.39vw;
  align-self: center;
  width: 100%;
  box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.08);
}

.connect-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.connect-form-card {
  background-color: #f4f6f9;
  border-radius: var(--border-radius-hero);
  padding: 2.5vw 3.33vw;
  box-shadow: 0 1.11vw 2.78vw rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connect-title {
  font-family: var(--font-serif);
  font-size: 2.4vw;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.03vw;
  margin-top: 0;
  margin-bottom: 0.83vw;
  line-height: 1.15;
}

.connect-subtitle {
  font-family: var(--font-sans);
  font-size: 1.01vw;
  line-height: 1.55;
  color: #6b7280;
  margin-bottom: 1.53vw;
}

.connect-form {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.connect-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.67vw;
}

.connect-form-row.full-width {
  grid-template-columns: 1fr;
}

.connect-field-group {
  position: relative;
  width: 100%;
}

.connect-input,
.connect-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.1vw solid #d1d5db;
  padding: 0.56vw 0;
  font-family: var(--font-sans);
  font-size: 0.97vw;
  color: #111827;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
}

.connect-input::placeholder {
  color: #9ca3af;
}

.connect-select {
  cursor: pointer;
  color: #9ca3af;
}

.connect-select:focus,
.connect-select:valid {
  color: #111827;
}

.connect-input:focus,
.connect-select:focus {
  border-bottom-color: var(--primary-purple);
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25vw;
  height: 1.25vw;
  fill: #6b7280;
  pointer-events: none;
}

.btn-connect-submit {
  width: 100%;
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 0.9vw;
  border-radius: 694.38vw;
  font-family: var(--font-sans);
  font-size: 0.97vw;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 0.42vw;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.42vw 1.25vw rgba(94, 39, 230, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-connect-submit:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-0.14vw);
  box-shadow: 0 0.69vw 1.81vw rgba(94, 39, 230, 0.45);
}

/* ==========================================================================
   Secondary Content Sections (About, 3E Impact)
   ========================================================================== */
.section {
  padding: 5vw 3.33vw;
  max-width: 97.22vw;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.33vw;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.78vw;
  color: var(--text-dark);
  margin-bottom: 0.83vw;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.18vw;
  color: var(--text-muted);
  max-width: 47.22vw;
  line-height: 1.6;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5vw;
}

.about-card-feature {
  background: #ffffff;
  border-radius: 1.39vw;
  overflow: hidden;
  box-shadow: 0 0.42vw 1.39vw rgba(0, 0, 0, 0.04);
  border: 0.07vw solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card-feature:hover {
  transform: translateY(-0.42vw);
  box-shadow: 0 0.83vw 2.08vw rgba(0, 0, 0, 0.09);
}

.about-image {
  width: 100%;
  height: 18.06vw;
  object-fit: cover;
}

.about-card-content {
  padding: 1.94vw;
}

.about-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.67vw;
  margin-bottom: 0.83vw;
  color: var(--text-dark);
}

.about-card-content p {
  font-size: 1.04vw;
  line-height: 1.65;
  color: var(--text-muted);
}

.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.22vw;
}

.impact-card {
  background: #ffffff;
  padding: 2.5vw 1.94vw;
  border-radius: 1.39vw;
  box-shadow: 0 0.42vw 1.39vw rgba(0, 0, 0, 0.04);
  border: 0.07vw solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-0.42vw);
  box-shadow: 0 0.83vw 2.08vw rgba(94, 39, 230, 0.1);
}

.impact-icon {
  width: 3.75vw;
  height: 3.75vw;
  border-radius: 0.97vw;
  background: var(--primary-purple-light);
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.67vw;
  font-weight: 700;
  margin-bottom: 1.67vw;
}

.impact-card h4 {
  font-size: 1.53vw;
  margin-bottom: 0.83vw;
  color: var(--text-dark);
}

.impact-card p {
  font-size: 1.04vw;
  color: white;
  line-height: 1.6;
}

/* ==========================================================================
   Modal Dialogs (Contact & Event Details)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.56vw);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background: #ffffff;
  width: 90%;
  max-width: 40.28vw;
  border-radius: 1.67vw;
  padding: 2.78vw;
  position: relative;
  transform: translateY(1.39vw) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1.74vw 3.47vw -0.83vw rgba(0, 0, 0, 0.25);
}

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

.modal-close-btn {
  position: absolute;
  top: 1.67vw;
  right: 1.67vw;
  background: #f3f4f6;
  border: none;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4b5563;
  font-size: 1.25vw;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: #e5e7eb;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.94vw;
  margin-bottom: 0.56vw;
  color: var(--text-dark);
}

.modal-subtitle {
  font-size: 0.97vw;
  color: var(--text-muted);
  margin-bottom: 1.94vw;
}

/* ==========================================================================
   Video Modal & Player Control Bar (Matches User Screenshot)
   ========================================================================== */
.video-modal-container {
  width: 92%;
  max-width: 63.89vw;
  background: #0d1117;
  border-radius: 1.67vw;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1.74vw 4.17vw rgba(0, 0, 0, 0.5);
  transform: translateY(1.39vw) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.video-close-top-btn {
  position: absolute;
  top: 1.11vw;
  right: 1.11vw;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  width: 2.64vw;
  height: 2.64vw;
  border-radius: 50%;
  font-size: 1.53vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-close-top-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  height: 34.72vw;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Video Control Bar matching user screenshot */
.video-controls-bar {
  position: absolute;
  bottom: 1.67vw;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 52.78vw;
  background: rgba(45, 48, 54, 0.88);
  backdrop-filter: blur(0.97vw);
  -webkit-backdrop-filter: blur(0.97vw);
  border: 0.07vw solid rgba(255, 255, 255, 0.15);
  border-radius: 0.97vw;
  padding: 0.69vw 1.25vw;
  display: flex;
  align-items: center;
  gap: 0.97vw;
  box-shadow: 0 0.56vw 2.08vw rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.v-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.28vw;
  border-radius: 0.42vw;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.v-btn:hover {
  opacity: 1;
  color: #a78bfa;
}

.v-icon {
  width: 1.39vw;
  height: 1.39vw;
  fill: currentColor;
}

.v-icon.hidden {
  display: none;
}

.v-time {
  font-size: 0.9vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01vw;
}

.v-progress-container {
  flex: 1;
  height: 0.35vw;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 6.88vw;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.v-progress-bar {
  height: 100%;
  background: var(--primary-purple);
  border-radius: 6.88vw;
  transition: width 0.1s linear;
}

.v-speed {
  font-size: 0.9vw;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.21vw 0.56vw;
  border-radius: 0.42vw;
  background: rgba(255, 255, 255, 0.12);
}

.v-speed:hover {
  background: rgba(255, 255, 255, 0.22);
}

.form-group {
  margin-bottom: 1.39vw;
}

.form-label {
  display: block;
  font-size: 0.9vw;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.56vw;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.83vw 1.11vw;
  border: 0.07vw solid #d1d5db;
  border-radius: 0.83vw;
  font-family: var(--font-sans);
  font-size: 1.04vw;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.21vw rgba(94, 39, 230, 0.15);
}

.form-submit-btn {
  width: 100%;
  background: var(--primary-purple);
  color: #ffffff;
  padding: 0.97vw;
  border: none;
  border-radius: 0.83vw;
  font-weight: 600;
  font-size: 1.11vw;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit-btn:hover {
  background: var(--primary-purple-hover);
}

/* ==========================================================================
   11. Footer Section (Exact 1:1 Match to User Reference Screenshot)
   ========================================================================== */
.footer-wrapper {
  background-color: #041c12;
  color: #a5b8a6;
  font-family: var(--font-sans);
  padding-top: 1.94vw;
  padding-bottom: 2.22vw;
  padding-left: 3.33vw;
  padding-right: 3.33vw;
  width: 100%;
}

.footer-container {
  max-width: 108.33vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.footer-divider {
  width: 100%;
  height: 0.07vw;
  background-color: rgba(165, 184, 166, 0.28);
}

/* Row 1: Top Brand & Links */
.footer-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.69vw;
  padding-bottom: 0.69vw;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.11vw;
  margin-left: -3.33vw;
}

.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-svg {
  display: none;
}

.footer-logo-img {
  width: 16vw;
  height: auto;
  object-fit: contain;
  margin-top: -2vw;
  margin-bottom: -2vw;
}

.footer-title-box {
  display: flex;
  flex-direction: column;
  gap: 0.21vw;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.32vw;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06vw;
  margin: 0;
  line-height: 1.2;
}

.footer-est {
  font-family: var(--font-sans);
  font-size: 0.76vw;
  font-weight: 600;
  color: #c4a962;
  letter-spacing: 0.14vw;
}

.footer-nav-grid {
  display: flex;
  gap: 5.56vw;
  align-items: flex-start;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.97vw;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.04vw;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #c4a962;
}

/* Row 2: Middle Text & Address */
.footer-row-middle {
  display: flex;
  justify-content: space-between;
  gap: 3.33vw;
  padding-top: 0.42vw;
  padding-bottom: 0.42vw;
}

.footer-mission-text {
  max-width: 47.22vw;
  font-size: 0.97vw;
  line-height: 1.65;
  color: #9cb09e;
  margin: 0;
}

.footer-mission-text .highlight {
  color: #c3d7c5;
}

.footer-hq-box {
  display: flex;
  flex-direction: column;
  gap: 0.28vw;
  text-align: right;
}

.footer-hq-line {
  font-size: 0.97vw;
  color: #9cb09e;
  margin: 0;
  line-height: 1.5;
}

.footer-hq-line.font-bold {
  color: #c3d7c5;
  font-weight: 600;
}

/* Row 3: Bottom Copyright */
.footer-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.28vw;
}

.footer-copy {
  font-size: 0.9vw;
  color: #798f7b;
  margin: 0;
}

.footer-credits {
  font-size: 0.9vw;
  color: #798f7b;
  margin: 0;
}

.credits-link {
  color: #a5b8a6;
  text-decoration: none;
  transition: color 0.25s ease;
}

.credits-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   About Page - Unique Styles (100% VW Units)
   ========================================================================== */

/* Breadcrumb Hero Banner */
.about-hero-banner {
  position: relative;
  width: 100%;
  height: 25vw;
  min-height: 25vw;
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 28, 19, 0.35) 0%, rgba(3, 28, 19, 0.65) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2.22vw;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: 2.6vw;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04vw;
  margin-bottom: 0.83vw;
  text-shadow: 0 0.28vw 0.83vw rgba(0, 0, 0, 0.4);
}

/* Breadcrumb Bar - Light Glass Transparency */
.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.56vw;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.69vw);
  -webkit-backdrop-filter: blur(0.69vw);
  padding: 0.42vw 1.11vw;
  border-radius: 69.44vw;
  border: 0.07vw solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0.28vw 1.11vw rgba(0, 0, 0, 0.12);
}

.about-breadcrumb-link {
  font-size: 0.9vw;
  font-weight: 500;
  color: #d1fae5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-breadcrumb-link:hover {
  color: #ffffff;
}

.about-breadcrumb-sep {
  font-size: 0.83vw;
  color: rgba(255, 255, 255, 0.6);
}

.about-breadcrumb-active {
  font-size: 0.9vw;
  font-weight: 600;
  color: #c4a962;
}

/* Main Section: About TAFF Story */
.about-taff-section {
  padding-top: 3.33vw;
  padding-bottom: 3.33vw;
  padding-left: 3.33vw;
  padding-right: 3.33vw;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.about-taff-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.78vw;
}

/* Intro Executive Statement Card */
.about-intro-card {
  background: #031c13;
  border-radius: 1.67vw;
  padding: 3.06vw 3.33vw;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.78vw;
  align-items: center;
  box-shadow: 0 0.83vw 2.22vw rgba(3, 28, 19, 0.25);
  border: 0.07vw solid rgba(196, 169, 98, 0.25);
}

.about-intro-left {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42vw;
  background: rgba(196, 169, 98, 0.15);
  border: 0.07vw solid rgba(196, 169, 98, 0.35);
  color: #c4a962;
  padding: 0.42vw 0.97vw;
  border-radius: 69.44vw;
  font-size: 0.76vw;
  font-weight: 700;
  letter-spacing: 0.07vw;
  text-transform: uppercase;
  width: fit-content;
}

.about-intro-heading {
  font-size: 2.22vw;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.about-intro-text {
  font-size: 1.04vw;
  line-height: 1.7;
  color: #cbd5e1;
}

.about-intro-img-card {
  position: relative;
  width: 100%;
  height: 29.22vw;
  border-radius: 1.25vw;
  overflow: hidden;
  box-shadow: 0 0.56vw 1.67vw rgba(0, 0, 0, 0.3);
}

.about-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: inherit;
  display: block;
}

/* Genesis & Changing World Section */
.about-genesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.22vw;
}

.about-story-box {
  background: #ffffff;
  border-radius: 1.39vw;
  padding: 2.5vw 2.22vw;
  border: 0.07vw solid #e2e8f0;
  box-shadow: 0 0.42vw 1.25vw rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.11vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-story-box:hover {
  transform: translateY(-0.28vw);
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.08);
}

.about-story-top-row {
  display: flex;
  align-items: center;
  gap: 1.11vw;
}

.about-story-icon-box {
  width: 3.33vw;
  height: 3.33vw;
  border-radius: 0.83vw;
  background: rgba(94, 39, 230, 0.08);
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-icon-box svg {
  width: 1.67vw;
  height: 1.67vw;
  fill: currentColor;
}

.about-story-title {
  font-size: 1.53vw;
  font-weight: 700;
  color: #0f172a;
}

.about-story-paragraph {
  font-size: 0.97vw;
  line-height: 1.7;
  color: #475569;
}

/* 3E Promise Full Banner Card */
.about-promise-banner {
  background: linear-gradient(135deg, #0b2e21 0%, #031c13 100%);
  border-radius: 1.67vw;
  padding: 3.06vw 3.33vw;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.67vw;
  box-shadow: 0 0.83vw 2.22vw rgba(3, 28, 19, 0.3);
  border: 0.07vw solid rgba(74, 222, 128, 0.2);
}

.about-promise-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-promise-title {
  font-size: 2.08vw;
  font-weight: 800;
  color: #ffffff;
}

.about-promise-badge {
  background: #c4a962;
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.83vw;
  padding: 0.42vw 0.97vw;
  border-radius: 69.44vw;
}

.about-promise-text {
  font-size: 1.04vw;
  line-height: 1.75;
  color: #e2e8f0;
}

.about-promise-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.39vw;
  margin-top: 0.56vw;
}

.about-pillar-mini-card {
  background: rgba(255, 255, 255, 0.06);
  border: 0.07vw solid rgba(255, 255, 255, 0.12);
  border-radius: 1.11vw;
  padding: 1.39vw 1.25vw;
  backdrop-filter: blur(0.56vw);
  display: flex;
  flex-direction: column;
  gap: 0.56vw;
}

.about-pillar-name {
  font-size: 1.11vw;
  font-weight: 700;
  color: #4ade80;
}

.about-pillar-desc {
  font-size: 0.83vw;
  line-height: 1.55;
  color: #cbd5e1;
}

/* TAFF Legacy Story Section */
.about-legacy-card {
  background: #ffffff;
  border-radius: 1.67vw;
  padding: 3.06vw 3.33vw;
  border: 0.07vw solid #e2e8f0;
  box-shadow: 0 0.56vw 1.67vw rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.78vw;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-legacy-card:hover {
  transform: translateY(-0.28vw);
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.08);
}

.about-legacy-content {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.about-legacy-heading {
  font-size: 2.08vw;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.about-legacy-text {
  font-size: 1.04vw;
  line-height: 1.75;
  color: #475569;
}

.about-legacy-img-card {
  position: relative;
  width: 100%;
  height: 22.22vw;
  border-radius: 1.25vw;
  overflow: hidden;
  box-shadow: 0 0.56vw 1.67vw rgba(0, 0, 0, 0.12);
}

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

.about-pillar-desc {
  font-size: 0.83vw;
  line-height: 1.55;
  color: #cbd5e1;
}

/* ==========================================================================
   WHO WE ARE Section - Unique Animated Founder Layout (100% VW Units)
   ========================================================================== */

.who-we-are-container {
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

/* Top Quote Box - Pure White Luxury Card (100% VW Units) */
.who-quote-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.39vw;
  padding: 1.81vw 2.78vw;
  border: 0.07vw solid #e2e8f0;
  box-shadow: 0 0.56vw 1.67vw rgba(0, 0, 0, 0.04);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-quote-card:hover {
  transform: translateY(-0.21vw);
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.08);
}

.who-quote-mark {
  font-size: 2.5vw;
  line-height: 1;
  color: #c4a962;
  font-family: Georgia, serif;
  opacity: 0.9;
  margin-bottom: 0.28vw;
}

.who-quote-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25vw;
  font-style: italic;
  line-height: 1.6;
  color: #0f172a;
  margin-bottom: 0.56vw;
  max-width: 92%;
}

.who-quote-author {
  font-family: var(--font-sans);
  font-size: 0.76vw;
  font-weight: 700;
  color: #5e27e6;
  letter-spacing: 0.07vw;
  text-transform: uppercase;
}

/* Founder Vision Emerald Shimmer Card */
.who-founder-card {
  background: linear-gradient(135deg, #031c13 0%, #0a3627 50%, #031c13 100%);
  background-size: 200% 200%;
  animation: shimmerGlow 8s ease infinite;
  border-radius: 1.67vw;
  padding: 3.06vw 3.33vw;
  color: #ffffff;
  border: 0.07vw solid rgba(196, 169, 98, 0.3);
  box-shadow: 0 1.11vw 2.78vw rgba(3, 28, 19, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1.39vw;
  position: relative;
  overflow: hidden;
}

@keyframes shimmerGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.who-founder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.who-founder-title {
  font-size: 2.36vw;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03vw;
}

.who-founder-badge {
  background: rgba(196, 169, 98, 0.18);
  border: 0.07vw solid rgba(196, 169, 98, 0.4);
  color: #c4a962;
  font-size: 0.76vw;
  font-weight: 700;
  padding: 0.42vw 0.97vw;
  border-radius: 69.44vw;
  letter-spacing: 0.07vw;
}

.who-founder-body {
  font-size: 1.04vw;
  line-height: 1.8;
  color: #e2e8f0;
}

.who-founder-footer {
  display: flex;
  align-items: center;
  gap: 1.11vw;
  padding-top: 0.83vw;
  border-top: 0.07vw solid rgba(255, 255, 255, 0.12);
}

.who-founder-avatar {
  width: 3.33vw;
  height: 3.33vw;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4a962 0%, #5e27e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.11vw;
  box-shadow: 0 0.28vw 0.83vw rgba(0, 0, 0, 0.3);
}

.who-founder-info {
  display: flex;
  flex-direction: column;
}

.who-founder-name {
  font-size: 1.04vw;
  font-weight: 700;
  color: #ffffff;
}

.who-founder-role {
  font-size: 0.83vw;
  color: #94a3b8;
}

/* ==========================================================================
   Vision & Mission Section (Matches User Reference Image UI - 100% VW)
   ========================================================================== */

.vision-mission-section {
  display: flex;
  flex-direction: column;
  gap: 2.78vw;
  width: 100%;
}

/* Top Section Header & Tag Pills */
.vm-top-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.78vw;
  align-items: flex-end;
  margin-bottom: 0.56vw;
}

.vm-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.97vw;
}

.vm-tag-pills {
  display: flex;
  align-items: center;
  gap: 0.69vw;
}

.vm-tag-pill {
  background: #e2e8f0;
  color: #475569;
  font-size: 0.83vw;
  font-weight: 600;
  padding: 0.42vw 1.11vw;
  border-radius: 69.44vw;
  transition: all 0.25s ease;
}

.vm-tag-pill.active {
  background: #d1fae5;
  color: var(--text-dark);
  font-weight: 700;
}

.vm-main-heading {
  font-size: 2.92vw;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.04vw;
}

.vm-header-right {
  display: flex;
  align-items: flex-end;
}

.vm-header-desc {
  font-size: 1.04vw;
  line-height: 1.7;
  color: #475569;
}

/* Feature Grid (Split Left Tall Card & Right Card Block) */
.vm-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.22vw;
  align-items: stretch;
}

/* Left Large Tall Card */
.vm-card-left {
  position: relative;
  width: 100%;
  height: 31.94vw;
  border-radius: 2.22vw;
  overflow: hidden;
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.08);
}

.vm-card-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vm-card-left:hover .vm-card-left-img {
  transform: scale(1.04);
}

.vm-card-left-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5vw 2.22vw;
  background: linear-gradient(180deg, rgba(3, 28, 19, 0) 0%, rgba(3, 28, 19, 0.92) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
  box-sizing: border-box;
}

.vm-card-left-title {
  font-size: 1.67vw;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.vm-card-left-text {
  font-size: 0.97vw;
  line-height: 1.6;
  color: #e2e8f0;
}

.vm-card-cta-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.56vw);
  border: 0.07vw solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.83vw;
  font-weight: 700;
  padding: 0.56vw 1.39vw;
  border-radius: 69.44vw;
  width: fit-content;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.vm-card-cta-btn:hover {
  background: #ffffff;
  color: var(--text-dark);
  transform: translateY(-0.14vw);
}

/* Right Card Block */
.vm-card-right {
  display: flex;
  flex-direction: column;
  gap: 1.67vw;
  justify-content: space-between;
}

.vm-card-right-img-box {
  position: relative;
  width: 100%;
  height: 21.67vw !important;
  border-radius: 2.22vw;
  overflow: hidden;
  box-shadow: 0 0.56vw 1.67vw rgba(0, 0, 0, 0.06);
}

.vm-card-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-card-right-content {
  display: flex;
  flex-direction: column;
  gap: 1.39vw;
}

.vm-card-right-text {
  font-size: 1.18vw;
  line-height: 1.65;
  color: #334155;
  font-weight: 500;
}

.vm-highlight-green {
  color: #059669;
  font-weight: 700;
}

.vm-dark-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.69vw;
  background: #1e293b;
  color: #ffffff;
  padding: 0.42vw 0.56vw 0.42vw 1.39vw;
  border-radius: 69.44vw;
  font-size: 0.83vw;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s ease, transform 0.2s ease;
}

.vm-dark-action-btn:hover {
  background: #031c13;
  transform: translateY(-0.14vw);
}

.vm-btn-arrow-circle {
  width: 2.22vw;
  height: 2.22vw;
  border-radius: 50%;
  background: #a3e635;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.04vw;
  font-weight: 800;
}

/* 3 Pillars Cards Grid (Hidden by Default, Smooth Fade Reveal on Discover Click) */
.vm-pillars-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.94vw;
  opacity: 0;
  transform: translateY(1.39vw);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vm-pillars-grid.active {
  display: grid !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.vm-pillar-card {
  background: #ffffff;
  border-radius: 2.22vw;
  padding: 2.5vw 2.22vw 2.22vw 2.22vw;
  border: 0.07vw solid #e2e8f0;
  box-shadow: 0 0.56vw 1.67vw rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.vm-pillar-card:hover {
  transform: translateY(-0.42vw);
  box-shadow: 0 1.11vw 2.78vw rgba(3, 28, 19, 0.12);
}

.vm-pillar-img-ring {
  width: 9.72vw;
  height: 9.72vw;
  border-radius: 50%;
  padding: 0.35vw;
  border: 0.21vw solid #031c13;
  box-shadow: 0 0.56vw 1.39vw rgba(0, 0, 0, 0.15);
  margin-bottom: 1.67vw;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.vm-pillar-card:hover .vm-pillar-img-ring {
  border-color: #5e27e6;
}

.vm-pillar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vm-pillar-card:hover .vm-pillar-img {
  transform: scale(1.1);
}

.vm-pillar-title {
  font-size: 1.53vw;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.97vw;
}

.vm-pillar-desc {
  font-size: 0.97vw;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.67vw;
  flex-grow: 1;
}

.vm-pillar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42vw;
  background: #031c13;
  color: #ffffff;
  font-size: 0.83vw;
  font-weight: 700;
  padding: 0.69vw 1.67vw;
  border-radius: 69.44vw;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.vm-pillar-btn:hover {
  background: #c4a962;
  transform: translateY(-0.14vw);
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  right: 2.08vw;
  bottom: -5.56vw;
  width: 3.47vw;
  height: 3.47vw;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0.28vw 0.83vw rgba(0, 0, 0, 0.15);
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.active {
  bottom: 2.08vw;
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-0.35vw);
  box-shadow: 0 0.56vw 1.39vw rgba(0, 0, 0, 0.2);
}

.scroll-top-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-top-inner path {
  fill: none;
  stroke: var(--primary-purple);
  /* Using theme green */
  stroke-width: 4;
  stroke-dasharray: 308;
  stroke-dashoffset: 308;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-arrow {
  width: 1.39vw;
  height: 1.39vw;
  color: var(--text-dark);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover .scroll-arrow {
  color: #c4a962;
  /* Hover gold */
}

.scroll-arrow svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   3E IMPACT PAGE STYLES
   ========================================================================== */
.impact-taff-section {
  padding: 5vw 0;
  background: var(--bg-color);
  position: relative;
}

.impact-taff-container {
  width: 90vw;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.impact-card {
  display: flex;
  align-items: center;
  gap: 3vw;
  background: #031c13;
  border: 1px solid rgba(196, 169, 98, 0.2);
  border-radius: 1.2vw;
  padding: 2vw;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-0.5vw);
  border-color: rgba(196, 169, 98, 0.6);
  box-shadow: 0 1vw 3vw rgba(196, 169, 98, 0.15);
}

.impact-card.reverse {
  flex-direction: row-reverse;
}

.impact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.8vw;
  font-weight: 600;
  letter-spacing: 0.2vw;
  color: var(--text-dark);
  background: #a3e635;
  padding: 0.4vw 0.8vw;
  border-radius: 2vw;
  margin-bottom: 1vw;
}

.impact-heading {
  font-family: var(--font-serif);
  font-size: 2.0vw;
  color: #c4a962;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.impact-text {
  font-family: var(--font-sans);
  font-size: 0.95vw;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1vw;
}

.impact-text:last-child {
  margin-bottom: 0;
}

.impact-img-wrap {
  flex: 0 0 32%;
  height: 21vw;
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.3);
}

.impact-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 169, 98, 0.4);
  border-radius: 1vw;
  pointer-events: none;
}

.impact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.impact-card:hover .impact-img {
  transform: scale(1.05);
}

/* ================= Contact Page Info Section ================= */
.contact-info-section {
  padding: 4vw 4vw;
  background-color: var(--bg-body);
}

.contact-info-container {
  max-width: 100vw;
  margin: 0 auto;
}

.contact-sec-title {
  text-align: center;
  margin-bottom: 6vw;
}

.contact-sub-title {
  font-size: 1.2vw;
  color: var(--accent-green);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2vw;
  display: block;
  margin-bottom: 1vw;
}

.contact-sec-title h2 {
  font-size: 2.5vw;
  color: var(--text-dark);
  font-family: var(--font-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1vw;
}

.contact-info-blocks {
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  margin-top: 4vw;
  /* Space for the overlapping icons */
}

.contact-info-card {
  background-color: whitesmoke;
  /* White card like the image */
  border: 0.1vw solid #e5e7eb;
  border-radius: 1.5vw;
  padding: 5vw 2vw 3vw 2vw;
  text-align: center;
  flex: 1;
  position: relative;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.05);
}

.contact-info-icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-info-icon {
  width: 5vw;
  height: 5vw;
  background-color: #041c12;
  /* Green from the image */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-info-icon svg {
  width: 2.5vw;
  height: 2.5vw;
}

.contact-info-card h3 {
  font-size: 2vw;
  color: var(--text-dark);
  /* Dark green/blue from image */
  margin-bottom: 1vw;
  font-family: var(--font-secondary);
  font-weight: 500;
}

.contact-info-card p {
  font-size: 1.1vw;
  color: #444444;
  /* Dark gray for legibility on white */
  line-height: 1.6;
}

.contact-info-card p a {
  color: #444444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card p a:hover {
  color: #79A368;
}

/* ================= Contact Page Specific Form overrides ================= */
#contact-form-section .connect-grid {
  grid-template-columns: 1fr 1fr;
}

#contact-form-section .connect-image-card {
  height: auto;
  max-height: none;
  align-self: stretch;
}

/* ==========================================================================
   9. Partnership and Collaboration Section
   ========================================================================== */
.partnerships-section-wrapper {
  background-color: #e5e9ec;
  padding-top: 2.43vw;
  padding-bottom: 5vw;
  padding-left: 2.22vw;
  padding-right: 2.22vw;
  width: 100%;
}

.partnerships-title {
  font-family: var(--font-serif);
  font-size: 3.2vw;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3.33vw;
  letter-spacing: -0.03vw;
}

.partnerships-container {
  max-width: 108.33vw;
  margin: 0 auto;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.94vw;
}

.partnerships-card {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  border-radius: 1.67vw;
  overflow: hidden;
  box-shadow: 0 0.83vw 2.22vw rgba(0, 0, 0, 0.06);
  position: relative;
}

.partnerships-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.22vw;
  background: linear-gradient(to top, rgba(4, 28, 18, 0.9) 0%, rgba(4, 28, 18, 0.4) 60%, transparent 100%);
  z-index: 2;
}

.partnerships-card-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.46vw;
  font-weight: 600;
  margin: 0;
}

.partnerships-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnerships-card:hover .partnerships-img {
  transform: scale(1.05);
}

/* Champions Lightbox Modal Styles */
.champions-modal-content {
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  flex-direction: row;
  gap: 2vw;
}

.champions-lightbox-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 4vw;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(0.5vw);
  transition: all 0.3s ease;
}

.champions-lightbox-btn svg {
  width: 2vw;
  height: 2vw;
  fill: none;
  stroke: #fff;
  stroke-width: 0.2vw;
  transition: stroke 0.3s ease;
}

.champions-lightbox-btn:hover svg {
  stroke: #a3e635;
}

.champions-lightbox-img-wrapper {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
}

.champions-lightbox-close {
  position: absolute;
  top: 1vw;
  right: 1vw;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;

}

.champions-lightbox-close svg {
  width: 1.2vw;
  height: 1.2vw;
  fill: #fff;
  transition: fill 0.3s ease;
}

.champions-lightbox-close:hover svg {
  fill: #a3e635;
}

.champions-lightbox-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1vw;
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.5);
}

/* Events Gallery Section */
.events-gallery-section {
  padding: 4vw 2vw;
  background-color: var(--color-bg);
  max-width: 1600px;
  margin: 0 auto;
}

.events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5vw;
}

.event-gallery-item {
  overflow: hidden;
  border-radius: 0.5vw;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
}

.event-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.event-gallery-item:hover .event-gallery-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Events Lightbox */
.events-lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 17, 0.95);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.events-lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.events-lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5vw;
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.5);
}

.events-lightbox-close {
  position: absolute;
  top: 2vw;
  right: 3vw;
  color: #fff;
  font-size: 3vw;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.events-lightbox-close:hover {
  color: #a3e635;
}

.events-lightbox-prev,
.events-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5vw;
  font-weight: 300;
  cursor: pointer;
  padding: 1vw 1.5vw;
  transition: color 0.3s ease, background 0.3s ease;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.events-lightbox-prev:hover,
.events-lightbox-next:hover {
  color: #a3e635;
  background: rgba(0, 0, 0, 0.6);
}

.events-lightbox-prev {
  left: 2vw;
}

.events-lightbox-next {
  right: 2vw;
}