/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* ── Template fonts (kept for fallback compatibility) ── */
  --default-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Fraunces", Georgia, serif;
  --nav-font: "DM Sans", sans-serif;

  /* ── Brand palette ── */
  --vs-primary:        #9B58A8;   /* violet-purple — replaces vs-green */
  --vs-primary-mid:    #B06EBC;   /* lighter purple — replaces vs-green-mid */
  --vs-primary-light:  #CFA3D8;   /* pale purple — replaces vs-green-light */
  --vs-primary-pale:   #F3E5F7;   /* near-white purple tint — replaces vs-green-pale */
  --vs-secondary:      #D20666;   /* crimson-rose — replaces vs-gold-dark/accent */
  --vs-secondary-light:#E8378A;   /* lighter crimson — replaces vs-gold */
  --vs-earth:          #7D3A6B;   /* deep plum — replaces vs-earth (brown) */
  --vs-sky:            #5B2D8E;   /* deep violet — replaces vs-sky */
  --vs-warm-white:     #FAF5FC;   /* very light purple-white */
  --vs-charcoal:       #1C1226;   /* near-black with purple undertone */
  --vs-text:           #2C1F3A;
  --vs-text-muted:     #6B5878;
  --vs-border:         #E2D1E8;
  --font-display:      'Fraunces', Georgia, serif;
  --font-body:         'DM Sans', system-ui, sans-serif;

  /* ── Template system variables (remapped to brand) ── */
  --background-color:  #ffffff;
  --default-color:     #444444;
  --heading-color:     #2C1F3A;
  --accent-color:      #9B58A8;
  --surface-color:     #ffffff;
  --contrast-color:    #ffffff;

  /* ── Nav colors ── */
  --nav-color:                     #2C1F3A;
  --nav-hover-color:               #9B58A8;
  --nav-mobile-background-color:   #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color:            #2C1F3A;
  --nav-dropdown-hover-color:      #9B58A8;

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #f9f5fb;
  --surface-color:    #ffffff;
}

.dark-background {
  --background-color: #0d0612;
  --default-color:    #ffffff;
  --heading-color:    #ffffff;
  --surface-color:    #1f1230;
  --contrast-color:   #ffffff;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--vs-text);
  background-color: var(--background-color);
  font-family: var(--font-body);
}

a {
  color: var(--vs-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--vs-primary-mid);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--vs-charcoal);
  font-family: var(--font-display);
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--vs-primary);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pulsating Play Button */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--vs-primary) 50%, color-mix(in srgb, var(--vs-primary), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--vs-primary), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--vs-primary);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0%   { transform: scale(0.6, 0.6); opacity: 1; }
  100% { transform: scale(1, 1);     opacity: 0; }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  border-bottom: 2px solid var(--vs-primary-pale);
  box-shadow: 0 2px 20px rgba(155, 88, 168, 0.08);
  padding: 0;
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo { line-height: 1; }
.header .logo img { max-height: 60px; margin-right: 8px; }

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--vs-primary);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  margin: 0 0 0 30px;
  transition: background 0.2s, transform 0.15s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: var(--vs-primary-mid);
  transform: translateY(-1px);
  color: #fff !important;
}

@media (max-width: 1200px) {
  .header .logo      { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 6px 15px; }
  .header .navmenu   { order: 3; }
}

.scrolled .header { box-shadow: 0px 0 18px rgba(155, 88, 168, 0.15); }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0; padding: 0;
    display: flex; list-style: none; align-items: center;
  }

  .navmenu li { position: relative; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--vs-text);
    padding: 18px 15px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }

  .navmenu a i, .navmenu a:focus i {
    font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s;
  }

  .navmenu li:last-child a { padding-right: 0; }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--vs-primary); }

  .navmenu .dropdown ul {
    margin: 0; padding: 10px 0;
    background: #ffffff;
    border-top: 3px solid var(--vs-primary);
    display: block; position: absolute;
    visibility: hidden; left: 14px; top: 130%;
    opacity: 0; transition: 0.3s;
    border-radius: 4px; z-index: 99;
    box-shadow: 0px 8px 30px rgba(155, 88, 168, 0.15);
  }

  .navmenu .dropdown ul li { min-width: 200px; }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 0.83rem;
    text-transform: none;
    color: var(--vs-text);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--vs-primary); }

  .navmenu .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }

  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: -100%; visibility: visible; }
}

/* Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--vs-text);
    font-size: 28px; line-height: 0;
    margin-right: 10px; cursor: pointer; transition: color 0.3s;
  }

  .navmenu { padding: 0; z-index: 9997; }

  .navmenu ul {
    display: none; list-style: none;
    position: absolute; inset: 60px 20px 20px 20px;
    padding: 10px 0; margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid var(--vs-border);
    box-shadow: 0 8px 30px rgba(155, 88, 168, 0.15);
    overflow-y: auto; transition: 0.3s; z-index: 9998;
  }

  .navmenu a, .navmenu a:focus {
    color: var(--vs-text);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 17px; font-weight: 500;
    display: flex; align-items: center; justify-content: space-between;
    white-space: nowrap; transition: 0.3s;
  }

  .navmenu a i, .navmenu a:focus i {
    font-size: 12px; line-height: 0; margin-left: 5px;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: 0.3s;
    background-color: color-mix(in srgb, var(--vs-primary), transparent 90%);
  }

  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--vs-primary); color: #fff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus { color: var(--vs-primary); }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--vs-primary);
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static; display: none; z-index: 99;
    padding: 10px 0; margin: 10px 20px;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul { background-color: rgba(33, 37, 41, 0.1); }
  .navmenu .dropdown > .dropdown-active { display: block; background-color: rgba(33, 37, 41, 0.03); }

  .mobile-nav-active { overflow: hidden; }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff; position: absolute;
    font-size: 32px; top: 15px; right: 15px;
    margin-right: 0; z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed; overflow: hidden; inset: 0;
    background: rgba(28, 18, 38, 0.85); transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul { display: block; }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--vs-charcoal) !important;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top { padding-top: 50px; }

.footer .footer-about .logo { margin-bottom: 0; }
.footer .footer-about .logo img { max-height: 40px; margin-right: 6px; }
.footer .footer-about .logo span,
.footer .sitename {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vs-secondary-light);
  letter-spacing: 0;
}

.footer .footer-about p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 1.25rem;
}

.footer .social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-right: 0.4rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .social-links a:hover {
  background: var(--vs-primary);
  color: #fff;
  border-color: var(--vs-primary);
}

.footer .footer-links { margin-bottom: 30px; }
.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul i { padding-right: 2px; font-size: 12px; line-height: 0; }
.footer .footer-links ul li { padding: 0.2rem 0; display: flex; align-items: center; }
.footer .footer-links ul li:first-child { padding-top: 0; }

.footer .footer-links ul a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  transition: color 0.2s;
}

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

.footer .footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}

.footer .copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 1.5rem;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
}

.footer .copyright p { margin-bottom: 0; }

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .credits a { color: rgba(255, 255, 255, 0.35); text-decoration: underline; }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed; inset: 0; z-index: 999999;
  overflow: hidden; background: #fff; transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px); left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--vs-primary) transparent var(--vs-secondary) transparent;
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed; visibility: hidden; opacity: 0;
  right: 15px; bottom: -15px; z-index: 99999;
  background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary));
  width: 44px; height: 44px; border-radius: 50px; transition: all 0.4s;
}

.scroll-top i { font-size: 24px; color: #fff; line-height: 0; }
.scroll-top:hover { opacity: 0.9; color: #fff; transform: translateY(-2px); }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }

/*--------------------------------------------------------------
# Disable AOS animation delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background: var(--vs-primary);
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(155, 88, 168, 1) 0%, rgba(210, 6, 102, 0.75) 100%);
}

.page-title .heading {
  padding: 4rem 0 2.5rem;
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-title p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-title .breadcrumbs,
.page-title nav {
  background: rgba(0, 0, 0, 0.2);
  position: relative; z-index: 1;
  padding: 0.75rem 0;
}

.page-title .breadcrumbs ol,
.page-title nav ol {
  display: flex; flex-wrap: wrap; list-style: none;
  margin: 0; font-size: 0.82rem; font-weight: 600;
  gap: 0.4rem; align-items: center; padding: 0;
}

.page-title .breadcrumbs ol a,
.page-title nav ol a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none; transition: color 0.2s;
}

.page-title .breadcrumbs ol a:hover,
.page-title nav ol a:hover { color: var(--vs-secondary-light); }

.page-title .breadcrumbs ol li.current,
.page-title nav ol li.current { color: var(--vs-secondary-light); }

.page-title .breadcrumbs ol li:not(:last-child)::after,
.page-title nav ol li + li::before {
  content: '/';
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding-right: 0.4rem;
}

.page-title nav ol li + li::before { padding-right: 0; }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--vs-text);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 66px; }
}

/*--------------------------------------------------------------
# Global Section Titles (template style)
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px; font-weight: 500; padding: 0;
  line-height: 1px; margin: 0; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--vs-text), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px; height: 1px;
  display: inline-block;
  background: var(--vs-primary);
  margin: 4px 10px;
}

.section-title p {
  color: var(--vs-charcoal); margin: 0;
  font-size: 36px; font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* VS Section Title (custom style) */
.section-title-vs { margin-bottom: 3rem; }

.section-title-vs .eyebrow,
.section-title-vs .subtitle-tag {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vs-secondary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.subtitle-tag {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vs-secondary);
}

.section-title-vs h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 700;
  letter-spacing: -0.02em; color: var(--vs-charcoal);
  margin-bottom: 0.9rem;
}

.section-title-vs p {
  font-size: 1rem; color: var(--vs-text-muted);
  line-height: 1.8; max-width: 600px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%; min-height: 92vh;
  position: relative; padding: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.45) saturate(1.1);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(155, 88, 168, 0.6) 0%,
    rgba(210, 6, 102, 0.4) 20%,
    rgba(0, 0, 0, 0.2) 40%
  );
  z-index: 1;
}

/* Legacy :before overlay from template */
.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute; inset: 0; z-index: 0;
}

.hero .container { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 4rem; }

.tagline-badge {
  display: inline-block;
  background: rgba(210, 6, 102, 0.18);
  border: 1px solid rgba(210, 6, 102, 0.45);
  color: var(--vs-secondary-light);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h2,
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700; color: #fff;
  line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 em,
.hero h2 em { font-style: italic; color: var(--vs-secondary-light); }

.hero p,
.hero p.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem; line-height: 1.75;
  max-width: 580px; margin-bottom: 2.2rem;
}

/* Hero buttons */
.hero .btn-get-started,
.hero-cta .btn-primary-vs {
  background: var(--vs-secondary);
  color: #fff !important;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 4px;
  border: 2px solid var(--vs-secondary);
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}

