@charset "utf-8";
/* CSS Document */

  
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple-deep:  #3b0764;
      --purple-mid:   #6d28d9;
      --purple-light: #a78bfa;
      --purple-pale:  #ede9fe;
      --gold:         #f59e0b;
      --gold-light:   #fcd34d;
      --white:        #ffffff;
      --off-white:    #faf9ff;
      --text-dark:    #1e1b2e;
      --text-muted:   #6b7280;
      --border:       rgba(109,40,217,.15);
      --shadow-sm:    0 2px 12px rgba(59,7,100,.10);
      --shadow-md:    0 8px 40px rgba(59,7,100,.18);
      --shadow-lg:    0 20px 60px rgba(59,7,100,.25);
      --radius:       16px;
      --transition:   .35s cubic-bezier(.4,0,.2,1);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--off-white); overflow-x: hidden; }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 119px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      transition: background var(--transition), box-shadow var(--transition);
    }
    nav.scrolled { background: #fff; box-shadow: var(--shadow-sm); }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-icon {
     width: 118px;
    height: 118px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    overflow: hidden;
}
 
    .nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
    .nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; color: var(--purple-deep); }
    .nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; font-size: .88rem; font-weight: 500;
      color: var(--text-dark); position: relative; padding-bottom: 4px;
      transition: color var(--transition);
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
      background: var(--purple-mid); border-radius: 2px; transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--purple-mid); }
    .nav-links a:hover::after { width: 100%; }
    .btn-join {
      background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
      color: #fff; padding: .55rem 1.3rem; border-radius: 50px;
      font-size: .85rem; font-weight: 600; text-decoration: none;
      box-shadow: 0 4px 18px rgba(109,40,217,.4);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    
    /* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 13px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.dropdown-menu a:hover {
  background: var(--purple-pale);
  color: var(--purple-mid);
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}
    .btn-join:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(109,40,217,.5); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--purple-deep); border-radius: 2px; transition: var(--transition); }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .mobile-menu {
  top: 119px;
  max-height: calc(100vh - 119px);
  overflow-y: auto;
}
    .mobile-menu {
      display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
      background: #fff; border-bottom: 1px solid var(--border); padding: 1.5rem 5vw;
      box-shadow: var(--shadow-md); flex-direction: column; gap: 1rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--text-dark); padding: .5rem 0; border-bottom: 1px solid var(--border); }
    .mobile-menu .btn-join { text-align: center; border: none; margin-top: .5rem; display: inline-block; padding: .8rem; }
/* MOBILE DROPDOWN */
.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  background: #faf9ff;
}

