/* ============================================
   IWE — Indian Women Era
   Vanilla CSS — No Framework
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500&display=swap');

/* CSS Variables */
:root {
  --color-bg: #FFF9FB;
  --color-white: #FFFFFF;
  --color-soft-pink: #FCECF3;
  --color-blush: #F7DDE8;
  --color-primary: #E85D8F;
  --color-deep: #9B2F5B;
  --color-berry: #7A2048;
  --color-text: #222222;
  --color-muted: #6B5F66;
  --color-border: #F0D6E0;
  --color-cream: #FFF5ED;
  --color-gold: #C59A5B;

  --shadow-soft: 0 8px 30px rgba(122, 32, 72, 0.07);
  --shadow-hover: 0 16px 45px rgba(122, 32, 72, 0.12);
  --shadow-button: 0 4px 16px rgba(232, 93, 143, 0.30);
  --shadow-header: 0 2px 20px rgba(0, 0, 0, 0.06);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.font-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
}

.font-italic {
  font-style: italic;
  font-weight: 400;
}

.label-gold {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-gold);
  display: block;
}

/* Section spacing */
.section-padding {
  padding: 100px 0;
}

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

.section-bg-main {
  background-color: var(--color-bg);
}

/* Buttons */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
}

.primary-button:hover {
  background: var(--color-deep);
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(232, 93, 143, 0.04);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.ghost-button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ghost-button:hover::after {
  transform: scaleX(1);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-deep);
}

.logo-subtext {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
}

.header-cta .primary-button {
  padding: 10px 24px;
  font-size: 13px;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  margin: 4px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: var(--color-white);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a.active {
  color: var(--color-primary);
}

.mobile-menu .primary-button {
  margin: 16px 24px 24px;
  display: block;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: 80px 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF9FB 0%, #FCECF3 40%, transparent 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  color: var(--color-text);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-muted);
}

/* Hero image composition */
.hero-images {
  position: relative;
  min-height: 540px;
  display: none;
}

.hero-main-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
}

.hero-main-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-overlap-image {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 50%;
  z-index: 2;
  border: 4px solid var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-overlap-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}

.hero-stat-card.stat-1 {
  top: 16px;
  left: 0;
}

.hero-stat-card.stat-2 {
  top: 35%;
  right: -8px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  color: var(--color-deep);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

.hero-quote-card {
  position: absolute;
  bottom: 64px;
  right: 16px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 260px;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--color-primary);
  z-index: 3;
}

.hero-quote-mark {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-blush);
  line-height: 0.5;
}

.hero-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--color-soft-pink);
  padding: 40px 0;
  overflow-x: auto;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 42px;
  color: var(--color-text);
  margin: 12px 0 20px;
}

.about-description {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .gold-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

/* Mini cards */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.mini-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 20px;
}

.mini-card-icon {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.mini-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.mini-card-text {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================
   WHY JOIN SECTION
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-left {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 42px;
  color: var(--color-text);
  margin: 12px 0 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Why cards grid */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 32px;
  transition: all 0.35s ease;
}

.why-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.why-card-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-soft-pink);
  color: var(--color-deep);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.why-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-text);
}

.why-card-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 8px;
}

/* ============================================
   MEMBER CARDS
   ============================================ */

.member-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.35s ease;
  display: block;
}

.member-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.member-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.member-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-soft-pink);
  color: var(--color-deep);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.member-card-body {
  padding: 28px;
}

.member-card-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-text);
}

.member-card-title {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 4px;
}

.member-card-business {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 4px;
}

.member-card-divider {
  height: 1px;
  background: var(--color-border);
  margin: 16px 0;
}

.member-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.member-card-bio {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-card-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

/* Members grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================
   EVENT CARDS
   ============================================ */

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.event-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.event-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-cream);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.event-online-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-soft-pink);
  color: var(--color-deep);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.event-card-body {
  padding: 24px;
}

.event-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-muted);
}

.event-card-meta svg {
  flex-shrink: 0;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.event-card-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.seats-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(232, 93, 143, 0.1);
  color: var(--color-primary);
}

.event-card .primary-button {
  width: 100%;
  margin-top: 16px;
  padding: 12px 24px;
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ============================================
   TIMELINE (How It Works)
   ============================================ */

.timeline-desktop {
  display: block;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

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

.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.timeline-node.inactive {
  background: var(--color-soft-pink);
  color: var(--color-deep);
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 20px;
}

.timeline-step-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.timeline-mobile {
  display: none;
  position: relative;
  padding-left: 32px;
}

.timeline-mobile::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-mobile-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

/* ============================================
   STORY CARDS
   ============================================ */

.story-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.story-quote-mark {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--color-blush);
  line-height: 0.6;
}

.story-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 16px;
}

.story-divider {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  margin: 20px auto;
}

.story-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.story-profession {
  font-size: 13px;
  color: var(--color-muted);
}

/* Featured story */
.featured-story-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
}

.featured-story-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}

.featured-story-quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-blush);
  line-height: 0.5;
}