.hero .btn-get-started:hover,
.hero-cta .btn-primary-vs:hover {
  background: var(--vs-secondary-light);
  border-color: var(--vs-secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(210, 6, 102, 0.35);
}

.hero-cta .btn-outline-vs {
  background: transparent; color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 4px;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}

.hero-cta .btn-outline-vs:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem;
  left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

.hero-scroll-hint i { font-size: 1.3rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 991px) { .hero { min-height: 75vh; } .hero h1, .hero h2 { font-size: 2.2rem; } }
@media (max-width: 768px)  { .hero h1, .hero h2 { font-size: 1.9rem; } }
@media (max-width: 767px)  { .hero { min-height: 70vh; } .hero .container { padding-top: 4rem; padding-bottom: 3rem; } }

/*--------------------------------------------------------------
# About / About Snapshot Section
--------------------------------------------------------------*/
.about .content h3,
.about-us .content h3 { font-size: 2rem; font-weight: 700; }

.about .content ul,
.about-us .content ul { list-style: none; padding: 0; }

.about .content ul li,
.about-us .content ul li { padding-bottom: 10px; }

.about .content ul i,
.about-us .content ul i {
  font-size: 1.25rem; margin-right: 4px; color: var(--vs-primary);
}

.about .content p:last-child,
.about-us .content p:last-child { margin-bottom: 0; }

.about .content .read-more {
  background: var(--vs-primary); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: 1px; padding: 10px 24px 12px;
  border-radius: 50px; transition: 0.3s;
  display: inline-flex; align-items: center; justify-content: center;
}

.about .content .read-more i { font-size: 18px; margin-left: 5px; line-height: 0; transition: 0.3s; }

.about .content .read-more:hover {
  background: var(--vs-primary-mid); padding-right: 19px;
}

.about .content .read-more:hover i { margin-left: 10px; }

/* About Snapshot (homepage block) */
.about-snapshot { background: var(--vs-warm-white); padding: 5rem 0; }
.about-snapshot h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--vs-charcoal); letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.about-snapshot p { font-size: 1.06rem; line-height: 1.85; color: var(--vs-text-muted); }

.est-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--vs-primary); color: #fff;
  width: 90px; height: 90px; border-radius: 50%;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  text-align: center; line-height: 1.2; letter-spacing: 0.02em;
}

/* Shared CTA buttons */
.btn-vs-green,
.btn-vs-primary {
  background: var(--vs-primary); color: #fff !important;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.75rem 1.75rem; border-radius: 4px;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}

.btn-vs-green:hover,
.btn-vs-primary:hover {
  background: var(--vs-primary-mid); transform: translateY(-2px);
}

.btn-vs-outline {
  background: transparent; color: var(--vs-primary) !important;
  border: 2px solid var(--vs-primary);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.7rem 1.6rem; border-radius: 4px;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}

.btn-vs-outline:hover {
  background: var(--vs-primary); color: #fff !important;
}

/*--------------------------------------------------------------
# Impact Stats / Counts Section
--------------------------------------------------------------*/
.counts { padding: 25px 0; }
.counts .stats-item { padding: 30px; width: 100%; }
.counts .stats-item span { font-size: 48px; display: block; color: var(--vs-primary); font-weight: 700; }
.counts .stats-item p { color: color-mix(in srgb, var(--vs-text), transparent 40%); padding: 0; margin: 0; font-family: var(--font-display); font-size: 15px; font-weight: 600; }

/* VS Impact Stats bar */
.impact-stats { background: linear-gradient(135deg, var(--vs-primary) 0%, var(--vs-secondary) 100%); padding: 4rem 0; }

.impact-stats .stat-item { text-align: center; padding: 1.5rem 1rem; position: relative; }

.impact-stats .stat-item::after {
  content: ''; position: absolute; right: 0; top: 20%;
  height: 60%; width: 1px; background: rgba(255, 255, 255, 0.2);
}

.impact-stats .stat-item:last-child::after { display: none; }

.impact-stats .stat-item .purecounter {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1;
}

.impact-stats .stat-item .stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #fff;
}

.impact-stats .stat-item p {
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem; letter-spacing: 0.02em; font-weight: 500;
}

@media (max-width: 767px) { .impact-stats .stat-item::after { display: none; } }

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: #fff; background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary));
  padding: 30px;
}

.why-us .why-box h3 { color: #fff; font-weight: 700; font-size: 34px; margin-bottom: 30px; }
.why-us .why-box p { margin-bottom: 30px; }

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 40px 10px; color: #fff;
  transition: all ease-in-out 0.4s; border-radius: 50px;
}

.why-us .why-box .more-btn i { font-size: 14px; }
.why-us .why-box .more-btn:hover { color: var(--vs-primary); background: #fff; }

.why-us .icon-box {
  background-color: #fff; text-align: center;
  padding: 40px 30px; width: 100%; height: 100%;
  border: 1px solid var(--vs-border);
}

.why-us .icon-box i {
  color: var(--vs-primary); font-size: 32px; margin-bottom: 30px;
  background: color-mix(in srgb, var(--vs-primary), transparent 92%);
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; transition: 0.3s;
}

.why-us .icon-box h4 { font-size: 20px; font-weight: 700; margin: 0 0 30px; }
.why-us .icon-box p { font-size: 15px; color: var(--vs-text-muted); }
.why-us .icon-box:hover i { color: #fff; background: var(--vs-primary); }

/*--------------------------------------------------------------
# Pillar Cards (Thematic Programs)
--------------------------------------------------------------*/
.pillars-section { padding: 5rem 0; background: #fff; }

.pillar-card {
  border: 1px solid var(--vs-border); border-radius: 12px;
  padding: 2rem 1.75rem; height: 100%; transition: all 0.3s;
  position: relative; overflow: hidden; background: #fff;
}

.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--pillar-color, var(--vs-primary));
  transition: height 0.3s;
}

.pillar-card:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(155, 88, 168, 0.15); transform: translateY(-4px); }
.pillar-card:hover::before { height: 6px; }

.pillar-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem;
}

.pillar-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--vs-charcoal); margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.88rem; color: var(--vs-text-muted); line-height: 1.75; }
.pillar-card ul { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.pillar-card ul li { font-size: 0.84rem; color: var(--vs-text-muted); padding: 0.25rem 0 0.25rem 1.1rem; position: relative; }
.pillar-card ul li::before { content: '›'; position: absolute; left: 0; font-weight: 700; color: var(--vs-secondary); }

/*--------------------------------------------------------------
# Impact Story (Dark Section)
--------------------------------------------------------------*/
.impact-story { background: var(--vs-charcoal); padding: 5rem 0; position: relative; overflow: hidden; }

.impact-story .eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--vs-secondary-light); margin-bottom: 0.75rem;
}

