/*
 Shinepreneurs.com — style.css (starter)
 Theme: Purple #4A148C + Pink #E91E8C
 Font: Poppins
*/
:root {
  --purple: #4A148C;
  --pink: #E91E8C;
  --dark: #1a0a2e;
  --light: #f8f8fc;
  --silver: #C0C0C0;
  --gold: #FFD700;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  margin: 0;
  padding: 0;
}
/* =============================================
   STICKY SITE HEADER WRAPPER
   ============================================= */
.sp-site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow .3s;
}
.sp-site-header.header-scrolled {
  box-shadow: 0 4px 28px rgba(74,20,140,0.35);
}

/* Top Contact Strip */
.sp-top-strip {
  background: linear-gradient(90deg, #3d0030 0%, #6e004f 100%);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  padding: 5px 0;
  letter-spacing: .2px;
  transition: max-height .3s ease, padding .3s ease, opacity .3s ease;
  max-height: 50px;
  overflow: hidden;
  opacity: 1;
}
.sp-site-header.header-scrolled .sp-top-strip {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.sp-top-strip a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.sp-top-strip a:hover { color: #fff; }

/* =============================================
   PREMIUM NAVBAR — sp-navbar
   ============================================= */
.sp-navbar {
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 60%, #6a1ab8 100%);
  border-bottom: 2px solid rgba(233,30,140,0.35);
  padding-top: .6rem;
  padding-bottom: .6rem;
  box-shadow: none;
  transition: padding .3s ease, background .3s ease;
  z-index: 1050;
}

/* Shrunken after scroll */
.sp-site-header.header-scrolled .sp-navbar,
.sp-navbar.navbar-shrink {
  padding-top: .3rem;
  padding-bottom: .3rem;
  background: rgba(26,10,46,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 28px rgba(74,20,140,0.38);
  border-bottom-color: rgba(233,30,140,0.5);
}

/* --- Brand / Logo --- */
.sp-navbar-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none !important;
  transition: opacity .25s;
}
.sp-navbar-brand:hover { opacity: .92; }

/* Outer glow ring */
.sp-logo-img-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  /* animated gradient border via conic-gradient on ::before */
  padding: 2.5px;
  background: conic-gradient(
    from 0deg,
    #e91e8c 0%,
    #9c27b0 25%,
    #4a148c 50%,
    #e91e8c 75%,
    #e91e8c 100%
  );
  box-shadow:
    0 0 0 3px rgba(233, 30, 140, 0.18),
    0 4px 18px rgba(233, 30, 140, 0.35);
  animation: logoRingSpin 6s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .35s;
}
.sp-navbar-brand:hover .sp-logo-img-wrap {
  box-shadow:
    0 0 0 5px rgba(233, 30, 140, 0.28),
    0 6px 28px rgba(233, 30, 140, 0.55);
  animation-duration: 2.5s;
}

/* Inner circle (clips logo to circle, masks gradient border) */
.sp-logo-img-wrap::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2d0060, #5c0d80);
  z-index: 0;
}

.sp-logo-img {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

@keyframes logoRingSpin {
  from { --logo-angle: 0deg; }
  to   { --logo-angle: 360deg; }
}
/* CSS Houdini workaround — rotate the pseudo wrapper instead */
.sp-logo-img-wrap {
  animation: logoGradShift 5s linear infinite;
}
@keyframes logoGradShift {
  0%   { filter: hue-rotate(0deg)   drop-shadow(0 0 8px rgba(233,30,140,.4)); }
  50%  { filter: hue-rotate(30deg)  drop-shadow(0 0 14px rgba(233,30,140,.65)); }
  100% { filter: hue-rotate(0deg)   drop-shadow(0 0 8px rgba(233,30,140,.4)); }
}

/* Brand text block */
.sp-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
  gap: 1px;
}
.sp-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .4px;
  background: linear-gradient(100deg, #ffffff 0%, #f8b8e0 55%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 4s linear infinite;
}
@keyframes brandShimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}
.sp-brand-tagline {
  font-size: .595rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, rgba(233,30,140,.8) 0%, rgba(200,130,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Nav Links --- */
.sp-nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .3px;
  padding: .5rem .8rem !important;
  white-space: nowrap;
  position: relative;
  transition: color .25s;
}
.sp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .8rem;
  right: .8rem;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.sp-nav-link:hover,
.sp-nav-link:focus {
  color: #fff !important;
}
.sp-nav-link:hover::after,
.sp-nav-link:focus::after {
  transform: scaleX(1);
}
/* Don't show underline slide on dropdown toggle - handled by open state */
.nav-item.dropdown .sp-nav-link::after {
  display: none;
}
.nav-item.dropdown .sp-nav-link.show,
.nav-item.dropdown:hover .sp-nav-link {
  color: #fff !important;
}

/* --- Dropdown Menu --- */
.sp-dropdown {
  background: linear-gradient(160deg, #1a0a2e 0%, #38095e 100%);
  border: 1px solid rgba(233,30,140,0.3);
  border-radius: 12px;
  padding: .5rem .25rem;
  box-shadow: 0 8px 32px rgba(74,20,140,0.38);
  min-width: 210px;
  margin-top: .4rem !important;
}
.sp-dropdown-item {
  color: rgba(255,255,255,0.85) !important;
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  transition: background .2s, color .2s, padding-left .2s;
}
.sp-dropdown-item:hover,
.sp-dropdown-item:focus {
  background: rgba(233,30,140,0.18) !important;
  color: #fff !important;
  padding-left: 1.5rem;
}
.sp-dropdown-item i {
  color: var(--pink);
  font-size: .8rem;
}
.sp-dropdown-divider {
  border-color: rgba(233,30,140,0.2);
  margin: .3rem .75rem;
}

/* --- CTA Button --- */
.sp-nav-cta {
  background: linear-gradient(90deg, #E91E8C 0%, #c2186a 100%);
  color: #fff !important;
  font-size: .83rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: .45rem 1.3rem;
  letter-spacing: .5px;
  box-shadow: 0 0 0 0 rgba(233,30,140,0.4);
  transition: box-shadow .3s, transform .2s, background .25s;
  text-decoration: none !important;
}
.sp-nav-cta:hover {
  background: linear-gradient(90deg, #ff3aaa 0%, #E91E8C 100%);
  box-shadow: 0 0 16px 4px rgba(233,30,140,0.4);
  transform: translateY(-1px);
}

/* --- Mobile Toggler --- */
.sp-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: .35rem .6rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  transition: background .2s;
}
.sp-toggler:hover {
  background: rgba(255,255,255,0.18);
}
.sp-toggler .bi {
  color: #fff;
}

/* --- Desktop alignment tuning for long menus --- */
@media (min-width: 992px) {
  .sp-navbar .navbar-nav {
    gap: .1rem;
  }

  .sp-nav-link {
    font-size: .82rem;
    padding: .45rem .5rem !important;
  }

  .sp-brand-tagline {
    letter-spacing: 1px;
  }
}

@media (min-width: 1200px) {
  .sp-nav-link {
    font-size: .86rem;
    padding: .5rem .62rem !important;
  }
}

/* --- Mobile collapse menu --- */
@media (max-width: 991.98px) {
  #mainNavbar {
    background: rgba(26,10,46,0.98);
    border-radius: 12px;
    margin-top: .5rem;
    padding: .75rem 1rem 1rem;
    border: 1px solid rgba(233,30,140,0.2);
    box-shadow: 0 8px 28px rgba(74,20,140,0.3);
  }
  .sp-nav-link::after { display: none; }
  .sp-nav-link {
    padding: .55rem .5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
  }
  .sp-nav-link:hover {
    background: rgba(233,30,140,0.12);
  }
  .sp-dropdown {
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    margin: 0;
    padding-left: 1rem;
  }
  .sp-nav-cta {
    margin-top: .75rem;
    width: 100%;
    justify-content: center;
    padding: .55rem 1rem;
  }
}

.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
}

button,
[type="button"],
[type="submit"],
[type="reset"],
.dashboard-menu-btn,
.store-filter-btn {
  cursor: pointer;
}

.btn:disabled,
button:disabled {
  cursor: not-allowed;
}

.btn.btn-pink,
.btn-pink {
  background-color: var(--pink) !important;
  color: #fff !important;
  border: 1px solid var(--pink) !important;
  font-weight: 600;
  border-radius: 10px;
  padding: .55rem .95rem;
  text-decoration: none;
}

.btn.btn-pink:hover,
.btn-pink:hover {
  background-color: #c2186a !important;
  border-color: #c2186a !important;
  color: #fff !important;
}

.btn.btn-pink:focus,
.btn-pink:focus {
  color: #fff;
  box-shadow: 0 0 0 .2rem rgba(233, 30, 140, 0.25);
}
.card {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(74,20,140,0.08);
}
.tier-badge-basic {
  background: #888;
  color: #fff;
}
.tier-badge-silver {
  background: var(--silver);
  color: #333;
}
.tier-badge-gold {
  background: linear-gradient(90deg, #FFD700 0%, #FFB300 100%);
  color: #333;
}

.dashboard-shell {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(180deg, #faf7ff 0%, #f7f9ff 100%);
}

.dashboard-sidebar {
  width: 270px;
  background: linear-gradient(180deg, #2f0d54 0%, #4A148C 45%, #5e1a9f 100%);
  color: #fff;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 6px 0 20px rgba(74, 20, 140, 0.16);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}

.sidebar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 8px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 10px;
  transition: all .2s ease;
  font-size: 0.95rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
  transform: translateX(2px);
}

/* Locked nav item — shown before membership is approved */
.sidebar-nav-locked {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  cursor: not-allowed;
  user-select: none;
}
.sidebar-nav-locked .bi-lock-fill {
  margin-left: auto;
}

.hp-featured-members-section {
  padding: 70px 0;
  background: #fff;
}

.sp-member-card {
  background: #fff;
  border: 1px solid #ece7f7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(74, 20, 140, 0.08);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.sp-member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 20, 140, 0.14);
}

.sp-member-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sp-member-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #eadcfb;
  background: #f8f4ff;
}

.sp-member-meta {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 10px;
}

.sp-member-meta i {
  color: #7B1FA2;
  margin-right: 6px;
}

.sp-member-summary {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.btn-store-locked {
  background: #f3f0f8;
  color: #a89fba;
  border: 1px dashed #c9bfe4;
  cursor: not-allowed;
  opacity: 0.75;
}

.dashboard-content {
  flex: 1;
  padding: 24px;
  min-width: 0;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.dashboard-title {
  font-weight: 600;
  margin: 0;
  color: #2c1148;
}

.dashboard-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(74,20,140,.07);
  border: 1px solid #f0e6f6;
}

.topbar-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c1148;
}

.dashboard-menu-btn {
  display: none;
  border: none;
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(74,20,140,0.09);
}

.stat-label {
  color: #7f6d97;
  font-size: .85rem;
  font-weight: 500;
}

.stat-value {
  color: #2a1144;
  font-size: 1.6rem;
  font-weight: 700;
}

.panel-card {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(58, 12, 102, 0.08);
}

.table-modern {
  margin-bottom: 0;
}

.table-modern thead th {
  border: 0;
  color: #6f5d86;
  font-size: .82rem;
  letter-spacing: .2px;
  text-transform: uppercase;
  background: #f7f3ff;
}

.table-modern tbody td {
  vertical-align: middle;
}

.dashboard-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: #4a148c;
  background: #f4ecff;
  border: 1px solid #e2d2ff;
  border-radius: 999px;
  padding: 6px 10px;
}

.dashboard-action-card {
  border: 1px solid #ece8f4;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.dashboard-mini-stat {
  border: 1px solid #ece8f4;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.range-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.range-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd1f3;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: #5f4a83;
  text-decoration: none;
  background: #fff;
  transition: all .2s ease;
}

.range-chip:hover {
  color: #4a148c;
  border-color: #cdb6f5;
  background: #f8f2ff;
}

.range-chip.active {
  background: #4a148c;
  border-color: #4a148c;
  color: #fff;
}

.trend-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: .75rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.trend-up {
  color: #127048;
  background: #e8fff3;
  border-color: #bcefd6;
}

.trend-down {
  color: #a63449;
  background: #fff0f2;
  border-color: #ffc7d1;
}

.trend-neutral {
  color: #655b78;
  background: #f4f2f8;
  border-color: #e3dfea;
}

.dashboard-overlay {
  display: none;
}

@media (max-width: 991.98px) {
  .dashboard-topbar-stack-sm {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dashboard-sidebar {
    position: fixed;
    left: -290px;
    top: 0;
    z-index: 1050;
    height: 100vh;
    transition: left .25s ease;
  }

  .dashboard-sidebar.open {
    left: 0;
  }

  .dashboard-content {
    padding: 16px;
  }

  .dashboard-overlay.show {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1040;
  }
}

.auth-shell {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: linear-gradient(150deg, #f8f2ff 0%, #fff7fc 55%, #f4f9ff 100%);
}

.auth-left {
  padding: 48px;
  background: radial-gradient(circle at 10% 20%, rgba(233,30,140,0.1) 0%, transparent 35%),
              radial-gradient(circle at 90% 80%, rgba(74,20,140,0.16) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left h1 {
  font-weight: 700;
  color: #2f1150;
  margin-bottom: 8px;
}

.auth-left p {
  color: #6f5f87;
  max-width: 520px;
}

.auth-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.auth-badge {
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(74, 20, 140, 0.08);
  color: #4a148c;
  font-size: .82rem;
  font-weight: 600;
}

.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  border: 0;
  box-shadow: 0 18px 45px rgba(64, 17, 108, 0.16);
}

.auth-card .card-body {
  padding: 28px;
}

.auth-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74,20,140,0.1);
  color: #4a148c;
  margin-bottom: 10px;
  font-weight: 600;
}

.auth-title {
  font-weight: 700;
  color: #2a1145;
  margin-bottom: 6px;
}

.auth-subtitle {
  color: #7f6f95;
  font-size: .92rem;
  margin-bottom: 18px;
}

.auth-card .form-label {
  font-weight: 600;
  font-size: .88rem;
  color: #563a78;
}

.auth-card .form-control {
  border-radius: 10px;
  padding: 10px 12px;
}

.auth-footer-link {
  color: #4a148c;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer-link:hover {
  text-decoration: underline;
}

.feature-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid #d8dce2;
  border-radius: 10px;
  min-height: 44px;
  background: #fff;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0e8ff;
  border: 1px solid #d9c5ff;
  color: #4a148c;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .82rem;
  font-weight: 600;
}

.feature-chip button {
  border: 0;
  background: transparent;
  color: #7f57c0;
  font-size: .9rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.feature-input-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.feature-input-row input {
  flex: 1;
}

.store-hero-wrap {
  background: linear-gradient(120deg, rgba(74, 20, 140, .12), rgba(233, 30, 140, .14));
  padding: 28px 0 18px;
}

.store-contact-bar {
  background: #fff;
  border: 1px solid #ebe7f4;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(47, 16, 92, .06);
}

.store-contact-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.store-contact-link,
.store-contact-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e6ddf6;
  background: #f8f4ff;
  color: #4a2b7a;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}

.store-contact-link:hover {
  color: #3a2062;
  border-color: #d6c7f2;
  background: #f2eaff;
}

.store-contact-whatsapp {
  white-space: nowrap;
}

.store-hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #ebe9f5;
  box-shadow: 0 10px 30px rgba(48, 22, 96, .08);
}

.store-kicker {
  font-size: .82rem;
  color: #6d6d7d;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.store-hero-title {
  margin: 8px 0 4px;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.store-hero-subtitle {
  margin: 0;
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  font-weight: 600;
  color: #4a148c;
}

.store-hero-desc {
  color: #5d6075;
}

.store-profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(64, 36, 110, .25);
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: #5a2ca0;
  background: #f3ecff;
  border: 1px solid #e0d3ff;
  border-radius: 999px;
  padding: 6px 10px;
}

.store-main {
  margin-top: 16px;
}

.store-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2e2f44;
}

.store-stat-card {
  background: #fff;
  border: 1px solid #ece8f4;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  height: 100%;
}

.store-stat-value {
  font-weight: 700;
  font-size: 1.35rem;
  color: #4a148c;
}

.store-stat-label {
  color: #656b7d;
  font-size: .86rem;
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-filter-btn {
  border: 1px solid #dfd7f2;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: #5a5f75;
}

.store-filter-btn.active {
  background: #4a148c;
  border-color: #4a148c;
  color: #fff;
}

.store-product-card {
  border: 1px solid #ece8f4;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.store-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(51, 30, 90, .1);
}

.store-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8f5ff;
}

.store-product-badge {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: .74rem;
  font-weight: 700;
  background: #ffe7f4;
  color: #b11d70;
  border: 1px solid #ffcde8;
  border-radius: 999px;
  padding: 4px 9px;
}

.store-product-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.store-meta {
  font-size: .83rem;
  color: #6f7284;
  margin-bottom: 6px;
}

.store-desc {
  font-size: .85rem;
  color: #52576c;
  margin-bottom: 0;
}

.store-about-card {
  border: 1px solid #ece8f4;
  border-radius: 14px;
}

.store-mobile-cta {
  position: sticky;
  bottom: 8px;
  z-index: 1000;
  margin: 0 auto 10px;
  width: fit-content;
  background: #fff;
  border: 1px solid #ece8f4;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 22px rgba(38, 22, 76, .15);
  display: flex;
  gap: 8px;
}

.hp-hero {
  position: relative;
  overflow: hidden;
}
.hp-slide-img {
  width: 100%;
  height: clamp(400px, 72vh, 700px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.hp-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(15,4,38,.82) 0%,
    rgba(50,14,100,.58) 45%,
    rgba(100,20,140,.18) 100%);
  z-index: 1;
}
.hp-caption {
  position: absolute;
  z-index: 2;
  bottom: 12%;
  left: 0; right: 0;
  padding: 0 clamp(1.5rem, 9vw, 130px);
}
.hp-kicker {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(233,30,140,.35);
  border: 1px solid rgba(233,30,140,.5);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}
.hp-caption h1, .hp-caption h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hp-caption p {
  font-size: clamp(.92rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 22px;
  max-width: 560px;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.hp-btn-primary {
  background: linear-gradient(90deg, #E91E8C 0%, #c2186a 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.6rem;
  box-shadow: 0 4px 18px rgba(233,30,140,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none !important;
}
.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(233,30,140,.5);
}
.hp-btn-outline {
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 50px;
  padding: .58rem 1.55rem;
  transition: background .2s, border-color .2s;
  text-decoration: none !important;
}
.hp-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.hp-btn-outline-dark {
  background: transparent;
  color: var(--purple) !important;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid var(--purple);
  border-radius: 50px;
  padding: .58rem 1.55rem;
  transition: background .2s;
  text-decoration: none !important;
}
.hp-btn-outline-dark:hover { background: rgba(74,20,140,.07); }
.hp-indicators {
  bottom: 18px;
}
.hp-indicators button {
  width: 30px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  border: none;
  transition: background .3s, width .3s;
}
.hp-indicators button.active {
  background: #E91E8C;
  width: 48px;
}
.hp-ctrl {
  width: 46px; height: 46px;
  border-radius: 50% !important;
  background: rgba(255,255,255,.15) !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  backdrop-filter: blur(6px);
  top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hp-ctrl:hover { background: rgba(233,30,140,.35) !important; }
.hp-ctrl i { font-size: 1.15rem; color: #fff; }
.carousel-control-prev.hp-ctrl { left: 20px; }
.carousel-control-next.hp-ctrl { right: 20px; }

/* ANNOUNCE */
.hp-announce {
  background: linear-gradient(90deg, #00897B 0%, #00695C 100%);
  color: #fff;
  padding: 11px 0;
  font-size: .87rem;
}
.hp-announce-badge {
  background: #FFD700;
  color: #1a0a2e;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.hp-announce-link {
  color: #FFD700;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.hp-announce-link:hover { color: #fff; }

/* SECTION COMMON */
.hp-section-head { margin-bottom: 2.5rem; }
.hp-section-label {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #E91E8C;
  border: 1px solid rgba(233,30,140,.3);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 10px;
}
.hp-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a0a2e;
  margin-bottom: 10px;
}
.hp-section-head p {
  color: #625a76;
  font-size: .97rem;
  max-width: 580px;
  margin: 0 auto;
}

/* PILLARS */
.hp-pillars-section {
  padding: 5rem 0;
  background: #f9f5ff;
}
.hp-pillar-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid #ede8f6;
  box-shadow: 0 4px 24px rgba(74,20,140,.06);
  transition: transform .25s, box-shadow .25s;
}
.hp-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(74,20,140,.13);
}
.hp-pillar-card--featured {
  border-color: #E91E8C;
  box-shadow: 0 8px 32px rgba(233,30,140,.12);
}
.hp-pillar-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hp-pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a0a2e;
  margin-bottom: .6rem;
}
.hp-pillar-card p {
  font-size: .9rem;
  color: #625a76;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.hp-pillar-link {
  font-size: .85rem;
  font-weight: 700;
  color: #E91E8C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.hp-pillar-link:hover { gap: .6rem; color: #c2186a; }

/* IMPACT */
.hp-impact-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 55%, #880e4f 100%);
  overflow: hidden;
}
.hp-impact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(233,30,140,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.06) 0%, transparent 45%);
  pointer-events: none;
}
.hp-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}
.hp-stat:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.hp-stat-icon {
  font-size: 1.8rem;
  color: #E91E8C;
  margin-bottom: .6rem;
}
.hp-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}
.hp-stat-num span { color: #FFD700; }
.hp-stat-label {
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}

/* PROGRAMS */
.hp-programs-section {
  padding: 5rem 0;
  background: #fff;
}
.hp-prog-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid #ede8f6;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.hp-prog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(74,20,140,.1);
}
.hp-prog-icon-wrap {
  min-width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hp-prog-body h5 {
  font-size: .95rem;
  font-weight: 700;
  color: #1a0a2e;
  margin-bottom: .4rem;
}
.hp-prog-body p {
  font-size: .83rem;
  color: #625a76;
  margin-bottom: .6rem;
  line-height: 1.6;
}
.hp-prog-link {
  font-size: .8rem;
  font-weight: 700;
  color: #E91E8C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s;
}
.hp-prog-link:hover { gap: .5rem; }

/* QUOTE */
.hp-quote-section {
  padding: 4rem 0;
  background: #f9f5ff;
}
.hp-quote-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #ede8f6;
  box-shadow: 0 8px 36px rgba(74,20,140,.08);
  position: relative;
}
.hp-quote-mark {
  font-size: 7rem;
  line-height: .7;
  color: #E91E8C;
  opacity: .18;
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem; left: 2rem;
  pointer-events: none;
}
.hp-quote-card blockquote {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: #2d1052;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.hp-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
}
.hp-quote-avatar {
  font-size: 2rem;
  color: #E91E8C;
}
.hp-quote-author strong {
  display: block;
  font-size: .93rem;
  color: #1a0a2e;
}
.hp-quote-author span {
  font-size: .78rem;
  color: #8a80a0;
}