.mobile-dropdown-content a {
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}


    /* ── HERO IMAGE SLIDER ── */
    #home {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      margin-top: 0;
      padding: 0;
    }

    /* Individual slides — stacked via absolute positioning */
    .sl-slide {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.2s ease;
      z-index: 1;
    }
    .sl-slide.active { opacity: 1; z-index: 2; }

    /* Gradient overlay per slide */
    .sl-overlay {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
    }

    /* Text content */
    .sl-content {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 6vw;
      padding-top: 72px;
    }

    /* Animated text elements — hidden by default */
    .sl-badge {
      display: inline-block;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50px; padding: 6px 20px;
      font-size: .72rem; font-weight: 700; color: #fff;
      letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 1.4rem;
      opacity: 0; transform: translateY(16px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .sl-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5.5vw, 5rem);
      font-weight: 900; line-height: 1.08; color: #fff;
      margin-bottom: 1rem;
      opacity: 0; transform: translateY(20px);
      transition: opacity .65s .12s ease, transform .65s .12s ease;
    }
    .sl-title span { color: var(--gold-light); }
    .sl-sub {
      font-size: clamp(.88rem, 1.7vw, 1.05rem);
      color: rgba(255,255,255,.83); line-height: 1.75;
      max-width: 560px; font-weight: 300; margin-bottom: 2rem;
      opacity: 0; transform: translateY(14px);
      transition: opacity .65s .22s ease, transform .65s .22s ease;
    }
    .sl-btns {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
      opacity: 0; transform: translateY(10px);
      transition: opacity .55s .35s ease, transform .55s .35s ease;
    }

    /* Animate IN when slide is active */
    .sl-slide.active .sl-badge,
    .sl-slide.active .sl-title,
    .sl-slide.active .sl-sub,
    .sl-slide.active .sl-btns {
      opacity: 1;
      transform: translateY(0);
    }

    /* Buttons */
    .btn-primary {
      background: #fff; color: var(--purple-deep);
      padding: .82rem 2rem; border-radius: 50px;
      font-size: .93rem; font-weight: 700; text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
    .btn-secondary {
      background: rgba(255,255,255,.18); color: #fff;
      padding: .82rem 2rem; border-radius: 50px;
      font-size: .93rem; font-weight: 600; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(4px);
      transition: background var(--transition), transform var(--transition);
    }
    .btn-secondary:hover { background: rgba(255,255,255,.28); transform: translateY(-3px); }

    /* Prev / Next arrows */
    .sl-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 10; width: 50px; height: 50px; border-radius: 50%;
      background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
      color: #fff; font-size: 20px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .25s;
    }
    .sl-arrow:hover { background: rgba(255,255,255,.32); }
    .sl-prev { left: 22px; }
    .sl-next { right: 22px; }

    /* Dot navigation */
    .sl-dots {
      position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%);
      z-index: 10; display: flex; gap: 8px; align-items: center;
    }
    .sl-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.4); border: none; cursor: pointer;
      transition: width .35s, background .35s; padding: 0;
    }
    .sl-dot.active { width: 28px; border-radius: 4px; background: #fff; }
.sl-thumbs {
  display: none !important;
}
    /* Thumbnail strip */
    .sl-thumbs {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
      display: flex; gap: 4px; padding: 5px;
      background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
    }
    .sl-thumb {
      flex: 1; height: 66px; border-radius: 6px; cursor: pointer;
      background-size: cover; background-position: center;
      border: 2px solid transparent; opacity: .5;
      transition: opacity .3s, border-color .3s;
      position: relative; overflow: hidden;
    }
    .sl-thumb.active { opacity: 1; border-color: #fff; }
    .sl-thumb span {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(0,0,0,.6); color: #fff;
      font-size: .58rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; text-align: center; padding: 4px 4px;
    }

    /* Bottom progress bar */
    .sl-progress {
      position: absolute; bottom: 0; left: 0; height: 3px; width: 0;
      background: rgba(255,255,255,.9); z-index: 20;
    }

    /* ── SECTIONS SHARED ── */
    section { padding: 6rem 5vw; }
    .section-label {
      display: inline-block; font-size: .78rem; font-weight: 600;
      color: var(--purple-mid); letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: .8rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2;
      color: var(--purple-deep); margin-bottom: 1rem;
    }
    .section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 560px; }
    .container { max-width: 1200px; margin: 0 auto; }

    /* ── ABOUT ── */
    #about { background: #fff; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-visual { position: relative; }
    .about-card-main {
      background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
      border-radius: var(--radius); padding: 3rem; color: #fff; box-shadow: var(--shadow-lg);
    }
    .about-card-main h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 1rem; }
    .about-card-main p { opacity: .85; line-height: 1.7; font-size: .95rem; }
    .about-float-card {
      position: absolute; bottom: -30px; right: -30px;
      background: #fff; border-radius: 14px; padding: 1.2rem 1.5rem;
      box-shadow: var(--shadow-md); min-width: 160px;
    }
    .about-float-card .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--purple-mid); }
    .about-float-card .lbl { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }
    .about-ribbon {
      position: absolute; top: -20px; left: -20px;
      background: var(--gold); color: var(--purple-deep);
      border-radius: 12px; padding: .8rem 1.2rem;
      box-shadow: var(--shadow-sm); font-weight: 700; font-size: .85rem;
    }
    .about-text .values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .value-item {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1rem; border-radius: 12px;
      border: 1px solid var(--border); transition: background var(--transition);
    }
    .value-item:hover { background: var(--purple-pale); }
    .value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
    .value-item h4 { font-weight: 600; font-size: .95rem; color: var(--purple-deep); margin-bottom: .2rem; }
    .value-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
 .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(109,40,217,.12);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59,7,100,.12);
}