.impact-story h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.impact-story .lead-text { font-size: 1.05rem; color: rgba(255, 255, 255, 0.72); line-height: 1.8; margin-bottom: 2rem; }

.impact-story .stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; padding: 1.5rem; text-align: center; transition: background 0.2s;
}

.impact-story .stat-box:hover { background: rgba(155, 88, 168, 0.15); }

.impact-story .stat-box .num {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 700; color: var(--vs-secondary-light); line-height: 1;
}

.impact-story .stat-box .label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.35rem; line-height: 1.4; }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap { padding-left: 50px; }
.testimonials .testimonials-carousel, .testimonials .testimonials-slider { overflow: hidden; }

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid var(--vs-border);
  box-sizing: content-box; padding: 30px 30px 30px 60px;
  margin: 30px 15px; min-height: 200px; position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px; border-radius: 10px;
  border: 6px solid #fff; position: absolute; left: -45px;
}

.testimonials .testimonial-item h3 { font-size: 18px; font-weight: bold; margin: 10px 0 5px; }
.testimonials .testimonial-item h4 { color: var(--vs-text-muted); font-size: 14px; margin: 0; }
.testimonials .testimonial-item .stars { margin: 10px 0; }
.testimonials .testimonial-item .stars i { color: var(--vs-secondary); margin: 0 1px; }

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--vs-primary), transparent 55%); font-size: 26px; line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left { display: inline-block; left: -5px; position: relative; }
.testimonials .testimonial-item .quote-icon-right { display: inline-block; right: -5px; position: relative; top: 10px; transform: scale(-1, -1); }
.testimonials .testimonial-item p { font-style: italic; margin: 15px auto; }
.testimonials .swiper-wrapper { height: auto; }
.testimonials .swiper-pagination { margin-top: 20px; position: relative; }
.testimonials .swiper-pagination .swiper-pagination-bullet { width: 12px; height: 12px; background-color: #fff; opacity: 1; border: 1px solid var(--vs-primary); }
.testimonials .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--vs-primary); }

@media (max-width: 767px) {
  .testimonials .testimonial-wrap { padding-left: 0; }
  .testimonials .testimonial-item { padding: 30px; margin: 15px; }
  .testimonials .testimonial-item .testimonial-img { position: static; left: auto; }
}

/* VS Testimonial Card */
.testimonial-section { padding: 5rem 0; background: #fff; }

.testimonial-card {
  background: var(--vs-primary-pale); border-radius: 16px;
  padding: 2.5rem 3rem; position: relative;
}

.testimonial-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 7rem;
  color: var(--vs-primary); opacity: 0.2;
  position: absolute; top: -1rem; left: 2rem; line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-style: italic;
  color: var(--vs-charcoal); line-height: 1.65;
  margin: 0 0 1.5rem; position: relative; z-index: 1;
}

.testimonial-card .attribution { font-size: 0.88rem; font-weight: 600; color: var(--vs-primary); font-style: normal; }

@media (max-width: 767px) { .testimonial-card { padding: 2rem 1.5rem; } }

/*--------------------------------------------------------------
# News & Events Cards
--------------------------------------------------------------*/
.news-events { background: var(--vs-warm-white); padding: 5rem 0; }

.event-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  height: 100%; border: 1px solid var(--vs-border);
  transition: box-shadow 0.3s, transform 0.3s;
}

.event-card:hover { box-shadow: 0 12px 40px rgba(155, 88, 168, 0.15); transform: translateY(-4px); }
.event-card .card-body { padding: 1.5rem; }
.event-card .card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--vs-charcoal); margin-bottom: 0.6rem; }
.event-card .card-text { font-size: 0.88rem; color: var(--vs-text-muted); line-height: 1.7; }
.event-card .event-img-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }

.event-type-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 100px; margin-bottom: 0.75rem;
}

/* Template events cards */
.events .card { background-color: #fff; border: 0; padding: 0 30px; margin-bottom: 60px; position: relative; }
.events .card-img { width: calc(100% + 60px); margin-left: -30px; overflow: hidden; z-index: 9; border-radius: 0; }
.events .card-img img { max-width: 100%; transition: all 0.3s ease-in-out; }
.events .card-body { z-index: 10; background: #fff; border-top: 4px solid #fff; padding: 30px; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); margin-top: -60px; transition: 0.3s; }
.events .card-title { font-weight: 700; text-align: center; margin-bottom: 20px; }
.events .card-title a { color: var(--vs-charcoal); transition: 0.3s; }
.events .card-text { color: var(--vs-text-muted); }
.events .card:hover img { transform: scale(1.1); }
.events .card:hover .card-body { border-color: var(--vs-primary); }
.events .card:hover .card-body .card-title a { color: var(--vs-primary); }

/* Event list card (events page) */
.event-list-card {
  background: #fff; border: 1px solid var(--vs-border);
  border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem;
  display: flex; transition: all 0.3s;
}

.event-list-card:hover { box-shadow: 0 8px 30px rgba(155, 88, 168, 0.15); transform: translateX(4px); }

.event-list-card .date-col {
  background: linear-gradient(180deg, var(--vs-primary) 0%, var(--vs-secondary) 100%);
  color: #fff; min-width: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem 0.75rem; text-align: center;
}

.event-list-card .date-col .month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.event-list-card .date-col .day { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; color: #fff; }
.event-list-card .date-col .year { font-size: 0.72rem; opacity: 0.65; }
.event-list-card .content-col { padding: 1.25rem 1.5rem; flex: 1; }
.event-list-card .content-col h5 { font-weight: 700; font-size: 1rem; color: var(--vs-charcoal); margin-bottom: 0.4rem; }
.event-list-card .content-col p { font-size: 0.87rem; color: var(--vs-text-muted); line-height: 1.6; margin: 0; }
.event-list-card .content-col .meta { display: flex; gap: 1rem; margin-bottom: 0.5rem; }
.event-list-card .content-col .meta span { font-size: 0.77rem; color: var(--vs-primary); font-weight: 600; }

@media (max-width: 767px) {
  .event-list-card { flex-direction: column; }
  .event-list-card .date-col { flex-direction: row; gap: 0.5rem; padding: 0.75rem 1rem; min-width: unset; }
}

/*--------------------------------------------------------------
# Partners Strip
--------------------------------------------------------------*/
.partners-strip {
  background: #fff; padding: 3rem 0;
  border-top: 1px solid var(--vs-border); border-bottom: 1px solid var(--vs-border);
}

.partners-strip p.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--vs-text-muted); text-align: center; margin-bottom: 2rem;
}

.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 700; color: var(--vs-text-muted);
  border: 1px solid var(--vs-border); border-radius: 8px;
  text-align: center; min-height: 56px; opacity: 0.7; transition: opacity 0.2s, border-color 0.2s;
}