.featured-story-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 26px;
  color: var(--color-text);
  line-height: 1.5;
  margin-top: 16px;
}

.featured-story-gold {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 24px 0;
}

/* Story grid cards */
.story-grid-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
}

.story-grid-card:hover {
  box-shadow: var(--shadow-hover);
}

.story-grid-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.story-grid-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid-card-body {
  padding: 28px;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-masonry {
  column-count: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(122, 32, 72, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-category {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.gallery-overlay-title {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 0 16px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-image-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: white;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
}

.lightbox-category {
  display: inline-block;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  margin-right: 8px;
}

.lightbox-title {
  color: white;
  font-size: 14px;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-left: 12px;
}

/* ============================================
   CATEGORY PILLS / FILTERS
   ============================================ */

.filter-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-pill {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Active filter tags */
.filter-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-soft-pink);
  color: var(--color-deep);
}

.filter-tag button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: inherit;
}

.clear-filters {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

/* ============================================
   DIRECTORY / FILTER BAR
   ============================================ */

.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 10px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-body);
}

.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-height: 300px;
  overflow-y: auto;
  min-width: 200px;
  z-index: 50;
  display: none;
}

.filter-dropdown-menu.open {
  display: block;
}

.filter-dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.filter-dropdown-menu button:hover {
  background: var(--color-soft-pink);
}

.filter-dropdown-menu button.active {
  color: var(--color-primary);
}

.result-count {
  font-size: 14px;
  color: var(--color-muted);
  margin-left: auto;
}

/* ============================================
   SEARCH INPUT
   ============================================ */

.search-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.search-wrap .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  font-size: 16px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text);
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 143, 0.1);
}

.search-input::placeholder {
  color: var(--color-muted);
}

.search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  display: flex;
  align-items: center;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.category-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--color-primary);
  background: var(--color-soft-pink);
}

.category-card-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.category-card-count {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, #7A2048 0%, #9B2F5B 50%, #E85D8F 100%);
  padding: 100px 0;
}

.cta-band-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-band-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 42px;
  color: var(--color-white);
}

.cta-band-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-top: 16px;
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.cta-button-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-deep);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button-white:hover {
  opacity: 0.9;
}

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dark CTA */
.cta-dark {
  background: var(--color-berry);
  padding: 80px 0;
}

.cta-dark-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  color: var(--color-white);
}

.cta-dark-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================
   PROFILE PAGE
   ============================================ */

.profile-hero {
  background: var(--color-soft-pink);
  padding: 60px 0 80px;
}

.profile-hero-inner {
  text-align: center;
}

.profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.profile-image {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.profile-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  color: var(--color-text);
  margin-top: 20px;
}

.profile-title {
  font-size: 16px;
  color: var(--color-muted);
  margin-top: 4px;
}

.profile-business {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 4px;
}

.profile-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
}

.profile-badge.category {
  background: var(--color-soft-pink);
  color: var(--color-deep);
  border: 1px solid var(--color-border);
}

.profile-badge.location {
  background: var(--color-white);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

.profile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.profile-section {
  padding: 60px 0;
}

.profile-section.alt {
  background: var(--color-bg);
}

.profile-section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.profile-about-text {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 16px 20px;
}

.service-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.service-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.achievement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.achievement-item span {
  font-size: 14px;
  color: var(--color-text);
}

.collab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collab-tag {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-soft-pink);
  color: var(--color-deep);
  font-size: 13px;
  font-weight: 500;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.profile-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-soft);
}

.contact-card svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 12px;
  color: var(--color-muted);
}

.contact-card-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

/* ============================================
   EVENT MODAL
   ============================================ */

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.event-modal-panel {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}

.event-modal-image {
  position: relative;
  aspect-ratio: 16/9;
}

.event-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.event-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.event-modal-body {
  padding: 32px;
}

.event-modal-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  color: var(--color-text);
}

.event-modal-description {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  margin-top: 16px;
}

.event-modal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.event-modal-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
}

.event-modal-detail svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.event-modal-highlights {
  margin-top: 24px;
}

.event-modal-highlights h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}

.event-modal-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-modal-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
}

.event-modal-highlights li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.event-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--color-primary);
}

.form-input,
.form-textarea,
.form-select-toggle {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 143, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
}

.form-textarea {
  resize: none;
}

.form-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.form-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-height: 250px;
  overflow-y: auto;
  z-index: 20;
  display: none;
}

.form-select-menu.open {
  display: block;
}

.form-select-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.form-select-menu button:hover {
  background: var(--color-soft-pink);
}

.form-select-wrap {
  position: relative;
}

.form-error {
  font-size: 13px;
  color: var(--color-primary);
  margin-top: 6px;
}

.form-input.has-error {
  border-color: var(--color-primary);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text);
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.checkbox-box.checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-box svg {
  color: var(--color-white);
}

/* Form card */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.form-success {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-soft-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.form-success-icon svg {
  color: var(--color-primary);
}

.form-success-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  margin-top: 20px;
}

.form-success-text {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 12px;
}

/* Event banner */
.event-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-soft-pink);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.event-banner svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.event-banner-text {
  font-size: 14px;
  color: var(--color-deep);
}