/* NEWSLETTER */
.hp-newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #4A148C 0%, #880e4f 60%, #E91E8C 100%);
  position: relative;
  overflow: hidden;
}
.hp-newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hp-nl-input {
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  color: #fff !important;
  border-radius: 10px;
  padding: .6rem .9rem;
  font-size: .9rem;
}
.hp-nl-input::placeholder { color: rgba(255,255,255,.7) !important; }
.hp-nl-input:focus {
  background: rgba(255,255,255,.22) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.6) !important;
  outline: none;
}
.hp-nl-btn {
  background: #FFD700;
  color: #1a0a2e;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  border-radius: 10px;
  padding: .65rem 1.4rem;
  transition: background .2s, transform .2s;
}
.hp-nl-btn:hover { background: #ffc200; transform: translateY(-1px); }
.hp-nl-trust {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: center;
}
.hp-nl-trust i { color: #FFD700; }

/* NEWS */
.hp-news-section {
  padding: 5rem 0;
  background: #fff;
}
.hp-news-empty {
  text-align: center;
  padding: 3rem;
  background: #f9f5ff;
  border-radius: 16px;
  color: #8a80a0;
}
.hp-news-empty i { font-size: 2.5rem; display: block; margin-bottom: .5rem; }
.hp-see-all-btn {
  border: 1.5px solid var(--purple);
  color: var(--purple) !important;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1.1rem;
  text-decoration: none;
  transition: background .2s;
}
.hp-see-all-btn:hover { background: rgba(74,20,140,.06); }
.hp-news-card {
  background: #fff;
  border: 1px solid #ede8f6;
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.hp-news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E91E8C, #4A148C);
}
.hp-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74,20,140,.1);
}
.hp-news-type {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: .75rem;
}
.hp-news-type--news { background: #fce4f4; color: #c2186a; }
.hp-news-type--event { background: #ede7f6; color: #4A148C; }
.hp-news-card h5 {
  font-size: .97rem;
  font-weight: 700;
  color: #1a0a2e;
  margin-bottom: .5rem;
  line-height: 1.45;
}
.hp-news-card p {
  font-size: .85rem;
  color: #625a76;
  margin-bottom: .75rem;
  line-height: 1.6;
}
.hp-news-date {
  font-size: .78rem;
  color: #9e8fb8;
  display: flex;
  align-items: center;
}

/* CTA */
.hp-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 50%, #C2185B 100%);
  position: relative;
  overflow: hidden;
}
.hp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(233,30,140,.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.06) 0%, transparent 45%);
  pointer-events: none;
}
.hp-cta-icon {
  font-size: 2.4rem;
  color: #FFD700;
  margin-bottom: 1rem;
}
.hp-cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .8rem;
}
.hp-cta-section p {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  margin-bottom: 0;
}
.hp-cta-btn {
  font-size: 1rem;
  padding: .75rem 2rem;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .hp-caption { bottom: 8%; }
  .hp-pillars-section,
  .hp-programs-section,
  .hp-news-section,
  .hp-quote-section,
  .hp-newsletter-section,
  .hp-impact-section,
  .hp-cta-section { padding: 3.5rem 0; }
  .hp-quote-card { padding: 2rem 1.5rem; }
}
@media (max-width: 575.98px) {
  .hp-slide-img { height: 340px; }
  .hp-caption { bottom: 6%; padding: 0 1.25rem; }
  .hp-caption p { display: none; }
  .hp-ctrl { display: none; }
  .hp-stat-num { font-size: 1.9rem; }
}