.partner-logo:hover { opacity: 1; border-color: var(--vs-primary-light); }

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background: linear-gradient(135deg, var(--vs-primary) 0%, var(--vs-secondary) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem; position: relative; }
.cta-section p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); line-height: 1.8; max-width: 580px; margin: 0 auto 2.5rem; position: relative; }

.cta-btn-gold,
.cta-btn-primary {
  background: #fff; color: var(--vs-primary) !important;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 4px;
  text-decoration: none; display: inline-block; margin: 0.4rem;
  transition: all 0.2s; position: relative;
}

.cta-btn-gold:hover,
.cta-btn-primary:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.cta-btn-outline-white {
  background: transparent; color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.65);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 4px;
  text-decoration: none; display: inline-block; margin: 0.4rem;
  transition: all 0.2s; position: relative;
}

.cta-btn-outline-white:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }

/*--------------------------------------------------------------
# Courses / Programs Section (template)
--------------------------------------------------------------*/
.courses .course-item { background: #fff; border: 1px solid var(--vs-border); border-radius: 5px; }
.courses .course-content { padding: 15px; }
.courses .course-content h3 { font-weight: 700; font-size: 20px; }
.courses .course-content h3 a { color: var(--vs-charcoal); transition: 0.3s; }
.courses .course-content h3 a:hover { color: var(--vs-primary); }
.courses .course-content .category { background: var(--vs-primary); color: #fff; font-size: 14px; padding: 6px 14px; margin: 0; border-radius: 5px; }
.courses .course-content .price { margin: 0; font-weight: 700; font-size: 18px; color: var(--vs-text-muted); }
.courses .course-content .description { font-size: 14px; color: var(--vs-text-muted); }
.courses .trainer { padding-top: 15px; border-top: 1px solid var(--vs-border); }
.courses .trainer .trainer-profile img { max-width: 50px; border-radius: 50px; }
.courses .trainer .trainer-profile .trainer-link { padding-left: 10px; font-weight: 600; font-size: 16px; color: var(--vs-text-muted); transition: 0.3s; }
.courses .trainer .trainer-profile .trainer-link:hover { color: var(--vs-primary); }
.courses .trainer .trainer-rank { font-size: 18px; color: var(--vs-text-muted); }
.courses .trainer .trainer-rank .user-icon { font-size: 22px; }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features { padding: 10px 0; }
.features .features-item { background: #fff; display: flex; align-items: center; padding: 20px; transition: 0.3s; border: 1px solid var(--vs-border); position: relative; }
.features .features-item i { font-size: 32px; padding-right: 10px; line-height: 0; color: var(--vs-primary); }
.features .features-item h3 { font-weight: 700; margin: 0; padding: 0; line-height: 1; font-size: 16px; }
.features .features-item h3 a { color: var(--vs-charcoal); transition: 0.3s; }
.features .features-item:hover { border-color: var(--vs-primary); }
.features .features-item:hover h3 a { color: var(--vs-primary); }

/*--------------------------------------------------------------
# Trainers / Team
--------------------------------------------------------------*/
.trainers-index .member { background: #fff; border: 1px solid var(--vs-border); text-align: center; margin-bottom: 20px; }
.trainers-index .member img { margin: -1px -1px 30px -1px; }
.trainers-index .member .member-content { padding: 0 20px 30px; }
.trainers-index .member h4 { font-weight: 700; margin-bottom: 2px; font-size: 18px; }
.trainers-index .member span { font-style: italic; display: block; font-size: 13px; color: var(--vs-text-muted); }
.trainers-index .member p { padding-top: 10px; font-size: 14px; font-style: italic; color: var(--vs-text-muted); }
.trainers-index .member .social { margin-top: 15px; }
.trainers-index .member .social a { color: var(--vs-text-muted); transition: 0.3s; }
.trainers-index .member .social a:hover { color: var(--vs-primary); }
.trainers-index .member .social i { font-size: 18px; margin: 0 2px; }

.trainers .member { position: relative; }
.trainers .member .member-img { margin: 0 80px; border-radius: 50%; overflow: hidden; position: relative; }
@media (max-width: 1024px) { .trainers .member .member-img { margin: 0 60px; } }
.trainers .member .member-img img { position: relative; z-index: 1; }
.trainers .member .member-img .social { position: absolute; inset: 0; background: rgba(155, 88, 168, 0.75); display: flex; justify-content: center; align-items: center; z-index: 2; padding-bottom: 20px; transition: 0.3s; visibility: hidden; opacity: 0; }
.trainers .member .member-img .social a { transition: 0.3s; color: #fff; font-size: 20px; margin: 0 8px; }
.trainers .member .member-img .social a:hover { color: var(--vs-secondary-light); }
.trainers .member .member-info { margin-top: 30px; }
.trainers .member .member-info h4 { font-weight: 700; margin-bottom: 6px; font-size: 18px; }
.trainers .member .member-info span { font-style: italic; display: block; font-size: 15px; color: var(--vs-text-muted); margin-bottom: 10px; }
.trainers .member .member-info p { margin-bottom: 0; font-size: 14px; }
.trainers .member:hover .member-img .social { padding-bottom: 0; visibility: visible; opacity: 1; }

/* VS Team Cards */
.team-section { padding: 5rem 0; background: #fff; }
.team-card { text-align: center; }

.team-card .initials-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: #fff; margin: 0 auto 1.25rem;
  border: 4px solid var(--vs-primary-pale);
}

.team-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--vs-charcoal); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.85rem; color: var(--vs-secondary); font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--vs-text-muted); line-height: 1.7; }

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-story { padding: 5rem 0; background: #fff; }

.vm-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px; padding: 2rem; height: 100%;
}

.vm-card .icon { font-size: 1.8rem; margin-bottom: 1rem; color: var(--vs-secondary-light); }
.vm-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vs-secondary-light); margin-bottom: 0.75rem; font-family: var(--font-body); }
.vm-card p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); line-height: 1.8; }