/* ============================================
   CONTACT CARDS
   ============================================ */

.contact-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 24px;
}

.contact-detail-card svg {
  color: var(--color-primary);
}

.contact-detail-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 12px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--color-text);
  margin-top: 4px;
  word-break: break-all;
}

.contact-detail-value a {
  color: var(--color-text);
  transition: color 0.2s;
}

.contact-detail-value a:hover {
  color: var(--color-primary);
}

/* City chapters */
.city-chapter-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 28px;
}

.city-chapter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.city-chapter-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}

.status-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.status-badge.active {
  background: rgba(232, 93, 143, 0.1);
  color: var(--color-primary);
}

.status-badge.coming-soon {
  background: var(--color-cream);
  color: var(--color-gold);
}

.city-chapter-members {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.city-chapter-email {
  font-size: 13px;
  color: var(--color-muted);
}

.city-chapter-email a:hover {
  color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-berry);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
}

.footer-logo-sub {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.footer-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 20px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.footer-contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--color-white);
}

.footer-newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  outline: none;
}

.footer-newsletter-form button {
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-newsletter-form button:hover {
  opacity: 0.9;
}

.footer-newsletter-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links button {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-bottom-links button:hover {
  color: var(--color-white);
}

/* ============================================
   UTILITY
   ============================================ */

.max-w-2xl {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-xl {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.pt-4 { padding-top: 16px; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hidden {
  display: none;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
  text-align: center;
  padding: 80px 0;
}

.empty-state svg {
  margin: 0 auto;
  color: var(--color-border);
}

.empty-state-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-muted);
  margin-top: 16px;
}

.empty-state-text {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 8px;
}

.empty-state .secondary-button {
  margin-top: 24px;
}

/* ============================================
   BLOCKQUOTE
   ============================================ */

.blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: 24px;
  margin-top: 40px;
}

.blockquote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--color-deep);
  line-height: 1.5;
}

.blockquote-author {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 16px;
}

/* ============================================
   MOBILE BOTTOM CTA
   ============================================ */

.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-white);
  padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-cta .primary-button {
  width: 100%;
  padding: 12px;
}

/* WhatsApp float */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 68px;
  right: 16px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 54px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-images {
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-story-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-desktop {
    display: none;
  }

  .timeline-mobile {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .filter-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .profile-name {
    font-size: 28px;
  }

  .services-grid,
  .profile-contact-grid {
    grid-template-columns: 1fr;
  }

  .event-modal-details {
    grid-template-columns: 1fr;
  }

  .trust-items {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .trust-item {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .trust-dot {
    display: none;
  }

  .mobile-bottom-cta {
    display: block;
  }

  .whatsapp-float {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 60px 0;
  }

  .cta-band-title,
  .cta-dark-title {
    font-size: 30px;
  }

  .form-card {
    padding: 28px;
  }

  .filter-bar {
    position: relative;
    top: 0;
  }

  .result-count {
    margin-left: 0;
  }

  .profile-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .category-cards {
    grid-template-columns: 1fr;
  }

  .story-card {
    padding: 24px;
  }

  .featured-story-quote {
    font-size: 20px;
  }

  .form-card {
    padding: 20px;
  }

  .event-modal-body {
    padding: 24px;
  }
}

/* ============================================
   PAGE HERO (smaller than home hero)
   ============================================ */

.page-hero {
  background: var(--color-white);
  padding: 80px 0 60px;
}

.page-hero-gradient {
  background: linear-gradient(135deg, #FCECF3 0%, #FFF9FB 60%, transparent 100%);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 56px;
  color: var(--color-text);
  line-height: 1.1;
}

.page-hero-description {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .page-hero-title {
    font-size: 42px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-hero-title {
    font-size: 32px;
  }
}

/* ============================================
   Stats
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--color-soft-pink);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}

.stat-card svg {
  margin: 0 auto;
  color: var(--color-primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  color: var(--color-deep);
  margin-top: 16px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 4px;
}

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

/* ============================================
   Value cards
   ============================================ */

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  border-color: var(--color-primary);
}

.value-card-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 0 0 3px 3px;
}

.value-card-icon {
  color: var(--color-primary);
  margin-top: 8px;
}

.value-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 16px;
}

.value-card-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 8px;
}

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

@media (max-width: 576px) {
  .value-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Audience tags
   ============================================ */

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tag {
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: var(--color-soft-pink);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.audience-tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Founder note */
.founder-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 3px solid var(--color-border);
}

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

/* Step cards */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 32px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  margin-top: 20px;
}

.step-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .step-cards {
    grid-template-columns: 1fr;
  }
}

/* Two column layouts */
.two-col-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
}

.two-col-grid-reverse {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
}

@media (max-width: 992px) {
  .two-col-grid,
  .two-col-grid-reverse {
    grid-template-columns: 1fr;
  }
}

/* Sticky sidebar */
.sticky-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

@media (max-width: 992px) {
  .sticky-sidebar {
    position: relative;
    top: 0;
  }
}