/* IMAGE */
.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 6px solid #f3e8ff;
  margin: 0 auto 1.2rem;
  display: block;
  transition: transform .4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* NAME */
.team-card h4 {
  font-size: 1.25rem;
  color: var(--purple-deep);
  margin-bottom: .4rem;
  font-weight: 700;
}

/* DESIGNATION */
.team-card p {
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
}

/* OPTIONAL TOP LINE */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold));
}


    /* ── MISSION ── */
    #mission { background: var(--off-white); }
    .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
    .pillar-card {
      background: #fff; border-radius: var(--radius); padding: 2rem;
      border: 1px solid var(--border); position: relative; overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .pillar-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--purple-mid), var(--purple-light));
    }
    .pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .pillar-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--purple-pale); line-height: 1; margin-bottom: .5rem; }
    .pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
    .pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--purple-deep); margin-bottom: .75rem; }
    .pillar-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

    /* ── EVENTS ── */
    #events { background: #fff; }
    .events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
    .events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .event-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: flex; transition: box-shadow var(--transition); }
    .event-card:hover { box-shadow: var(--shadow-md); }
    .event-date-block {
      background: linear-gradient(180deg, var(--purple-mid), var(--purple-deep));
      color: #fff; min-width: 80px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; padding: 1.2rem .8rem;
    }
    .event-date-block .day { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
    .event-date-block .month { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; margin-top: .2rem; }
    .event-body { padding: 1.3rem; flex: 1; }
    .event-tag { display: inline-block; background: var(--purple-pale); color: var(--purple-mid); font-size: .72rem; font-weight: 600; padding: .25rem .7rem; border-radius: 50px; margin-bottom: .6rem; }
    .event-body h3 { font-weight: 700; font-size: .95rem; color: var(--purple-deep); margin-bottom: .4rem; line-height: 1.4; }
    .event-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
    .event-meta { display: flex; gap: 1rem; margin-top: .8rem; flex-wrap: wrap; }
    .event-meta span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }

    /* ── MEMBERSHIP ── */
    #membership {
      background: linear-gradient(135deg, var(--purple-deep) 0%, #4c1d95 50%, var(--purple-mid) 100%);
      position: relative; overflow: hidden;
    }
    #membership::before {
      content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
      background: rgba(255,255,255,.05); top: -200px; right: -100px; pointer-events: none;
    }
    .membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; z-index: 1; }
    .mem-card {
      background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
      padding: 2rem; color: #fff; transition: background var(--transition), transform var(--transition);
    }
    .mem-card.featured { background: #fff; color: var(--purple-deep); box-shadow: var(--shadow-lg); }
    .mem-card:hover:not(.featured) { background: rgba(255,255,255,.18); transform: translateY(-4px); }
    .mem-card.featured:hover { transform: translateY(-4px); }
    .mem-type { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .7; margin-bottom: 1rem; }
    .featured .mem-type { color: var(--purple-mid); opacity: 1; }
    .mem-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: .5rem; }
    .mem-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; margin-bottom: 1.5rem; }
    .mem-price small { font-size: 1rem; font-weight: 400; opacity: .7; }
    .mem-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
    .mem-features li { font-size: .87rem; opacity: .85; display: flex; gap: .6rem; align-items: flex-start; }
    .mem-features li::before { content: '✓'; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
    .featured .mem-features li::before { color: var(--purple-mid); }
    .btn-mem { display: block; text-align: center; padding: .75rem; border-radius: 50px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition); }
    .btn-mem-outline { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
    .btn-mem-outline:hover { background: rgba(255,255,255,.15); }
    .btn-mem-solid { background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep)); color: #fff; box-shadow: 0 4px 18px rgba(109,40,217,.4); }
    .btn-mem-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(109,40,217,.5); }

    /* ── CONSTITUTION ── */
    #constitution { background: var(--off-white); }
    .constitution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .doc-preview { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--border); }
    .doc-header { background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep)); padding: 1.5rem 2rem; color: #fff; }
    .doc-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
    .doc-header p { font-size: .82rem; opacity: .8; margin-top: .3rem; }
    .doc-body { padding: 1.5rem 2rem; }
    .doc-section { padding: .85rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
    .doc-section:last-child { border: none; }
    .doc-section-num { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--purple-light); flex-shrink: 0; width: 2rem; }
    .doc-section h4 { font-weight: 600; font-size: .9rem; color: var(--purple-deep); margin-bottom: .2rem; }
    .doc-section p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
    .constitution-text .highlights { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .highlight-item { display: flex; gap: 1rem; align-items: center; padding: 1rem; background: #fff; border-radius: 12px; border: 1px solid var(--border); }
    .highlight-item .hi { font-size: 1.6rem; }
    .highlight-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
    .highlight-item strong { display: block; color: var(--purple-deep); font-weight: 600; margin-bottom: .2rem; }

    /* ── CONTACT ── */
    #contact { background: #fff; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
    .contact-item-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
    .contact-item h4 { font-weight: 600; font-size: .9rem; color: var(--purple-deep); margin-bottom: .2rem; }
    .contact-item p, .contact-item a { font-size: .88rem; color: var(--text-muted); text-decoration: none; line-height: 1.6; }
    .contact-item a:hover { color: var(--purple-mid); }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
    .form-group input, .form-group select, .form-group textarea {
      padding: .75rem 1rem; border-radius: 10px;
      border: 1.5px solid var(--border); background: var(--off-white);
      font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text-dark);
      transition: border-color var(--transition), box-shadow var(--transition); outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--purple-mid); box-shadow: 0 0 0 3px rgba(109,40,217,.12);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .btn-submit {
      background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
      color: #fff; padding: .9rem 2rem; border-radius: 50px;
      border: none; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700;
      cursor: pointer; box-shadow: 0 4px 18px rgba(109,40,217,.35);
      transition: transform var(--transition), box-shadow var(--transition); align-self: flex-start;
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(109,40,217,.5); }

    /* ── FOOTER ── */
    footer { background: #200039; color: rgba(255,255,255,.75); padding: 4rem 5vw 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand p { font-size: .87rem; line-height: 1.7; margin-top: 1rem; }
    .footer-col h4 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 1rem; letter-spacing: .04em; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .footer-col ul li a { color: rgba(255,255,255,.65); font-size: .85rem; text-decoration: none; transition: color var(--transition); }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-bottom p { font-size: .8rem; }
    .social-links { display: flex; gap: .8rem; }
    .social-link {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; text-decoration: none; color: #fff;
      transition: background var(--transition), transform var(--transition);
    }
    .social-link:hover { background: var(--purple-mid); transform: translateY(-2px); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .pillars-grid { grid-template-columns: repeat(2, 1fr); }
      .membership-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
        
         nav {
    height: 90px;
    padding: 0 15px;
  }

  .nav-logo-icon {
    width: 70px;
    height: 70px;
  }

  .nav-logo-text {
    font-size: 0.85rem;
    line-height: 1.1;
  }

  .nav-logo-text small {
    font-size: 0.68rem;
  }

.team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    width: 150px;
    height: 150px;
  }
      .nav-links, .btn-join { display: none; }
      .hamburger { display: flex; }
      .about-grid, .constitution-grid, .contact-grid, .events-grid { grid-template-columns: 1fr; }
      .pillars-grid { grid-template-columns: 1fr; }
      .membership-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-float-card { right: 0; bottom: -20px; }
      .about-ribbon { top: -15px; left: 0; }
      .footer-grid { grid-template-columns: 1fr; }
      .events-grid { grid-template-columns: 1fr; }
      section { padding: 4rem 5vw; }
      .sl-arrow { display: none; }
      .sl-thumbs { display: none; }
      .sl-dots { bottom: 20px; }
    }
    @media (max-width: 480px) {
      .sl-btns { flex-direction: column; align-items: center; }
    }
  