.vision-mission-row {
  background: var(--vs-charcoal);
  padding: 4rem 0;
}

.values-section { padding: 5rem 0; background: var(--vs-warm-white); }

.value-item {
  background: #fff; border-radius: 12px; padding: 1.75rem;
  text-align: center; border: 1px solid var(--vs-border);
  transition: all 0.3s; height: 100%;
}

.value-item:hover { box-shadow: 0 8px 30px rgba(155, 88, 168, 0.12); transform: translateY(-3px); border-color: var(--vs-primary-light); }
.value-item .icon { font-size: 2rem; color: var(--vs-primary); margin-bottom: 1rem; }
.value-item h5 { font-weight: 700; font-size: 1rem; color: var(--vs-charcoal); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.85rem; color: var(--vs-text-muted); line-height: 1.7; }

/*--------------------------------------------------------------
# Programs Page
--------------------------------------------------------------*/
.program-nav-pills {
  background: #fff; position: sticky; top: 72px; z-index: 100;
  border-bottom: 1px solid var(--vs-border); padding: 0.75rem 0;
}

.program-nav-pills .nav-pills .nav-link {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--vs-text-muted);
  border-radius: 100px; padding: 0.4rem 1rem; transition: all 0.2s;
}

.program-nav-pills .nav-pills .nav-link:hover { background: var(--vs-primary-pale); color: var(--vs-primary); }
.program-nav-pills .nav-pills .nav-link.active { background: var(--vs-primary); color: #fff; }

.program-section { padding: 5rem 0; }
.program-section:nth-child(even) { background: var(--vs-warm-white); }

.program-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }

.program-header .prog-icon {
  font-size: 2rem; width: 60px; height: 60px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.program-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--vs-charcoal); margin: 0; }
.program-header .program-tagline { font-size: 0.9rem; color: var(--vs-text-muted); font-style: italic; margin: 0.2rem 0 0; }

.sub-program-card { background: #fff; border: 1px solid var(--vs-border); border-radius: 10px; padding: 1.5rem; height: 100%; transition: all 0.3s; }
.sub-program-card:hover { box-shadow: 0 8px 24px rgba(155, 88, 168, 0.12); transform: translateY(-3px); }
.sub-program-card .icon { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--vs-primary); }
.sub-program-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--vs-charcoal); margin-bottom: 0.5rem; }
.sub-program-card p { font-size: 0.85rem; color: var(--vs-text-muted); line-height: 1.7; margin: 0; }

.program-stats-bar {
  background: linear-gradient(135deg, var(--vs-primary) 0%, var(--vs-secondary) 100%);
  border-radius: 10px; padding: 1.5rem 2rem;
  display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem;
}

.program-stats-bar .stat { text-align: center; flex: 1; min-width: 100px; }
.program-stats-bar .stat .num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; }
.program-stats-bar .stat .lbl { font-size: 0.78rem; color: rgba(255, 255, 255, 0.75); margin-top: 0.25rem; }

/*--------------------------------------------------------------
# Get Involved
--------------------------------------------------------------*/
.giving-card {
  border: 2px solid var(--vs-border); border-radius: 12px;
  padding: 2rem; text-align: center; height: 100%; transition: all 0.3s;
}

.giving-card.featured {
  border-color: var(--vs-primary);
  background: var(--vs-primary-pale);
  position: relative;
}

.giving-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--vs-primary); color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.75rem;
  border-radius: 100px; white-space: nowrap;
}

.giving-card:hover { border-color: var(--vs-primary); box-shadow: 0 8px 30px rgba(155, 88, 168, 0.15); transform: translateY(-3px); }
.giving-card .amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--vs-primary); line-height: 1; }
.giving-card .period { font-size: 0.8rem; color: var(--vs-text-muted); }
.giving-card .impact-line { font-size: 0.88rem; font-weight: 600; color: var(--vs-charcoal); margin: 0.75rem 0 0.5rem; }
.giving-card p { font-size: 0.83rem; color: var(--vs-text-muted); line-height: 1.6; }

/*--------------------------------------------------------------
# Impact Page
--------------------------------------------------------------*/
.impact-metric-card {
  background: #fff; border: 1px solid var(--vs-border); border-radius: 12px;
  padding: 2rem; text-align: center;
  border-top: 4px solid var(--vs-primary);
}

.impact-metric-card .metric-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--vs-primary); line-height: 1; }
.impact-metric-card .metric-label { font-size: 0.88rem; color: var(--vs-text-muted); margin-top: 0.5rem; }

.transparency-section { background: var(--vs-warm-white); padding: 5rem 0; }