@media (max-width: 991.98px) {
  .store-contact-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .store-contact-whatsapp {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .store-contact-link,
  .store-contact-text {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .auth-shell {
    grid-template-columns: 1fr;
    min-height: initial;
  }

  .auth-left {
    padding: 24px 18px 10px;
  }

  .auth-right {
    padding: 12px 14px 24px;
  }

  .auth-card .card-body {
    padding: 20px;
  }
}

.inner-page-hero {
  background: linear-gradient(135deg, #f8efff 0%, #fef4fb 100%);
  border: 1px solid #ebdef6;
  border-radius: 14px;
  padding: 18px;
}

.inner-page-hero h1 {
  margin: 0 0 6px;
  color: #321652;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.inner-page-hero p {
  color: #625a76;
}

.inner-info-card,
.inner-content-card {
  border: 1px solid #ece8f4;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(58, 12, 102, 0.06);
}

.inner-info-card h5,
.inner-content-card h4 {
  color: #2d1b4b;
  font-weight: 700;
}

.gallery-card {
  border: 1px solid #ece8f4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(58, 12, 102, 0.07);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

@media (max-width: 575.98px) {
  .inner-page-hero,
  .inner-info-card,
  .inner-content-card {
    padding: 14px;
  }
}

/* ============================================================
   ABOUT PAGE — ab-* classes
   ============================================================ */

/* ---- Hero ---- */
.ab-hero {
  position: relative;
  min-height: clamp(400px, 65vh, 620px);
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 50%, #880E4F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 60%, rgba(233,30,140,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(74,20,140,0.25) 0%, transparent 50%);
}
.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,46,0.35);
}
.ab-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  color: #fff;
}
.ab-kicker {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  margin-bottom: 20px;
}
.ab-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ab-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.ab-btn-primary {
  background: linear-gradient(135deg, #E91E8C, #C2185B);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 4px 16px rgba(233,30,140,0.4);
  transition: transform .2s, box-shadow .2s;
}
.ab-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.5);
}
.ab-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, color .2s;
}
.ab-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.ab-btn-outline-dark {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, color .2s;
}
.ab-btn-outline-dark:hover {
  background: var(--purple);
  color: #fff;
}