.doc-download-card {
  background: #fff; border: 1px solid var(--vs-border); border-radius: 10px;
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
  transition: all 0.2s; text-decoration: none; color: inherit;
}

.doc-download-card:hover { box-shadow: 0 6px 20px rgba(155, 88, 168, 0.12); border-color: var(--vs-primary-light); transform: translateX(4px); }
.doc-download-card .icon { font-size: 2rem; color: var(--vs-secondary); flex-shrink: 0; }
.doc-download-card .meta h5 { font-size: 0.95rem; font-weight: 700; color: var(--vs-charcoal); margin: 0 0 0.25rem; }
.doc-download-card .meta p { font-size: 0.82rem; color: var(--vs-text-muted); margin: 0; }
.doc-download-card .dl-icon { margin-left: auto; color: var(--vs-primary); font-size: 1.1rem; }

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact { padding-top: 8px; padding-bottom: 40px; }
.contact .info-item + .info-item { margin-top: 40px; }

.contact .info-item i {
  color: #fff; background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary));
  font-size: 20px; width: 48px; height: 48px;
  display: flex; justify-content: center; align-items: center;
  border-radius: 50px; transition: all 0.3s ease-in-out; margin-right: 15px;
}

.contact .info-item h3 { padding: 0; font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.contact .info-item p { padding: 0; margin-bottom: 0; font-size: 14px; }

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px; padding: 10px 15px; box-shadow: none; border-radius: 0;
  color: var(--vs-text);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: var(--vs-border);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus { border-color: var(--vs-primary); }

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder { color: var(--vs-text-muted); }

.contact .php-email-form button[type=submit] {
  color: #fff; background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary));
  border: 0; padding: 10px 30px 12px; transition: 0.4s; border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover { opacity: 0.9; transform: translateY(-1px); }

/* VS Contact Cards */
.contact-info-card {
  background: linear-gradient(160deg, var(--vs-primary) 0%, var(--vs-sky) 100%);
  border-radius: 16px; padding: 2.5rem; height: 100%;
}

.contact-info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 2rem; }

.contact-info-card .info-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-info-card .info-item i { font-size: 1.2rem; color: var(--vs-secondary-light); margin-top: 0.15rem; flex-shrink: 0; }
.contact-info-card .info-item h4 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-bottom: 0.3rem; }
.contact-info-card .info-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin: 0; line-height: 1.6; }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--vs-border);
  border-radius: 16px; padding: 2.5rem;
}

.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 1.75rem; color: var(--vs-charcoal); }

.contact-form-wrap .form-control {
  border: 1px solid var(--vs-border); border-radius: 6px;
  padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--vs-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-wrap .form-control:focus { border-color: var(--vs-primary); box-shadow: 0 0 0 3px rgba(155, 88, 168, 0.12); outline: none; }

.contact-form-wrap button[type="submit"] {
  background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary));
  color: #fff; border: none; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.8rem 2rem; border-radius: 4px; cursor: pointer; transition: all 0.2s;
}

.contact-form-wrap button[type="submit"]:hover { opacity: 0.9; transform: translateY(-1px); }

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item { background: #fff; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1); padding: 20px; text-align: center; border-radius: 5px; position: relative; overflow: hidden; }
.pricing .pricing-item h3 { margin: -20px -20px 20px; padding: 20px 15px; font-size: 16px; font-weight: 600; color: var(--vs-text-muted); background: color-mix(in srgb, var(--vs-text), transparent 95%); }
.pricing .pricing-item h4 { font-size: 36px; font-weight: 600; font-family: var(--font-display); }
.pricing .pricing-item h4 sup { font-size: 20px; top: -15px; left: -3px; }
.pricing .pricing-item h4 span { color: var(--vs-text-muted); font-size: 16px; font-weight: 300; }
.pricing .pricing-item ul { padding: 15px 0; list-style: none; text-align: center; line-height: 20px; font-size: 14px; }
.pricing .pricing-item ul li { padding-bottom: 16px; }
.pricing .pricing-item ul i { color: var(--vs-primary); font-size: 18px; padding-right: 4px; }
.pricing .pricing-item ul .na { color: var(--vs-text-muted); text-decoration: line-through; }
.pricing .btn-wrap { background: color-mix(in srgb, var(--vs-text), transparent 95%); margin: 0 -20px -20px; padding: 20px 15px; text-align: center; }
.pricing .btn-buy { background: var(--vs-primary); color: #fff; display: inline-block; padding: 8px 35px 10px; border-radius: 4px; font-size: 14px; font-weight: 600; font-family: var(--font-display); transition: 0.3s; }
.pricing .btn-buy:hover { background: var(--vs-primary-mid); }
.pricing .featured h3 { background: var(--vs-primary); color: #fff; }
.pricing .advanced { background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary)); color: #fff; width: 200px; position: absolute; top: 18px; right: -68px; transform: rotate(45deg); z-index: 1; font-size: 14px; padding: 1px 0 3px; }

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs { padding-top: 30px; }
.tabs .nav-tabs { border: 0; }
.tabs .nav-link { background: #fff; border: 0; padding: 12px 15px; transition: 0.3s; color: var(--vs-text); border-radius: 0; border-right: 2px solid var(--vs-border); font-weight: 600; font-size: 15px; }
.tabs .nav-link:hover { color: var(--vs-primary); }
.tabs .nav-link.active { background: #fff; color: var(--vs-primary); border-color: var(--vs-primary); }
.tabs .tab-pane.active { animation: fadeIn 0.5s ease-out; }
.tabs .details h3 { font-size: 26px; font-weight: 600; margin-bottom: 20px; }
.tabs .details p { color: var(--vs-text-muted); }
.tabs .details p:last-child { margin-bottom: 0; }

@media (max-width: 992px) {
  .tabs .nav-link { border: 0; padding: 15px; }
  .tabs .nav-link.active { color: #fff; background: var(--vs-primary); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Course Details
--------------------------------------------------------------*/
.course-details .course-header { margin-bottom: 40px; }
.course-details .course-header .course-image { margin-bottom: 20px; border-radius: 12px; overflow: hidden; }
.course-details .course-header .course-image img { width: 100%; height: 400px; object-fit: cover; }
.course-details .course-header .course-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.course-details .course-header .instructor { display: flex; align-items: center; gap: 15px; }
.course-details .course-header .instructor .instructor-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.course-details .course-header .instructor .instructor-info h6 { margin: 0; font-size: 16px; font-weight: 600; }
.course-details .course-header .instructor .instructor-info span { font-size: 14px; color: var(--vs-text-muted); }
.course-details .course-header .course-stats { display: flex; gap: 25px; }
.course-details .course-header .course-stats .stat-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.course-details .course-header .course-stats .stat-item i { color: var(--vs-primary); }
.course-details .course-content { margin-bottom: 50px; }
.course-details .course-content h2 { font-size: 32px; margin-bottom: 25px; }
.course-details .course-content .course-description p { font-size: 16px; line-height: 1.7; margin-bottom: 15px; }
.course-details .course-content .what-you-learn { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid var(--vs-border); }
.course-details .course-content .what-you-learn h3 { font-size: 24px; margin-bottom: 25px; }
.course-details .course-content .what-you-learn .learn-list { list-style: none; padding: 0; margin: 0; }
.course-details .course-content .what-you-learn .learn-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 15px; line-height: 1.6; }
.course-details .course-content .what-you-learn .learn-list li i { color: var(--vs-primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.course-details .course-curriculum { margin-bottom: 50px; }
.course-details .course-curriculum h3 { font-size: 24px; margin-bottom: 30px; }
.course-details .course-curriculum .curriculum-section { margin-bottom: 25px; border: 1px solid var(--vs-border); border-radius: 8px; overflow: hidden; }
.course-details .course-curriculum .curriculum-section .section-header { background: #fff; padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--vs-border); }
.course-details .course-curriculum .curriculum-section .section-header h4 { font-size: 18px; margin: 0; }
.course-details .course-curriculum .curriculum-section .section-header .lessons-count { font-size: 14px; color: var(--vs-text-muted); }
.course-details .course-curriculum .curriculum-section .lessons .lesson-item { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid color-mix(in srgb, var(--vs-border), transparent 50%); transition: background-color 0.3s; }
.course-details .course-curriculum .curriculum-section .lessons .lesson-item:hover { background: color-mix(in srgb, var(--vs-primary), transparent 95%); }
.course-details .course-curriculum .curriculum-section .lessons .lesson-item:last-child { border-bottom: none; }
.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info { display: flex; align-items: center; gap: 12px; }
.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info i { color: var(--vs-primary); font-size: 18px; }
.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-duration { font-size: 14px; color: var(--vs-text-muted); font-weight: 500; }
.course-details .course-sidebar { position: sticky; top: 100px; }
.course-details .course-sidebar .pricing-card { background: #fff; border: 1px solid var(--vs-border); border-radius: 12px; padding: 30px; text-align: center; margin-bottom: 30px; box-shadow: 0 5px 20px rgba(155, 88, 168, 0.1); }
.course-details .course-sidebar .pricing-card .price .currency { font-size: 24px; font-weight: 600; color: var(--vs-primary); vertical-align: top; }
.course-details .course-sidebar .pricing-card .price .amount { font-size: 48px; font-weight: 700; color: var(--vs-primary); }
.course-details .course-sidebar .pricing-card .btn-enroll { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--vs-primary), var(--vs-secondary)); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; margin-bottom: 15px; transition: all 0.3s; }
.course-details .course-sidebar .pricing-card .btn-enroll:hover { opacity: 0.9; transform: translateY(-2px); }
.course-details .course-sidebar .pricing-card .btn-preview { width: 100%; padding: 15px; background: transparent; color: var(--vs-primary); border: 2px solid var(--vs-primary); border-radius: 8px; font-size: 16px; font-weight: 600; transition: all 0.3s; }
.course-details .course-sidebar .pricing-card .btn-preview:hover { background: var(--vs-primary); color: #fff; }
.course-details .course-sidebar .course-tags .tags-list .tag { padding: 6px 12px; background: color-mix(in srgb, var(--vs-primary), transparent 90%); color: var(--vs-primary); border-radius: 20px; font-size: 12px; font-weight: 500; transition: all 0.3s; }
.course-details .course-sidebar .course-tags .tags-list .tag:hover { background: var(--vs-primary); color: #fff; }

/*--------------------------------------------------------------
# Utilities & Helpers
--------------------------------------------------------------*/
.badge-region {
  background: var(--vs-primary-pale); color: var(--vs-primary);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--vs-primary) 0%, var(--vs-secondary) 50%, var(--vs-sky) 100%);
  border: none; margin: 0;
}

/* Accent text helpers */
.text-vs-primary { color: var(--vs-primary) !important; }
.text-vs-secondary { color: var(--vs-secondary) !important; }
.bg-vs-primary { background-color: var(--vs-primary) !important; }
.bg-vs-secondary { background-color: var(--vs-secondary) !important; }
.bg-vs-pale { background-color: var(--vs-primary-pale) !important; }
.bg-vs-warm { background-color: var(--vs-warm-white) !important; }
.border-vs { border-color: var(--vs-border) !important; }

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .course-details .course-header .course-meta { flex-direction: column; align-items: flex-start; }
  .course-details .course-sidebar { position: static; margin-top: 40px; }
  .contact-info-card { margin-bottom: 2rem; }
  .program-nav-pills { top: 0; }
}

@media (max-width: 576px) {
  .course-details .course-header .course-stats { flex-wrap: wrap; gap: 15px; }
  .course-details .course-curriculum .curriculum-section .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}