/* ---- Section labels & titles (shared) ---- */
.ab-section-label {
  display: inline-block;
  background: linear-gradient(135deg, #fce4f4, #ede7f6);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.ab-section-label--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.ab-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}
.ab-section-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
}

/* ---- Mission / Vision / Promise ---- */
.ab-mvp-section {
  padding: 80px 0;
  background: #f8f6fc;
}
.ab-mvp-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 24px rgba(74,20,140,0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.ab-mvp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(74,20,140,0.14);
}
.ab-mvp-card--featured {
  background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 100%);
  color: #fff;
}
.ab-mvp--featured h4,
.ab-mvp--featured p { color: #fff; }
.ab-mvp-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.ab-mvp--mission .ab-mvp-icon {
  background: #fce4f4;
  color: #E91E8C;
}
.ab-mvp--vision .ab-mvp-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.ab-mvp--promise .ab-mvp-icon {
  background: #ede7f6;
  color: #7B1FA2;
}
.ab-mvp-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.ab-mvp-card p {
  font-size: .95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}
.ab-mvp-accent {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  width: 100%;
}
.ab-mvp--mission .ab-mvp-accent { background: linear-gradient(90deg,#E91E8C,#C2185B); }
.ab-mvp--vision  .ab-mvp-accent { background: rgba(255,255,255,0.3); }
.ab-mvp--promise .ab-mvp-accent { background: linear-gradient(90deg,#7B1FA2,#4A148C); }

/* ---- Women Empowerment ---- */
.ab-empower-section {
  padding: 80px 0;
  background: #fff;
}
.ab-empower-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.ab-estat {
  display: flex;
  flex-direction: column;
}
.ab-estat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A148C, #E91E8C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ab-estat-label {
  font-size: .8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}
.ab-empower-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ab-ev-card {
  background: #f8f6fc;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.ab-ev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74,20,140,0.1);
}
.ab-ev-card i {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ab-ev-card--1 i { color: #E91E8C; }
.ab-ev-card--2 i { color: #7B1FA2; }
.ab-ev-card--3 i { color: #C2185B; }
.ab-ev-card--4 i { color: #4A148C; }
.ab-ev-card strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.ab-ev-card p {
  font-size: .82rem;
  color: #777;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ---- Women Entrepreneurship Focus ---- */
.ab-entrepreneur-section {
  padding: 80px 0;
  background: #f8f6fc;
}
.ab-focus-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(74,20,140,0.07);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.ab-focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(74,20,140,0.14);
}
.ab-focus-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--fb);
  color: var(--fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.ab-focus-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.ab-focus-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Core Values ---- */
.ab-values-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.ab-values-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 60%, #7B1FA2 100%);
}
.ab-value-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 30px 24px;
  color: #fff;
  backdrop-filter: blur(6px);
  height: 100%;
  transition: background .25s, transform .25s;
}
.ab-value-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.ab-value-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #E91E8C, #7B1FA2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 14px;
}
.ab-value-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ab-value-card p {
  font-size: .87rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Why / Quote ---- */
.ab-why-section {
  padding: 80px 0;
  background: #fff;
}
.ab-why-card {
  background: linear-gradient(135deg, #fce4f4 0%, #ede7f6 100%);
  border-radius: 20px;
  padding: 52px 48px;
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.ab-why-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: #E91E8C;
  opacity: .35;
  margin-bottom: 16px;
}
.ab-why-text {
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}
.ab-why-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ab-why-avatar {
  font-size: 2.4rem;
  color: var(--purple);
  line-height: 1;
}
.ab-why-author strong {
  display: block;
  font-size: .95rem;
  color: var(--dark);
}
.ab-why-author span {
  font-size: .8rem;
  color: #888;
}

/* ---- CTA ---- */
.ab-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 50%, #880E4F 100%);
  color: #fff;
}
.ab-cta-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #E91E8C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 18px;
}
.ab-cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.ab-cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .ab-mvp-section,
  .ab-empower-section,
  .ab-entrepreneur-section,
  .ab-values-section,
  .ab-why-section,
  .ab-cta-section { padding: 52px 0; }
  .ab-empower-visual { grid-template-columns: 1fr; }
  .ab-why-card { padding: 32px 22px; }
  .ab-empower-stats { gap: 20px; }
}

/* ============================================================
   WHAT WE DO PAGE — wd-* classes
   ============================================================ */

/* ---- Shared buttons / labels (mirrors ab-*) ---- */
.wd-btn-primary {
  background: linear-gradient(135deg, #E91E8C, #C2185B);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 4px 16px rgba(233,30,140,0.4);
  transition: transform .2s, box-shadow .2s;
}
.wd-btn-primary:hover { color:#fff; transform:translateY(-2px); box-shadow:0 8px 24px rgba(233,30,140,0.5); }
.wd-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, color .2s;
}
.wd-btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }
.wd-btn-outline-dark {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.wd-btn-outline-dark:hover { background: var(--purple); color: #fff; }
.wd-section-label {
  display: inline-block;
  background: linear-gradient(135deg, #fce4f4, #ede7f6);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.wd-section-label--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.wd-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}
.wd-section-body { font-size: 1rem; color: #555; line-height: 1.75; }

/* ---- Hero ---- */
.wd-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 55%, #880E4F 100%);
  overflow: hidden;
  padding: 70px 0 60px;
}
.wd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(233,30,140,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(74,20,140,0.22) 0%, transparent 50%);
}
.wd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,46,0.25);
}
.wd-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.wd-kicker {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  margin-bottom: 20px;
}
.wd-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}
.wd-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.75;
}
.wd-hero-img-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.wd-hero-img {
  width: 100%;
  height: 380px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: cover;
  display: block;
}
.wd-hero-icon-row {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.97);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(74,20,140,0.2);
  white-space: nowrap;
}
.wd-hero-mini-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.wd-hmi--pink   { background: #fce4f4; color: #E91E8C; }
.wd-hmi--purple { background: #ede7f6; color: #7B1FA2; }
.wd-hmi--rose   { background: #fce4ec; color: #C2185B; }
.wd-hero-badge {
  position: absolute;
  background: #fff;
  color: var(--dark);
  font-size: .77rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.wd-hero-badge--1 { bottom: 28px; left: -30px; color: var(--purple); }
.wd-hero-badge--2 { top: 28px; right: -24px; color: #E91E8C; }

/* ---- 3 Pillars ---- */
.wd-pillars-section {
  padding: 80px 0;
  background: #f8f6fc;
}
.wd-pillar-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px 0;
  box-shadow: 0 4px 24px rgba(74,20,140,0.08);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.wd-pillar-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(74,20,140,0.15); }
.wd-pillar--featured {
  background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 100%);
}
.wd-pillar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.wd-pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.wd-pillar--learn .wd-pillar-icon { background: #fce4f4; color: #E91E8C; }
.wd-pillar--mentor .wd-pillar-icon { background: rgba(255,255,255,0.18); color: #fff; }
.wd-pillar--market .wd-pillar-icon { background: #ede7f6; color: #7B1FA2; }
.wd-pillar-num {
  font-size: 2.5rem;
  font-weight: 900;
  opacity: .08;
  color: var(--dark);
  line-height: 1;
  user-select: none;
}
.wd-pillar-num--light { color: #fff; opacity: .2; }
/* General card text */
.wd-pillar-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.wd-pillar-card p  { font-size: .9rem; color: #666; line-height: 1.7; margin-bottom: 0; flex: 1; }
/* Featured card text MUST come after general rules — higher specificity wins */
.wd-pillar-card.wd-pillar--featured h4 { color: #fff !important; }
.wd-pillar-card.wd-pillar--featured p  { color: rgba(255,255,255,0.88) !important; }
/* Image band at bottom of each pillar card */
.wd-pillar-img-band {
  margin: 20px -28px 0;
  background: rgba(74,20,140,0.04);
  border-top: 1px solid rgba(74,20,140,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
}
.wd-pillar-img-band--light {
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.wd-pillar-img-band img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.wd-pillar-img-band span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wd-pillar-img-band--light span { color: rgba(255,255,255,0.85); }

/* ---- 9 Programs ---- */
.wd-programs-section {
  padding: 80px 0;
  background: #fff;
}
.wd-prog-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0eaf8;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.wd-prog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(74,20,140,0.1);
  border-color: transparent;
}
.wd-prog-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--pb);
  color: var(--pc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.wd-prog-body h5 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.wd-prog-body p  { font-size: .83rem; color: #777; line-height: 1.6; margin-bottom: 0; }

/* ---- How It Works ---- */
.wd-how-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.wd-how-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 60%, #7B1FA2 100%);
}
.wd-steps { position: relative; z-index: 2; }
.wd-step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  color: #fff;
}
.wd-step:not(.wd-step--last)::after {
  content: '';
  position: absolute;
  top: 56px;
  right: 0;
  width: 50%;
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.wd-step-num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wd-step-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.wd-step:hover .wd-step-icon { background: rgba(233,30,140,0.3); }
.wd-step h6 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.wd-step p  { font-size: .82rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 0; }

/* ---- Impact Split ---- */
.wd-impact-section {
  padding: 80px 0;
  background: #f8f6fc;
}
.wd-impact-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.wd-impact-img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 48px rgba(74,20,140,0.2);
  object-fit: cover;
}
.wd-impact-overlay-cards {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-iov-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(74,20,140,0.15);
  min-width: 168px;
}
.wd-iov-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ib);
  color: var(--ic);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.wd-iov-card span:last-child {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.wd-impact-chip {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4A148C, #E91E8C);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.wd-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.wd-istat {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(74,20,140,0.07);
  display: flex;
  flex-direction: column;
}
.wd-istat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A148C, #E91E8C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.wd-istat-label {
  font-size: .78rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 5px;
}

/* ---- CTA ---- */
.wd-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 50%, #880E4F 100%);
  color: #fff;
}
.wd-cta-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #E91E8C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 18px;
}
.wd-cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.wd-cta-section p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .wd-pillars-section,
  .wd-programs-section,
  .wd-how-section,
  .wd-impact-section,
  .wd-cta-section { padding: 52px 0; }
  .wd-step::after { display: none; }
  .wd-impact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wd-hero { padding: 52px 0 44px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE  ·  ct-*
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 55%, #880E4F 100%);
  padding: 96px 0 84px;
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.ct-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(233,30,140,.25) 0%, transparent 60%);
  pointer-events: none;
}
.ct-hero-content { position: relative; z-index: 2; }
.ct-kicker {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 20px;
}
.ct-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.ct-hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Info Strip ───────────────────────────────────────────────────── */
.ct-info-strip {
  background: var(--light, #f8f8fc);
  padding: 0 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}
.ct-info-strip .container { padding-top: 0; }
.ct-info-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(74,20,140,.10);
  padding: 32px 28px 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ct-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(74,20,140,.16);
}
.ct-info-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--cb, #f3e5f5);
  color: var(--ci, #7B1FA2);
  font-size: 1.55rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.ct-info-card h6 {
  font-size: .9rem; font-weight: 700;
  color: #1a0a2e; margin: 0;
}
.ct-info-card a {
  color: #4A148C; font-weight: 600;
  font-size: .95rem; text-decoration: none;
}
.ct-info-card a:hover { color: #E91E8C; }
.ct-info-card span, .ct-loc {
  font-size: .82rem; color: #777;
}

/* ── Form Section ─────────────────────────────────────────────────── */
.ct-form-section {
  background: var(--light, #f8f8fc);
  padding: 72px 0 88px;
}

/* Form Card */
.ct-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(74,20,140,.10);
  padding: 44px 40px;
}
.ct-form-header h3 {
  font-size: 1.65rem; font-weight: 800; color: #1a0a2e; margin-bottom: 6px;
}
.ct-form-header p { color: #666; margin-bottom: 28px; font-size: .95rem; }

.ct-error-box {
  background: #fff3f7; border: 1px solid #f48fb1;
  color: #880E4F; border-radius: 10px;
  padding: 13px 18px; font-size: .88rem;
  margin-bottom: 22px;
}

.ct-label {
  display: block; font-size: .83rem; font-weight: 700;
  color: #1a0a2e; margin-bottom: 7px; letter-spacing: .02em;
}
.ct-req { color: #E91E8C; }

.ct-input {
  width: 100%;
  border: 1.5px solid #e0d7f0;
  border-radius: 11px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  color: #1a0a2e;
  background: #faf8fe;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.ct-input:focus {
  border-color: #7B1FA2;
  box-shadow: 0 0 0 3px rgba(123,31,162,.12);
  background: #fff;
}
.ct-input--err { border-color: #e91e8c !important; }
.ct-textarea { resize: vertical; }

.ct-btn-primary {
  background: linear-gradient(90deg, #7B1FA2, #E91E8C);
  color: #fff; border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .04em;
  transition: opacity .2s, transform .2s;
}
.ct-btn-primary:hover { opacity: .88; transform: translateY(-2px); color: #fff; }

.ct-form-note {
  text-align: center; font-size: .78rem; color: #999;
  margin-top: 14px; margin-bottom: 0;
}

/* Success */
.ct-success-wrap {
  text-align: center; padding: 24px 0;
}
.ct-success-icon {
  font-size: 3.5rem; color: #43a047; margin-bottom: 16px;
}
.ct-success-wrap h4 {
  font-size: 1.5rem; font-weight: 800; color: #1a0a2e; margin-bottom: 10px;
}
.ct-success-wrap p { color: #555; font-size: .97rem; }

/* ── Sidebar ──────────────────────────────────────────────────────── */
.ct-sidebar { display: flex; flex-direction: column; gap: 28px; }

.ct-sidebar-block {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(74,20,140,.08);
  padding: 30px 28px;
}
.ct-sidebar-block h5 {
  font-size: 1rem; font-weight: 800; color: #1a0a2e; margin-bottom: 18px;
}
.text-pink { color: #E91E8C !important; }

/* FAQ */
.ct-faq { display: flex; flex-direction: column; gap: 16px; }
.ct-faq-item strong {
  display: block; font-size: .88rem; font-weight: 700; color: #4A148C; margin-bottom: 4px;
}
.ct-faq-item p {
  font-size: .84rem; color: #555; margin: 0; line-height: 1.55;
}
.ct-faq-item a { color: #E91E8C; }

/* Social */
.ct-social-row { display: flex; flex-direction: column; gap: 10px; }
.ct-social-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 12px;
  font-size: .88rem; font-weight: 600;
  text-decoration: none; transition: transform .2s, opacity .2s;
  color: #fff;
}
.ct-social-btn:hover { transform: translateX(4px); opacity: .9; color: #fff; }
.ct-social--fb { background: #1877f2; }
.ct-social--tw { background: #14171a; }
.ct-social--li { background: #0a66c2; }
.ct-social--yt { background: #ff0000; }
.ct-social-btn i { font-size: 1.05rem; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .ct-form-card { padding: 30px 24px; }
}
@media (max-width: 767.98px) {
  .ct-hero { padding: 72px 0 120px; }
  .ct-info-strip { margin-top: -56px; }
  .ct-form-section { padding: 52px 0 60px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PUBLIC EVENTS PAGE  ·  ev-*
   ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.ev-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 55%, #880E4F 100%);
  padding: 80px 0 96px;
  overflow: hidden;
}
.ev-hero::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%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23fff' stroke-width='.3' opacity='.07'/%3E%3C/svg%3E") repeat;
  pointer-events:none;
}
.ev-hero-overlay{position:absolute;inset:0;background:radial-gradient(ellipse at 70% 40%,rgba(233,30,140,.2) 0%,transparent 55%);pointer-events:none;}
.ev-hero-content{position:relative;z-index:2;}
.ev-kicker{display:inline-block;background:rgba(255,255,255,.12);color:#fff;font-size:.76rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:5px 16px;border-radius:50px;border:1px solid rgba(255,255,255,.2);margin-bottom:18px;}
.ev-hero h1{color:#fff;font-size:clamp(1.9rem,5vw,3rem);font-weight:800;margin-bottom:14px;}
.ev-hero-sub{color:rgba(255,255,255,.8);font-size:1rem;max-width:520px;margin:0 auto 28px;}
.ev-hero-stats{display:flex;align-items:center;justify-content:center;gap:0;}
.ev-hstat{padding:0 28px;text-align:center;}
.ev-hstat strong{display:block;font-size:1.9rem;font-weight:800;color:#fff;line-height:1;}
.ev-hstat span{font-size:.8rem;color:rgba(255,255,255,.7);}
.ev-hstat-divider{width:1px;height:44px;background:rgba(255,255,255,.25);}

/* Filter Bar */
.ev-filter-bar{background:#fff;border-bottom:1px solid #f0ecf8;padding:14px 0;position:sticky;top:64px;z-index:100;box-shadow:0 2px 12px rgba(74,20,140,.06);}
.ev-filter-btn{background:#f5f0fc;border:1.5px solid #e0d7f0;color:#4A148C;font-size:.84rem;font-weight:600;padding:6px 16px;transition:all .2s;}
.ev-filter-btn.active{background:#4A148C;color:#fff;border-color:#4A148C;}
.ev-filter-btn:hover{background:#4A148C;color:#fff;border-color:#4A148C;}
.ev-fcnt{background:rgba(0,0,0,.12);color:inherit;border-radius:50px;padding:0 6px;font-size:.72rem;margin-left:4px;}
.ev-cat-pill{display:inline-block;padding:4px 14px;border-radius:50px;background:#f5f0fc;border:1px solid #e0d7f0;color:#7B1FA2;font-size:.78rem;font-weight:600;text-decoration:none;transition:all .2s;}
.ev-cat-pill.active,.ev-cat-pill:hover{background:#E91E8C;color:#fff;border-color:#E91E8C;}

/* Grid */
.ev-grid-section{background:#f8f4fe;padding:56px 0 80px;}
.ev-empty{padding:72px 20px;color:#999;}
.ev-empty h5{color:#555;margin-bottom:8px;}

/* Card */
.ev-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 4px 24px rgba(74,20,140,.09);transition:transform .25s,box-shadow .25s;height:100%;display:flex;flex-direction:column;}
.ev-card:hover{transform:translateY(-5px);box-shadow:0 10px 36px rgba(74,20,140,.15);}
.ev-card--past{opacity:.82;}
.ev-card-img{height:180px;background:#f3e5f5;background-size:cover;background-position:center;flex-shrink:0;}
.ev-card-img--placeholder{display:flex;align-items:center;justify-content:center;font-size:2.5rem;color:#ce93d8;}
.ev-card-body{padding:22px 22px 20px;display:flex;flex-direction:column;flex:1;}
.ev-badge{display:inline-block;font-size:.7rem;font-weight:700;padding:3px 10px;border-radius:50px;text-transform:uppercase;letter-spacing:.06em;}
.ev-badge--type{background:#ede7f6;color:#4A148C;}
.ev-badge--cat{background:#fce4f4;color:#880E4F;}
.ev-badge--upcoming{background:#e8f5e9;color:#2e7d32;}
.ev-badge--past{background:#f5f5f5;color:#757575;}
.ev-card-title{font-size:1rem;font-weight:800;color:#1a0a2e;margin:10px 0 6px;line-height:1.35;}
.ev-card-desc{font-size:.84rem;color:#666;margin-bottom:12px;line-height:1.5;flex:1;}
.ev-card-meta{display:flex;flex-wrap:wrap;gap:6px 14px;font-size:.78rem;color:#888;margin-bottom:12px;}
.ev-card-meta span{display:flex;align-items:center;gap:4px;}
.ev-card-meta i{color:#7B1FA2;}
.ev-deadline{font-size:.78rem;color:#E91E8C;font-weight:600;margin-bottom:12px;}
.ev-deadline i{margin-right:3px;}
.ev-card-footer{display:flex;gap:8px;margin-top:auto;padding-top:4px;}

/* Buttons */
.ev-btn-primary{background:linear-gradient(90deg,#7B1FA2,#E91E8C);color:#fff !important;border:none;border-radius:50px;font-weight:700;font-size:.85rem;padding:8px 20px;transition:opacity .2s,transform .2s;}
.ev-btn-primary:hover{opacity:.88;transform:translateY(-1px);}
.ev-btn-outline{background:#fff;color:#4A148C;border:1.5px solid #4A148C;border-radius:50px;font-weight:700;font-size:.85rem;padding:7px 18px;transition:all .2s;}
.ev-btn-outline:hover{background:#4A148C;color:#fff;}
.ev-btn-outline-white{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.6);border-radius:50px;font-weight:700;font-size:.95rem;padding:12px 32px;transition:all .2s;}
.ev-btn-outline-white:hover{background:rgba(255,255,255,.12);color:#fff;border-color:#fff;}
.ev-btn-disabled{background:#eee;color:#aaa !important;border:none;border-radius:50px;font-size:.85rem;padding:8px 16px;cursor:not-allowed;}

/* CTA */
.ev-cta-section{background:linear-gradient(135deg,#1a0a2e,#4A148C 55%,#880E4F);padding:80px 0;text-align:center;}
.ev-cta-section h3{color:#fff;font-size:clamp(1.5rem,3.5vw,2rem);font-weight:800;margin-bottom:12px;}
.ev-cta-section p{color:rgba(255,255,255,.8);max-width:500px;margin:0 auto;}

/* ═══════════════════════════════════════════════════════════════════
   EVENT DETAIL PAGE  ·  evd-*
   ═══════════════════════════════════════════════════════════════════ */

.evd-hero{position:relative;background:linear-gradient(135deg,#1a0a2e 0%,#4A148C 60%,#880E4F 100%);padding:72px 0 64px;overflow:hidden;}
.evd-hero-overlay{position:absolute;inset:0;background:radial-gradient(ellipse at 60% 30%,rgba(233,30,140,.2) 0%,transparent 55%);pointer-events:none;}
.evd-hero-content{position:relative;z-index:2;}
.evd-breadcrumb{font-size:.8rem;color:rgba(255,255,255,.65);margin-bottom:14px;}
.evd-breadcrumb a{color:rgba(255,255,255,.65);text-decoration:none;}
.evd-breadcrumb a:hover{color:#fff;}
.evd-breadcrumb i{margin:0 6px;font-size:.65rem;}
.evd-badge{display:inline-block;font-size:.7rem;font-weight:700;padding:3px 12px;border-radius:50px;letter-spacing:.06em;}
.evd-badge--type{background:rgba(255,255,255,.15);color:#fff;}
.evd-badge--cat{background:rgba(233,30,140,.25);color:#f9a8d4;}
.evd-badge--upcoming{background:rgba(67,160,71,.3);color:#a5d6a7;}
.evd-badge--past{background:rgba(255,255,255,.1);color:rgba(255,255,255,.7);}
.evd-hero h1{color:#fff;font-size:clamp(1.6rem,4vw,2.6rem);font-weight:800;margin:14px 0 12px;line-height:1.25;}
.evd-hero-sub{color:rgba(255,255,255,.82);font-size:1rem;margin-bottom:24px;}
.evd-meta-strip{display:flex;flex-wrap:wrap;gap:10px 20px;margin-top:22px;}
.evd-meta-item{display:inline-flex;align-items:center;gap:7px;color:rgba(255,255,255,.8);font-size:.85rem;background:rgba(255,255,255,.1);border-radius:50px;padding:5px 14px;}
.evd-meta-item i{color:#f9a8d4;font-size:.9rem;}

.evd-body-section{background:#f8f4fe;padding:56px 0 80px;}
.evd-desc-card{background:#fff;border-radius:20px;padding:32px 30px;box-shadow:0 4px 22px rgba(74,20,140,.08);}
.evd-desc-card h4{font-size:1.2rem;font-weight:800;color:#1a0a2e;margin-bottom:16px;}
.evd-desc-content{color:#555;line-height:1.75;font-size:.96rem;}

.evd-share-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.evd-share-row span{font-size:.82rem;color:#999;font-weight:600;}
.evd-share-btn{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.95rem;border:none;cursor:pointer;transition:opacity .2s,transform .2s;}
.evd-share-btn:hover{opacity:.85;transform:scale(1.1);}
.evd-share--wa{background:#25d366;}
.evd-share--fb{background:#1877f2;}
.evd-share--tw{background:#14171a;}
.evd-share--copy{background:#7B1FA2;}

.evd-apply-card{background:#fff;border-radius:20px;padding:28px 26px;box-shadow:0 6px 28px rgba(74,20,140,.1);position:sticky;top:80px;}
.evd-apply-header{margin-bottom:20px;}
.evd-apply-header h5{font-size:1.1rem;font-weight:800;color:#1a0a2e;margin-bottom:8px;}
.evd-apply-header p{font-size:.88rem;color:#666;margin-bottom:0;}
.evd-apply-header--past{text-align:center;padding:12px 0 4px;color:#888;}
.evd-apply-header--past h5{color:#888;}
.evd-apply-header--success{padding:14px 0;color:#2e7d32;}
.evd-apply-header--success h5{color:#2e7d32;}
.evd-apply-header--info{padding:12px 0;color:#7B1FA2;}
.evd-apply-header--info h5{color:#7B1FA2;}
.evd-spots-bar{height:7px;background:#eee;border-radius:4px;overflow:hidden;margin-bottom:6px;}
.evd-spots-fill{height:100%;background:linear-gradient(90deg,#7B1FA2,#E91E8C);border-radius:4px;}
.evd-spots-label{font-size:.77rem;color:#888;margin-bottom:6px;}
.evd-deadline{font-size:.8rem;color:#E91E8C;font-weight:600;margin-bottom:14px;}
.evd-apply-form{display:flex;flex-direction:column;gap:12px;}
.evd-label{font-size:.8rem;font-weight:700;color:#1a0a2e;margin-bottom:4px;}
.evd-input{width:100%;border:1.5px solid #e0d7f0;border-radius:11px;padding:11px 14px;font-family:'Poppins',sans-serif;font-size:.9rem;color:#1a0a2e;background:#faf8fe;outline:none;transition:border-color .2s,box-shadow .2s;}
.evd-input:focus{border-color:#7B1FA2;box-shadow:0 0 0 3px rgba(123,31,162,.1);}
.evd-textarea{resize:vertical;}
.evd-btn-primary{background:linear-gradient(90deg,#7B1FA2,#E91E8C);color:#fff !important;border:none;border-radius:50px;padding:12px 28px;font-family:'Poppins',sans-serif;font-weight:700;font-size:.9rem;transition:opacity .2s,transform .2s;}
.evd-btn-primary:hover{opacity:.88;transform:translateY(-1px);}
.evd-btn-outline{background:transparent;border:2px solid rgba(255,255,255,.6);color:#fff !important;border-radius:50px;padding:10px 24px;font-weight:700;font-size:.9rem;transition:all .2s;}
.evd-btn-outline:hover{background:rgba(255,255,255,.1);border-color:#fff;}

/* ═══════════════════════════════════════════════════════════════════
   MEMBER EVENTS  ·  mev-*
   ═══════════════════════════════════════════════════════════════════ */

.mev-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 3px 18px rgba(74,20,140,.08);height:100%;display:flex;flex-direction:column;transition:box-shadow .2s;}
.mev-card:hover{box-shadow:0 7px 28px rgba(74,20,140,.14);}
.mev-card--past{opacity:.78;}
.mev-banner{height:140px;background-size:cover;background-position:center;flex-shrink:0;}
.mev-body{padding:18px 18px 16px;display:flex;flex-direction:column;flex:1;}
.mev-badge{display:inline-block;font-size:.68rem;font-weight:700;padding:2px 10px;border-radius:50px;text-transform:uppercase;letter-spacing:.05em;}
.mev-badge--type{background:#ede7f6;color:#4A148C;}
.mev-badge--cat{background:#fce4f4;color:#880E4F;}
.mev-title{font-size:.97rem;font-weight:800;color:#1a0a2e;margin:8px 0 5px;line-height:1.3;}
.mev-desc{font-size:.82rem;color:#666;margin-bottom:10px;line-height:1.5;flex:1;}
.mev-meta{display:flex;flex-direction:column;gap:4px;font-size:.77rem;color:#888;margin-bottom:12px;}
.mev-meta span{display:flex;align-items:center;gap:5px;}
.mev-meta i{color:#7B1FA2;font-size:.82rem;}
.mev-actions{display:flex;gap:6px;margin-top:auto;}

/* ═══════════════════════════════════════════════════════════════════
   UPDATES PAGE  ·  up-*
   ═══════════════════════════════════════════════════════════════════ */

.up-hero{position:relative;background:linear-gradient(135deg,#1a0a2e 0%,#4A148C 55%,#880E4F 100%);padding:80px 0 90px;overflow:hidden;}
.up-hero::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%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23fff' stroke-width='.3' opacity='.07'/%3E%3C/svg%3E") repeat;pointer-events:none;}
.up-hero-overlay{position:absolute;inset:0;background:radial-gradient(ellipse at 60% 40%,rgba(233,30,140,.2) 0%,transparent 55%);pointer-events:none;}
.up-hero-content{position:relative;z-index:2;}
.up-kicker{display:inline-block;background:rgba(255,255,255,.12);color:#fff;font-size:.76rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:5px 16px;border-radius:50px;border:1px solid rgba(255,255,255,.2);margin-bottom:18px;}
.up-hero h1{color:#fff;font-size:clamp(1.9rem,5vw,3rem);font-weight:800;margin-bottom:12px;}
.up-hero-sub{color:rgba(255,255,255,.8);font-size:1rem;max-width:520px;margin:0 auto;}
.up-filter-bar{background:#fff;border-bottom:1px solid #f0ecf8;padding:14px 0;position:sticky;top:64px;z-index:100;box-shadow:0 2px 12px rgba(74,20,140,.06);}
.up-filter-btn{background:#f5f0fc;border:1.5px solid #e0d7f0;color:#4A148C;font-size:.84rem;font-weight:600;padding:6px 16px;transition:all .2s;}
.up-filter-btn.active,.up-filter-btn:hover{background:#4A148C;color:#fff;border-color:#4A148C;}
.up-fcnt{background:rgba(0,0,0,.12);border-radius:50px;padding:0 6px;font-size:.72rem;margin-left:4px;}
.up-grid-section{background:#f8f4fe;padding:56px 0 80px;}
.up-empty{padding:72px 20px;color:#999;}
.up-card{background:#fff;border-radius:18px;padding:24px 22px;box-shadow:0 4px 20px rgba(74,20,140,.08);height:100%;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s;}
.up-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(74,20,140,.13);}
.up-card--event{border-left:4px solid #E91E8C;}
.up-card-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;gap:8px;flex-wrap:wrap;}
.up-type-badge{display:inline-flex;align-items:center;font-size:.68rem;font-weight:700;padding:3px 10px;border-radius:50px;text-transform:uppercase;letter-spacing:.06em;}
.up-type--news{background:#e3f2fd;color:#1565c0;}
.up-type--event{background:#fce4f4;color:#880E4F;}
.up-date{font-size:.78rem;color:#aaa;}
.up-card-title{font-size:1rem;font-weight:800;color:#1a0a2e;margin-bottom:10px;line-height:1.35;}
.up-card-body{font-size:.88rem;color:#666;line-height:1.65;flex:1;margin-bottom:12px;}
.up-card-footer{margin-top:auto;}
.up-btn-sm{display:inline-flex;align-items:center;font-size:.8rem;font-weight:700;color:#E91E8C;background:transparent;border:none;padding:0;text-decoration:none;cursor:pointer;}
.up-btn-sm:hover{color:#7B1FA2;}
.up-cta-section{background:linear-gradient(135deg,#1a0a2e,#4A148C 55%,#880E4F);padding:72px 0;text-align:center;}
.up-cta-section h3{color:#fff;font-size:clamp(1.4rem,3.5vw,2rem);font-weight:800;margin-bottom:10px;}
.up-cta-section p{color:rgba(255,255,255,.8);max-width:480px;margin:0 auto;}
.up-btn-primary{background:linear-gradient(90deg,#7B1FA2,#E91E8C);color:#fff !important;border:none;border-radius:50px;font-weight:700;padding:12px 32px;transition:opacity .2s;}
.up-btn-primary:hover{opacity:.88;}
.up-btn-outline{background:transparent;border:2px solid rgba(255,255,255,.6);color:#fff !important;border-radius:50px;font-weight:700;padding:11px 30px;transition:all .2s;}
.up-btn-outline:hover{background:rgba(255,255,255,.1);border-color:#fff;}

/* Admin badges for events */
.bg-pink { background:#E91E8C !important; }
.bg-purple { background:#7B1FA2 !important; }

/* Responsive */
@media (max-width: 991.98px) {
  .evd-apply-card { position: static; }
}
@media (max-width: 767.98px) {
  .ev-hero,.evd-hero,.up-hero { padding: 60px 0 72px; }
  .ev-grid-section,.evd-body-section,.up-grid-section { padding: 40px 0 56px; }
  .ev-filter-bar,.up-filter-bar { top: 56px; }
}

/* ═══════════════════════════════════════════════
   REGISTRATION PAGE  ·  reg-*
═══════════════════════════════════════════════ */

/* Override grid to give more room to the form side */
.reg-shell {
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100vh - 80px);
  background: linear-gradient(150deg, #f8f2ff 0%, #fff7fc 55%, #f4f9ff 100%);
}

/* LEFT PANEL */
.reg-left {
  padding: 52px 48px;
  background:
    radial-gradient(circle at 8% 15%, rgba(233,30,140,.12) 0%, transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(74,20,140,.18) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reg-left-inner { max-width: 500px; }

.reg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #E91E8C;
  background: rgba(233,30,140,.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.reg-headline {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a0a2e;
  line-height: 1.25;
  margin-bottom: 14px;
}

.reg-lead {
  color: #6f5f87;
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.reg-perks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reg-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.reg-perk-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4A148C, #E91E8C);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(74,20,140,.25);
}

.reg-perks li > div { line-height: 1.35; }
.reg-perks li strong { font-size: .92rem; color: #2a1145; }
.reg-perks li small { color: #8a78a0; font-size: .82rem; }

.reg-trust {
  font-size: .82rem;
  color: #8a78a0;
}

.reg-trust i {
  color: #4A148C;
  font-size: .9rem;
}

/* RIGHT PANEL / CARD */
.reg-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
}

.reg-card-wrap {
  width: 100%;
  max-width: 540px;
}

.reg-card {
  max-width: 100% !important;
}

/* Input group icons */
.reg-ig {
  background: #f5f0fc;
  border-color: #e0d6f5;
  color: #7b5ea7;
  min-width: 42px;
  justify-content: center;
}

.reg-ig.reg-eye {
  cursor: pointer;
  transition: background .2s;
}

.reg-ig.reg-eye:hover {
  background: #ede6fc;
  color: #4A148C;
}

/* Submit button */
.reg-submit {
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: .02em;
  box-shadow: 0 6px 20px rgba(233,30,140,.3);
  transition: box-shadow .25s, transform .2s;
}
.reg-submit:hover {
  box-shadow: 0 10px 30px rgba(233,30,140,.4);
  transform: translateY(-1px);
}

.reg-footer-note {
  margin-top: 18px;
  text-align: center;
  font-size: .88rem;
  color: #7f6f95;
}

/* Responsive */
@media (max-width: 991.98px) {
  .reg-shell { grid-template-columns: 1fr; }
  .reg-left { display: none; }
  .reg-right { padding: 32px 16px; }
}
@media (max-width: 575.98px) {
  .reg-card .card-body { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════════
   LOGIN PAGE  ·  lgn-*
═══════════════════════════════════════════════ */
.lgn-shell {
  grid-template-columns: 1.15fr 1fr;
}

/* ── Left Brand Panel ────────────────────────── */
.lgn-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  background:
    radial-gradient(ellipse at 8% 15%,  rgba(233, 30, 140, 0.14) 0%, transparent 40%),
    radial-gradient(ellipse at 92% 82%, rgba(74,  20, 140, 0.18) 0%, transparent 42%),
    radial-gradient(ellipse at 55% 48%, rgba(74,  20, 140, 0.06) 0%, transparent 55%);
  position: relative;
  overflow: hidden;
}
.lgn-left::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(233, 30, 140, 0.06);
  top: -90px; right: -80px;
  pointer-events: none;
}
.lgn-left::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(74, 20, 140, 0.07);
  bottom: -60px; left: -50px;
  pointer-events: none;
}

.lgn-left-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.lgn-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(233, 30, 140, 0.12);
  color: #c4006a;
  border: 1px solid rgba(233, 30, 140, 0.22);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.lgn-headline {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: #2a0e50;
  margin-bottom: 14px;
  background: linear-gradient(120deg, #4a148c 0%, #e91e8c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lgn-lead {
  font-size: .97rem;
  color: #6b5280;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

/* Features list */
.lgn-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lgn-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lgn-feat-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a148c, #e91e8c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(74, 20, 140, 0.28);
}
.lgn-features li div strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #2a1145;
}
.lgn-features li div small {
  font-size: .8rem;
  color: #7a628f;
  line-height: 1.4;
}

/* Trust strip */
.lgn-trust {
  font-size: .8rem;
  font-weight: 600;
  color: #7f5fa8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(74, 20, 140, 0.06);
  border: 1px solid rgba(74, 20, 140, 0.1);
}
.lgn-trust i { color: #4a148c; font-size: .85rem; }

/* ── Right Form Panel ────────────────────────── */
.lgn-right {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lgn-card-wrap {
  width: 100%;
  max-width: 460px;
}

.lgn-card {
  border-radius: 20px;
  border: 0;
  box-shadow: 0 20px 50px rgba(64, 17, 108, 0.18);
}
.lgn-card .card-body {
  padding: 34px 32px;
}

/* Input group icon spans */
.lgn-ig {
  background: rgba(74, 20, 140, 0.08);
  border-color: #d8cce8;
  color: #4a148c;
  font-size: .95rem;
}
.lgn-card .form-control {
  border-color: #d8cce8;
  border-radius: 0;
  padding: 10px 14px;
  font-size: .93rem;
}
.lgn-card .form-control:focus {
  border-color: #9c4dcc;
  box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}
.lgn-card .input-group > .form-control:last-child {
  border-radius: 0 10px 10px 0;
}
.lgn-card .input-group > .input-group-text:first-child {
  border-radius: 10px 0 0 10px;
}

/* Eye toggle button */
.lgn-eye {
  cursor: pointer;
  border-radius: 0 10px 10px 0 !important;
  border-left: 0;
  transition: background .2s;
}
.lgn-eye:hover { background: rgba(74, 20, 140, 0.14); }

/* Forgot password link */
.lgn-forgot {
  font-size: .8rem;
  font-weight: 600;
  color: #e91e8c;
  text-decoration: none;
}
.lgn-forgot:hover { text-decoration: underline; }

/* Remember me */
.lgn-check {
  width: 16px; height: 16px;
  border-color: #c0a8e0;
  cursor: pointer;
}
.lgn-check:checked {
  background-color: #4a148c;
  border-color: #4a148c;
}
.lgn-remember {
  font-size: .87rem;
  color: #6b5280;
  cursor: pointer;
}

/* Submit button */
.lgn-submit {
  background: linear-gradient(130deg, #4a148c 0%, #e91e8c 100%);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 6px 24px rgba(233, 30, 140, 0.36);
  transition: box-shadow .25s, transform .2s;
  letter-spacing: .02em;
}
.lgn-submit:hover {
  box-shadow: 0 10px 32px rgba(233, 30, 140, 0.52);
  transform: translateY(-1px);
  color: #fff;
}
.lgn-submit:active { transform: translateY(0); }

/* Footer note */
.lgn-footer-note {
  font-size: .87rem;
  color: #7f6f95;
  text-align: center;
}

/* Admin link */
.lgn-admin-link {
  text-align: center;
  margin-top: 14px;
  font-size: .82rem;
}
.lgn-admin-link a {
  color: #9575b8;
  text-decoration: none;
  font-weight: 600;
}
.lgn-admin-link a:hover {
  color: #4a148c;
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {
  .lgn-shell { grid-template-columns: 1fr; }
  .lgn-left  { display: none; }
  .lgn-right { padding: 32px 16px; }
}
@media (max-width: 575.98px) {
  .lgn-card .card-body { padding: 24px 18px; }
}

/* ═══════════════════════════════════════════════
   PROGRAMS PAGE  ·  pg-*
═══════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────── */
.pg-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a003a 0%, #3b0070 45%, #6a0080 100%);
  padding: 80px 0 70px;
  min-height: 520px;
}
.pg-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(233,30,140,.22) 0%, transparent 42%),
    radial-gradient(ellipse at 88% 80%, rgba(123,31,162,.28) 0%, transparent 42%);
  pointer-events: none;
}
.pg-hero-content { position: relative; z-index: 1; }

.pg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f0aadf;
  background: rgba(233,30,140,.18);
  border: 1px solid rgba(233,30,140,.32);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pg-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pg-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 8px;
}

/* Hero buttons */
.pg-btn-primary {
  background: linear-gradient(130deg, #e91e8c, #c2185b);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 28px;
  border: 0;
  box-shadow: 0 6px 22px rgba(233,30,140,.45);
  transition: box-shadow .25s, transform .2s;
}
.pg-btn-primary:hover {
  color: #fff;
  box-shadow: 0 10px 30px rgba(233,30,140,.6);
  transform: translateY(-2px);
}
.pg-btn-outline {
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  padding: 11px 26px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  transition: border-color .2s, background .2s;
}
.pg-btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.14);
}

/* Hero stats */
.pg-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.pg-hstat { display: flex; flex-direction: column; gap: 2px; }
.pg-hstat-n { font-size: 1.65rem; font-weight: 800; color: #fff; line-height: 1; }
.pg-hstat-l { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .05em; }
.pg-hstat-divider { width: 1px; height: 38px; background: rgba(255,255,255,.18); }

/* Hero visual orbs */
.pg-hero-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-vis-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.16);
}
.pg-vis-ring--1 { width: 300px; height: 300px; }
.pg-vis-ring--2 { width: 200px; height: 200px; border-style: solid; border-color: rgba(233,30,140,.25); }
.pg-vis-center {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #4a148c);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 0 50px rgba(233,30,140,.45);
  z-index: 1;
}
.pg-vis-orbit {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.pg-vis-orbit--1 { top:  6px; left: 50%; transform: translateX(-50%); }
.pg-vis-orbit--2 { top: 50%; right: 2px; transform: translateY(-50%); }
.pg-vis-orbit--3 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.pg-vis-orbit--4 { top: 50%; left: 2px; transform: translateY(-50%); }
.pg-vis-orbit--5 { top: 22%; left: 6%; }
.pg-vis-orbit--6 { top: 22%; right: 6%; }

/* ── Category Strip ──────────────────────────── */
.pg-cats-section {
  background: #fff;
  border-bottom: 1px solid #f0eaf8;
  padding: 18px 0;
}
.pg-cats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pg-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform .2s;
}
.pg-cat-pill:hover { transform: translateY(-2px); }
.pg-cat-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.pg-cat--learn  { background:#fff3fa; border-color:#f9b8de; color:#c2185b; }
.pg-cat--learn  .pg-cat-icon { background:#fce4ec; color:#c2185b; }
.pg-cat--market { background:#f5edff; border-color:#d8b8f9; color:#7b1fa2; }
.pg-cat--market .pg-cat-icon { background:#ede7f6; color:#7b1fa2; }
.pg-cat--network{ background:#fff0f7; border-color:#f5b8dc; color:#ad1457; }
.pg-cat--network.pg-cat-icon { background:#fce4f4; color:#ad1457; }
.pg-cat--fund   { background:#fef5e7; border-color:#f9d9a0; color:#e65100; }
.pg-cat--fund   .pg-cat-icon { background:#fff3e0; color:#e65100; }
.pg-cat--global { background:#e8f5e9; border-color:#a5d6a7; color:#2e7d32; }
.pg-cat--global .pg-cat-icon { background:#c8e6c9; color:#2e7d32; }

/* ── Programs Grid ───────────────────────────── */
.pg-programs-section {
  background: #faf7ff;
  padding: 80px 0;
}
.pg-section-label {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e91e8c;
  background: rgba(233,30,140,.1);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.pg-section-label--light { color: #f9c8e8; background: rgba(255,255,255,.12); }
.pg-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #2a0e50;
  line-height: 1.2;
}
.pg-section-body {
  color: #7f6f95;
  font-size: .97rem;
  line-height: 1.65;
}

/* Program card */
.pg-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ede7f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.pg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(74,20,140,.14);
}
.pg-card--featured {
  background: linear-gradient(140deg, #4a148c 0%, #e91e8c 100%);
  border-color: transparent;
}
.pg-card-top {
  padding: 22px 22px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cb, rgba(74,20,140,.07));
}
.pg-card-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--cc, #4a148c);
  box-shadow: 0 4px 14px rgba(74,20,140,.14);
}
.pg-card-icon--light {
  background: rgba(255,255,255,.2);
  color: #fff;
  box-shadow: none;
}
.pg-card-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cc, #4a148c);
  opacity: .18;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pg-card-num--light { color: #fff; opacity: .25; }
.pg-card-body {
  padding: 16px 22px 14px;
  flex: 1;
}
.pg-card--featured .pg-card-body h4,
.pg-card--featured .pg-card-body p { color: #fff; }
.pg-card--featured .pg-card-body h4 { color: #fff; }
.pg-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a0e50;
  margin-bottom: 8px;
}
.pg-card-body p {
  font-size: .88rem;
  color: #7f6f95;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Tag badges */
.pg-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.pg-tag--learn   { background:#fce4ec; color:#c2185b; }
.pg-tag--market  { background:#ede7f6; color:#7b1fa2; }
.pg-tag--network { background:#fce4f4; color:#ad1457; }
.pg-tag--fund    { background:#fff3e0; color:#e65100; }
.pg-tag--global  { background:#e8f5e9; color:#2e7d32; }
.pg-tag--light   { background:rgba(255,255,255,.2); color:#fff; }

/* Card bullets */
.pg-card-points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pg-card-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #5f4a7a;
}
.pg-card-points li i { color: #4a148c; font-size: .8rem; flex-shrink: 0; }
.pg-card-points--light li { color: rgba(255,255,255,.85); }
.pg-card-points--light li i { color: #f9c8e8; }

/* Card footer */
.pg-card-footer {
  padding: 14px 22px 18px;
  border-top: 1px solid #f0eaf8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pg-card-footer--light {
  border-top-color: rgba(255,255,255,.18);
}
.pg-card-cta {
  font-size: .85rem;
  font-weight: 700;
  color: #4a148c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: gap .2s;
}
.pg-card-cta:hover { color: #e91e8c; gap: 5px; }
.pg-card-cta--light { color: #fff; }
.pg-card-cta--light:hover { color: #f9c8e8; }
.pg-featured-badge {
  font-size: .74rem;
  font-weight: 700;
  color: #ffe0bb;
  background: rgba(255,255,255,.14);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── How To Join ─────────────────────────────── */
.pg-join-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.pg-join-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a0845 0%, #5c0a6e 50%, #3b0070 100%);
  z-index: 0;
}
.pg-steps {
  position: relative;
  z-index: 1;
}
.pg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.pg-step:not(.pg-step--last)::after {
  content: '';
  position: absolute;
  right: 0; top: 36px;
  width: 1px; height: 50px;
  background: rgba(255,255,255,.18);
}
@media (max-width:767.98px) {
  .pg-step:not(.pg-step--last)::after { display: none; }
}
.pg-step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: 8px;
}
.pg-step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #f9c8e8;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.pg-step h6 {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 6px;
}
.pg-step p {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  line-height: 1.55;
}

/* ── Testimonials / Trust ────────────────────── */
.pg-trust-section {
  background: #fff;
  padding: 80px 0;
}
.pg-trust-card {
  border-radius: 18px;
  border: 1px solid #ede7f6;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
}
.pg-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74,20,140,.12);
}
.pg-trust-card--featured {
  background: linear-gradient(140deg, #4a148c 0%, #c2185b 100%);
  border-color: transparent;
}
.pg-trust-card--featured p { color: rgba(255,255,255,.9); }
.pg-trust-quote { font-size: 2rem; color: #e91e8c; line-height: 1; }
.pg-trust-quote--light { color: rgba(255,255,255,.4); }
.pg-trust-card p {
  font-size: .9rem;
  color: #5f4a7a;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.pg-trust-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pg-trust-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.pg-trust-author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #2a0e50;
}
.pg-trust-card--featured .pg-trust-author strong { color: #fff; }
.pg-trust-author span {
  font-size: .78rem;
  color: #9575b8;
}
.pg-trust-card--featured .pg-trust-author span { color: rgba(255,255,255,.65); }

/* Stats row */
.pg-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin-top: 52px;
  border-top: 1px solid #f0eaf8;
  padding-top: 36px;
}
.pg-sstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1 140px;
  padding: 0 20px;
  border-right: 1px solid #f0eaf8;
}
.pg-sstat:last-child { border-right: 0; }
.pg-sstat-n { font-size: 2rem; font-weight: 800; color: #2a0e50; }
.pg-sstat-l { font-size: .78rem; font-weight: 600; color: #9575b8; text-align: center; }

/* ── CTA ─────────────────────────────────────── */
.pg-cta-section {
  padding: 80px 0;
  background: linear-gradient(150deg, #f8f2ff 0%, #fff7fc 55%, #f4f9ff 100%);
}
.pg-cta-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #4a148c);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(233,30,140,.35);
}
.pg-cta-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #2a0e50;
  margin-bottom: 14px;
}
.pg-cta-section p {
  color: #7f6f95;
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {
  .pg-hero { padding: 56px 0 48px; min-height: auto; }
  .pg-programs-section, .pg-join-section,
  .pg-trust-section, .pg-cta-section { padding: 56px 0; }
}
@media (max-width: 767.98px) {
  .pg-hero-stats { gap: 16px; }
  .pg-hstat-divider { display: none; }
  .pg-sstat { border-right: 0; border-bottom: 1px solid #f0eaf8; padding: 12px 0; flex-basis: 45%; }
  .pg-sstat:nth-child(odd) { border-right: 1px solid #f0eaf8; }
}
@media (max-width: 575.98px) {
  .pg-hero-h1 { font-size: 1.75rem; }
  .pg-card-body { padding: 14px 16px 10px; }
  .pg-card-footer { padding: 12px 16px 16px; }
}

/* ============================================================
   DIGITAL SERVICES PAGE  (ds-*)
   ============================================================ */

/* ---------- Hero ---------- */
.ds-hero{position:relative;min-height:92vh;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,#0f0f1a 0%,#1a0a2e 40%,#0d1b2a 100%)}
.ds-hero-overlay{position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 60% 50%,rgba(233,30,99,.13) 0%,transparent 70%),radial-gradient(ellipse 50% 50% at 30% 70%,rgba(123,31,162,.12) 0%,transparent 65%)}
.ds-hero-content{position:relative;z-index:2}
.ds-kicker{display:inline-flex;align-items:center;gap:.5rem;padding:.35rem 1rem;border-radius:50px;background:rgba(233,30,99,.15);border:1px solid rgba(233,30,99,.35);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#f48fb1;margin-bottom:1.4rem}
.ds-hero-h1{font-size:clamp(2.1rem,5vw,3.6rem);font-weight:900;line-height:1.1;color:#fff;margin-bottom:1.2rem}
.ds-hero-h1 span{background:linear-gradient(90deg,#e91e63,#ab47bc,#7b1fa2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.ds-hero-sub{font-size:1.08rem;color:rgba(255,255,255,.72);max-width:520px;margin-bottom:2rem;line-height:1.7}
.ds-btn-primary{display:inline-flex;align-items:center;gap:.5rem;padding:.72rem 1.7rem;border-radius:50px;background:linear-gradient(135deg,#e91e63,#ab47bc);color:#fff;font-weight:700;font-size:.95rem;border:none;cursor:pointer;text-decoration:none;transition:all .25s;box-shadow:0 6px 24px rgba(233,30,99,.35)}
.ds-btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 32px rgba(233,30,99,.45);color:#fff}
.ds-btn-outline{display:inline-flex;align-items:center;gap:.5rem;padding:.72rem 1.7rem;border-radius:50px;background:transparent;color:#f48fb1;font-weight:700;font-size:.95rem;border:2px solid rgba(233,30,99,.5);cursor:pointer;text-decoration:none;transition:all .25s}
.ds-btn-outline:hover{background:rgba(233,30,99,.1);border-color:#e91e63;color:#f48fb1}
.ds-hero-stats{display:flex;flex-wrap:wrap;gap:2rem;margin-top:2.5rem}
.ds-hstat{text-align:center}
.ds-hstat-num,.ds-hstat-n{font-size:1.8rem;font-weight:900;color:#fff;line-height:1}
.ds-hstat-lbl,.ds-hstat-l{font-size:.72rem;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.1em}
.ds-hstat-div{width:1px;background:rgba(255,255,255,.1);align-self:stretch}

/* ---------- Hero Visual ---------- */
.ds-hero-visual{position:relative;height:420px}
.ds-vis-blob{position:absolute;width:320px;height:320px;border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(123,31,162,.25) 0%,transparent 70%);filter:blur(20px)}
.ds-vis-grid{position:absolute;inset:0;display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);gap:10px;padding:20px}
.ds-vis-tile{border-radius:16px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.4rem;font-size:.7rem;font-weight:700;color:#fff;padding:.8rem;opacity:.9;transition:transform .3s}
.ds-vis-tile:hover{transform:scale(1.05)}
.ds-vis-tile i{font-size:1.5rem}
.ds-vis-tile.t-pink,.ds-vis-tile.ds-vt--pink{background:linear-gradient(135deg,rgba(233,30,99,.7),rgba(233,30,99,.3))}
.ds-vis-tile.t-purple,.ds-vis-tile.ds-vt--purple{background:linear-gradient(135deg,rgba(123,31,162,.7),rgba(123,31,162,.3))}
.ds-vis-tile.t-rose,.ds-vis-tile.ds-vt--rose{background:linear-gradient(135deg,rgba(236,72,153,.6),rgba(168,85,247,.3))}
.ds-vis-tile.t-violet,.ds-vis-tile.ds-vt--violet{background:linear-gradient(135deg,rgba(139,92,246,.65),rgba(109,40,217,.3))}
.ds-vis-tile.t-indigo,.ds-vis-tile.ds-vt--indigo{background:linear-gradient(135deg,rgba(99,102,241,.65),rgba(67,56,202,.3))}
.ds-vis-tile.t-fuchsia,.ds-vis-tile.ds-vt--fuchsia{background:linear-gradient(135deg,rgba(217,70,239,.65),rgba(162,28,175,.3))}
.ds-vis-tile.t-teal,.ds-vis-tile.ds-vt--teal{background:linear-gradient(135deg,rgba(20,184,166,.55),rgba(15,118,110,.3))}
.ds-vis-tile.t-amber,.ds-vis-tile.ds-vt--amber{background:linear-gradient(135deg,rgba(245,158,11,.55),rgba(180,83,9,.3))}

/* ---------- Why Strip ---------- */
.ds-why-section{background:#fff;border-bottom:1px solid #f0e6f6}
.ds-why-row{display:flex;flex-wrap:wrap;gap:0}
.ds-why-item{flex:1 1 200px;display:flex;align-items:center;gap:.9rem;padding:1.4rem 1.6rem;border-right:1px solid #f0e6f6}
.ds-why-item:last-child{border-right:none}
.ds-why-icon{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;background:linear-gradient(135deg,rgba(233,30,99,.15),rgba(123,31,162,.15))}
.ds-why-icon i{background:linear-gradient(135deg,#e91e63,#7b1fa2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.ds-why-title{font-size:.82rem;font-weight:700;color:#1a0a2e;margin:0}
.ds-why-sub{font-size:.73rem;color:#888;margin:0}

/* ---------- Services Section ---------- */
.ds-services-section{background:linear-gradient(180deg,#fdf4ff 0%,#fff 100%)}
.ds-section-label{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.3rem .9rem;border-radius:50px;background:linear-gradient(135deg,rgba(233,30,99,.1),rgba(123,31,162,.1));color:#c2185b;margin-bottom:.8rem}
.ds-section-label--light{background:rgba(255,255,255,.12);color:rgba(255,255,255,.85);border:1px solid rgba(255,255,255,.2)}
.ds-section-title{font-size:clamp(1.7rem,3.5vw,2.5rem);font-weight:900;color:#1a0a2e;line-height:1.15;margin-bottom:.7rem}
.ds-section-body{font-size:1rem;color:#666;max-width:560px;margin:0 auto 3rem}

/* ---------- Service Card ---------- */
.ds-card{border:none;border-radius:20px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.07);transition:transform .25s,box-shadow .25s;height:100%;display:flex;flex-direction:column;background:#fff}
.ds-card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(0,0,0,.13)}
.ds-card--featured{box-shadow:0 8px 32px rgba(233,30,99,.22);background:linear-gradient(135deg,#e91e63 0%,#ab47bc 100%)}
.ds-card--featured .ds-card-body h4,.ds-card--featured .ds-card-body p{color:#fff}
.ds-card--featured .ds-card-body p{opacity:.88}
.ds-card-top{padding:1.5rem 1.5rem .8rem;display:flex;align-items:flex-start;justify-content:space-between;border-top:4px solid var(--dc,#e91e63)}
.ds-card-icon{width:54px;height:54px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.6rem;flex-shrink:0;background:var(--db,rgba(233,30,99,.12))}
.ds-card-icon i{color:var(--dc,#e91e63);-webkit-text-fill-color:var(--dc,#e91e63)}
.ds-card-icon--light i{color:#fff;-webkit-text-fill-color:#fff}
.ds-card-num{font-size:.72rem;font-weight:800;color:rgba(123,31,162,.4);letter-spacing:.1em}
.ds-card-body{padding:1.6rem;flex:1;display:flex;flex-direction:column}
.ds-card-tag{display:inline-block;padding:.2rem .7rem;border-radius:50px;font-size:.65rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;background:rgba(233,30,99,.1);color:#c2185b;margin-bottom:.9rem;align-self:flex-start}
.ds-card-tag--light{background:rgba(255,255,255,.22);color:#fff}
.ds-card h4{font-size:1.1rem;font-weight:800;color:#1a0a2e;margin-bottom:.55rem}
.ds-card p{font-size:.85rem;color:#666;line-height:1.6;margin-bottom:1rem}
.ds-card-features{list-style:none;padding:0;margin:0 0 1.2rem;display:flex;flex-direction:column;gap:.4rem}
.ds-card-features li{font-size:.82rem;color:#555;display:flex;align-items:flex-start;gap:.5rem}
.ds-card-features li i{color:#e91e63;flex-shrink:0;margin-top:.1rem}
.ds-card-features--light li{color:rgba(255,255,255,.88)}
.ds-card-features--light li i{color:rgba(255,255,255,.8)}
.ds-card-footer{padding:0 1.6rem 1.6rem;margin-top:auto}
.ds-card-footer--light{}
.ds-book-btn{width:100%;padding:.65rem;border-radius:50px;background:linear-gradient(135deg,#e91e63,#ab47bc);color:#fff;font-weight:700;font-size:.88rem;border:none;cursor:pointer;transition:all .25s;display:flex;align-items:center;justify-content:center;gap:.5rem}
.ds-book-btn:hover{opacity:.9;transform:translateY(-1px);box-shadow:0 6px 20px rgba(233,30,99,.35)}
.ds-book-btn--light{background:rgba(255,255,255,.22);color:#fff;border:2px solid rgba(255,255,255,.5)}
.ds-book-btn--light:hover{background:rgba(255,255,255,.35)}

/* ---------- Process Section ---------- */
.ds-process-section{position:relative;overflow:hidden;padding:5rem 0}
.ds-process-bg{position:absolute;inset:0;background:linear-gradient(135deg,#0f0f1a 0%,#1a0a2e 50%,#0d1b2a 100%)}
.ds-steps{position:relative;z-index:2}
.ds-step{text-align:center;padding:2rem 1.2rem}
.ds-step-num{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#e91e63,#ab47bc);display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:900;color:#fff;margin:0 auto .9rem}
.ds-step-icon{font-size:1.6rem;margin-bottom:.6rem;color:rgba(255,255,255,.7)}
.ds-step-title,.ds-step h6{font-size:1rem;font-weight:800;color:#fff;margin-bottom:.4rem}
.ds-step-body,.ds-step p{font-size:.83rem;color:rgba(255,255,255,.6);line-height:1.6;margin:0}

/* ---------- Enquiry Section ---------- */
.ds-enquiry-section{background:linear-gradient(180deg,#fff 0%,#fdf4ff 100%)}
.ds-enquiry-card{background:#fff;border-radius:24px;box-shadow:0 8px 40px rgba(123,31,162,.1);padding:2.5rem;border:1px solid rgba(233,30,99,.1)}
.ds-ig label{font-size:.82rem;font-weight:700;color:#1a0a2e;margin-bottom:.4rem}
.ds-ig .form-control,.ds-ig .form-select{border-radius:10px;border:1.5px solid #e9d4f5;font-size:.9rem;padding:.65rem 1rem;transition:border-color .2s,box-shadow .2s}
.ds-ig .form-control:focus,.ds-ig .form-select:focus{border-color:#e91e63;box-shadow:0 0 0 3px rgba(233,30,99,.12)}
.ds-submit-btn{padding:.72rem 2.2rem;border-radius:50px;background:linear-gradient(135deg,#e91e63,#ab47bc);color:#fff;font-weight:700;font-size:.95rem;border:none;cursor:pointer;transition:all .25s;box-shadow:0 4px 18px rgba(233,30,99,.3)}
.ds-submit-btn:hover{opacity:.9;transform:translateY(-2px);box-shadow:0 8px 24px rgba(233,30,99,.4)}
.ds-success-box{display:none;text-align:center;padding:2.5rem 1rem}
.ds-success-icon{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#e91e63,#ab47bc);display:flex;align-items:center;justify-content:center;font-size:2rem;color:#fff;margin:0 auto 1rem}

/* ---------- CTA Section ---------- */
.ds-cta-section{background:linear-gradient(135deg,#0f0f1a,#1a0a2e);padding:5rem 0}
.ds-cta-section h2{color:#fff;font-size:clamp(1.7rem,3.5vw,2.5rem);font-weight:900;margin-bottom:.8rem}
.ds-cta-section p{color:rgba(255,255,255,.72);font-size:1.05rem;max-width:540px;margin:0 auto}
.ds-cta-icon{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,#e91e63,#ab47bc);display:flex;align-items:center;justify-content:center;font-size:2rem;color:#fff;margin:0 auto 1.4rem}

/* ---------- Modal ---------- */
.ds-modal-content{border-radius:20px;border:none;overflow:hidden}
.ds-modal-header{background:linear-gradient(135deg,#e91e63,#ab47bc);padding:1.4rem 1.6rem}
.ds-modal-header .modal-title{color:#fff;font-weight:800}
.ds-modal-header .btn-close{filter:brightness(0) invert(1)}
.ds-modal-sub{font-size:.83rem;color:#888;margin-bottom:1.2rem}

/* ---------- Responsive ---------- */
@media(max-width:991px){
  .ds-hero{min-height:auto;padding:5rem 0 3rem}
  .ds-hero-visual{height:280px;margin-top:2rem}
  .ds-vis-grid{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr)}
  .ds-why-item{border-right:none;border-bottom:1px solid #f0e6f6}
}
@media(max-width:575px){
  .ds-hero-stats{gap:1.2rem}
  .ds-hstat-div{display:none}
  .ds-card-body{padding:1.2rem}
  .ds-card-footer{padding:0 1.2rem 1.2rem}
  .ds-enquiry-card{padding:1.5rem}
  .ds-step{padding:1.2rem .8rem}
}

/* ============================================================
   GALLERY PAGE  (gal-*)
   ============================================================ */

/* --- Hero --- */
.gal-hero{background:linear-gradient(135deg,#0f0f1a 0%,#1a0a2e 60%,#0d1b2a 100%);padding:4rem 0 3rem;text-align:center}
.gal-kicker{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .9rem;border-radius:50px;background:rgba(233,30,99,.15);border:1px solid rgba(233,30,99,.35);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#f48fb1;margin-bottom:1rem}
.gal-headline{font-size:clamp(2rem,5vw,3rem);font-weight:900;color:#fff;line-height:1.1;margin-bottom:.8rem}
.gal-headline span{background:linear-gradient(90deg,#e91e63,#ab47bc);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.gal-sub{color:rgba(255,255,255,.65);font-size:1rem;max-width:500px;margin:0 auto}

/* --- Tabs --- */
.gal-tabs-section{background:#fff;border-bottom:2px solid #f0e6f6;position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(123,31,162,.08)}
.gal-tabs-wrap{position:relative;display:flex;align-items:center;gap:.25rem}
.gal-tabs{display:flex;gap:.5rem;overflow-x:auto;padding:.9rem 0;scrollbar-width:none;flex:1;min-width:0}
.gal-tabs::-webkit-scrollbar{display:none}
.gal-tabs-arrow{flex-shrink:0;width:34px;height:34px;border-radius:50%;border:2px solid #e91e63;background:#fff;color:#e91e63;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s;z-index:2;font-size:1rem;padding:0}
.gal-tabs-arrow:hover{background:#e91e63;color:#fff}
.gal-tabs-arrow[hidden]{display:none!important}
.gal-tab{display:flex;align-items:center;gap:.6rem;padding:.55rem 1rem;border-radius:50px;border:2px solid #f0e6f6;background:#fff;cursor:pointer;white-space:nowrap;transition:all .2s;font-size:.85rem;font-weight:600;color:#555;flex-shrink:0}
.gal-tab:hover{border-color:#e91e63;color:#e91e63}
.gal-tab--active{background:linear-gradient(135deg,#e91e63,#ab47bc);border-color:transparent;color:#fff}
.gal-tab-thumb{width:28px;height:28px;border-radius:50%;overflow:hidden;flex-shrink:0;background:rgba(233,30,99,.1);display:flex;align-items:center;justify-content:center}
.gal-tab-thumb img{width:100%;height:100%;object-fit:cover}
.gal-tab-thumb--empty i{font-size:.8rem;color:#e91e63}
.gal-tab--active .gal-tab-thumb--empty i{color:#fff}
.gal-tab-name{font-size:.82rem}
.gal-tab-count{background:rgba(0,0,0,.08);border-radius:50px;padding:.05rem .45rem;font-size:.68rem;font-weight:700}
.gal-tab--active .gal-tab-count{background:rgba(255,255,255,.25);color:#fff}

/* --- Album Info Bar --- */
.gal-album-bar{background:linear-gradient(135deg,#fdf4ff,#fff);border-bottom:1px solid #f0e6f6;padding:1.2rem 0}
.gal-album-title{font-size:1.4rem;font-weight:900;color:#1a0a2e;margin:0}
.gal-album-desc{font-size:.85rem;color:#888;margin:.2rem 0 0}
.gal-album-count{font-size:.78rem;font-weight:700;padding:.3rem .9rem;border-radius:50px;background:linear-gradient(135deg,rgba(233,30,99,.1),rgba(123,31,162,.1));color:#c2185b}

/* --- Photos Grid --- */
.gal-photos-section{padding:2.5rem 0 4rem;background:#fdf4ff}
.gal-panel{display:none}
.gal-panel--active{display:block}

.gal-photo-card{position:relative;border-radius:14px;overflow:hidden;cursor:pointer;background:#eee;box-shadow:0 3px 12px rgba(0,0,0,.08);transition:transform .25s,box-shadow .25s;aspect-ratio:4/3}
.gal-photo-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(123,31,162,.2)}
.gal-photo-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.gal-photo-card:hover img{transform:scale(1.06)}
.gal-photo-overlay{position:absolute;inset:0;background:rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .25s}
.gal-photo-card:hover .gal-photo-overlay{opacity:1}
.gal-photo-overlay i{font-size:2rem;color:#fff}
.gal-photo-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.7));color:#fff;font-size:.72rem;padding:.6rem .7rem .5rem;line-height:1.3}

/* --- Lightbox --- */
.gal-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .25s}
.gal-lightbox--open{opacity:1;pointer-events:all}
.gal-lb-content{max-width:90vw;max-height:90vh;text-align:center;position:relative}
.gal-lb-content img{max-width:90vw;max-height:80vh;object-fit:contain;border-radius:10px;box-shadow:0 8px 40px rgba(0,0,0,.6)}
.gal-lb-caption{color:rgba(255,255,255,.75);font-size:.85rem;margin-top:.7rem}
.gal-lb-close,.gal-lb-prev,.gal-lb-next{position:fixed;background:rgba(255,255,255,.12);border:none;color:#fff;border-radius:50%;width:44px;height:44px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;cursor:pointer;transition:background .2s;z-index:10000}
.gal-lb-close:hover,.gal-lb-prev:hover,.gal-lb-next:hover{background:rgba(233,30,99,.7)}
.gal-lb-close{top:1.2rem;right:1.2rem}
.gal-lb-prev{left:1.2rem;top:50%;transform:translateY(-50%)}
.gal-lb-next{right:1.2rem;top:50%;transform:translateY(-50%)}

/* --- Admin Gallery --- */
.gal-upload-zone{border:2px dashed #d4a8e8;border-radius:14px;padding:2rem;text-align:center;cursor:pointer;transition:background .2s,border-color .2s;background:#fdf4ff}
.gal-upload-zone:hover,.gal-dz-active{background:#f3e5f5;border-color:#e91e63}
.gal-admin-thumb{position:relative;border-radius:10px;overflow:hidden;background:#eee;aspect-ratio:4/3}
.gal-admin-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.gal-admin-thumb--cover{outline:3px solid #e91e63;outline-offset:2px}
.gal-cover-badge{position:absolute;top:.4rem;left:.4rem;background:#e91e63;color:#fff;font-size:.62rem;font-weight:700;padding:.15rem .5rem;border-radius:50px}
.gal-admin-thumb-overlay{position:absolute;inset:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;gap:.4rem;opacity:0;transition:opacity .2s}
.gal-admin-thumb:hover .gal-admin-thumb-overlay{opacity:1}
.gal-overlay-btn{background:rgba(255,255,255,.2);color:#fff;border:1px solid rgba(255,255,255,.4);border-radius:8px;padding:.3rem .5rem;font-size:.8rem;line-height:1;cursor:pointer}
.gal-overlay-btn:hover{background:rgba(255,255,255,.35)}
.gal-overlay-btn--del{background:rgba(220,53,69,.7)}
.gal-overlay-btn--del:hover{background:rgba(220,53,69,.9)}
.gal-thumb-caption{position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.6);color:#fff;font-size:.65rem;padding:.3rem .4rem;line-height:1.3}
.btn-xs{padding:.2rem .45rem;font-size:.75rem}

/* --- Responsive --- */
@media(max-width:575px){
  .gal-hero{padding:3rem 0 2rem}
  .gal-photo-card{aspect-ratio:1}
  .gal-lb-prev{left:.4rem}
  .gal-lb-next{right:.4rem}
}
