/* ============================================================
   ARA Singapore – Professional HVAC Theme
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1b2e44;
  --navy-light: #253d5a;
  --blue:       #1a6ba0;
  --blue-mid:   #2589c9;
  --blue-light: #4fa8d5;
  --accent:     #e05c2a;
  --accent-lt:  #f07040;
  --cyan:       #00c2e0;
  --cyan-lt:    #40d8f0;
  --white:      #ffffff;
  --off-white:  #f4f8fb;
  --light:      #e8f1f7;
  --mid-gray:   #8da5b8;
  --dark-text:  #1a2a3a;
  --body-text:  #3a4f63;
  --border:     #d0dde8;

  --font-body:  'Inter', system-ui, sans-serif;
  --font-head:  'Rajdhani', 'Inter', sans-serif;

  --shadow-sm:  0 2px 8px rgba(13,27,42,0.10);
  --shadow-md:  0 6px 24px rgba(13,27,42,0.14);
  --shadow-lg:  0 16px 48px rgba(13,27,42,0.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --header-h:   72px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--dark-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,107,160,0.35); }

.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-lt); border-color: var(--accent-lt); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); }

.btn-danger { background: #dc3545; color: var(--white); border-color: #dc3545; }
.btn-danger:hover { background: #c82333; }

.btn-success { background: #28a745; color: var(--white); border-color: #28a745; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.bg-light { background: var(--off-white); }

/* ── Banner Slideshow ─────────────────────────────────────── */
.banner-strip {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.banner-slider {
  position: relative;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
}
/* Sliding track — all slides sit in a row; JS shifts translateX */
.banner-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.25, 1);
}
.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}
.banner-slide-inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 220px;
  gap: 0;
}
.banner-img-wrap {
  flex: 0 0 42%;
  max-width: 42%;
  overflow: hidden;
  align-self: stretch;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-text-wrap {
  flex: 1;
  padding: 2.5rem 3rem;
  color: var(--white);
}
.banner-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.6rem;
  line-height: 1.25;
}
.banner-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.banner-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan-lt);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.banner-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  background: var(--navy-mid);
}
.banner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.banner-dot.active,
.banner-dot:hover { background: var(--cyan); transform: scale(1.2); }

/* Banner Modal */
.banner-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.banner-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.banner-modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 1.75rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-gray);
  z-index: 10;
}
.banner-modal-close:hover { color: var(--dark-text); }
.banner-modal-img-wrap { width: 100%; max-height: 320px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.banner-modal-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.banner-modal-body { padding: 2rem 2.25rem 2.5rem; }
.banner-modal-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 0.75rem;
}
.banner-modal-desc {
  color: var(--body-text);
  font-size: 1rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.banner-modal-detail {
  color: var(--body-text);
  font-size: 0.97rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

/* Mobile banner */
@media (max-width: 700px) {
  .banner-slide-inner { flex-direction: column; }
  .banner-img-wrap { flex: 0 0 auto; max-width: 100%; width: 100%; height: 160px; }
  .banner-text-wrap { padding: 1.5rem 1.25rem; }
  .banner-title { font-size: 1.2rem; }
  .banner-modal-img { height: 200px; }
  .banner-modal-body { padding: 1.5rem 1.25rem; }
}


.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light);
  color: var(--blue);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--body-text); font-size: 1.05rem; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled, .site-header:not(.transparent) {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  /* Invert to white on transparent/dark header */
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
/* When header is scrolled (white bg), show original red logo */
.site-header.scrolled .nav-logo-img {
  filter: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-primary { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.logo-secondary { font-size: 0.65rem; color: var(--cyan-lt); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active { color: var(--cyan-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('/images/hero-bg.png') center/cover no-repeat,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
  background-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.80) 40%,
    rgba(26,107,160,0.55) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 2rem;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cyan-lt);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title-accent {
  background: linear-gradient(90deg, var(--cyan-lt), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-plus { font-family: var(--font-head); font-size: 1.6rem; color: var(--cyan); }
.stat-label { display: block; font-size: 0.78rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.12); }

/* ── About Cards ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.about-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.about-card p { font-size: 0.92rem; color: var(--body-text); }

/* ── President Section ────────────────────────────────────── */
.president-section { background: var(--navy); }
.president-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.president-image-col { text-align: center; }
.president-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid rgba(255,255,255,0.2);
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}
.president-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.president-name { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.president-title { color: var(--cyan-lt); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }

.president-message-col .section-tag { background: rgba(255,255,255,0.1); color: var(--cyan-lt); }
.president-message-col h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 1.25rem; }
.president-message-col p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; font-size: 0.95rem; }

/* ── Categories Grid ──────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.category-card:hover,
.category-card.is-open { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.category-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  cursor: pointer;
  position: relative;
}
.category-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.25rem; right: 1.25rem;
  height: 1px;
  background: var(--border);
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card.is-open .category-card-header::after { opacity: 1; }
.category-icon {
  width: 40px; height: 40px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.category-card:hover .category-icon,
.category-card.is-open .category-icon { background: var(--blue); color: var(--white); }
.category-card-header h4 { font-size: 0.88rem; font-weight: 600; color: var(--dark-text); line-height: 1.35; flex: 1; margin: 0; }
.category-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--blue);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.category-toggle i { transition: transform 0.25s ease; }
.category-card.is-open .category-toggle { background: var(--blue); border-color: var(--blue); color: var(--white); }
.category-card.is-open .category-toggle i { transform: rotate(45deg); }
.category-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.category-card.is-open .category-desc { max-height: 400px; }
.category-desc p {
  font-size: 0.83rem;
  color: var(--medium-text);
  line-height: 1.65;
  padding: 1rem 1.25rem 0.5rem;
  margin: 0;
}
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 1.25rem 1rem;
  text-decoration: none;
  transition: gap var(--transition);
}
.category-link:hover { gap: 0.55rem; }
.category-arrow { display: none; }

/* ── Events Section ───────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.event-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.event-card-inner {
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  flex: 1;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-card.featured { border-color: var(--blue); background: linear-gradient(135deg, rgba(26,107,160,0.05), rgba(0,194,224,0.03)); }
.event-badge {
  position: absolute;
  top: -10px; right: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  color: var(--white);
  text-align: center;
}
.event-day { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cyan-lt); margin-top: 0.2rem; }
.event-year { font-size: 0.65rem; color: var(--mid-gray); }
.event-info { flex: 1; }
.event-type { font-size: 0.75rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.5rem; }
.event-info h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark-text); }
.event-info p { font-size: 0.88rem; color: var(--body-text); margin-bottom: 0.75rem; line-height: 1.6; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,194,224,0.2), transparent 70%);
  border-radius: 50%;
}
.cta-content { max-width: 560px; position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 1.75rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-icon-col { position: relative; z-index: 1; }
.cta-icon-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
}
.cta-big-icon { font-size: 4rem; color: var(--cyan); }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.95), rgba(26,107,160,0.85)),
    url('/images/hero-bg.png') center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.6), rgba(13,27,42,0.9));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--cyan-lt); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.65rem; }
.page-hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* ── Members Directory ────────────────────────────────────── */
.members-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
  display: flex;
  align-items: center;
}
.search-box > i { position: absolute; left: 1rem; color: var(--mid-gray); pointer-events: none; }
.search-box input {
  width: 100%;
  padding: 0.75rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,107,160,0.12); }
.search-clear { position: absolute; right: 0.75rem; background: none; border: none; color: var(--mid-gray); padding: 0.25rem; }
.search-clear:hover { color: var(--dark-text); }

.view-toggle { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.view-btn { background: var(--white); border: none; padding: 0.6rem 0.9rem; color: var(--mid-gray); transition: all var(--transition); }
.view-btn.active { background: var(--navy); color: var(--white); }
.view-btn:hover:not(.active) { background: var(--off-white); color: var(--dark-text); }

/* Category filter chips */
.category-filter-bar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.cat-filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-gray);
  white-space: nowrap;
  padding-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cat-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--body-text);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  white-space: nowrap;
}
.cat-chip:hover { border-color: var(--blue); color: var(--blue); }
.cat-chip.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.cat-chip.selected { background: var(--cyan-lt); border-color: var(--blue); color: var(--navy); font-weight: 600; }

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cat-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--body-text);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: all var(--transition);
}
.cat-tab:hover { border-color: var(--blue); color: var(--blue); }
.cat-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.results-info {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.members-grid.list-view {
  grid-template-columns: 1fr;
}

.member-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.member-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); transform: translateY(-3px); }

.member-logo-box {
  height: 110px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.member-logo-box img { max-height: 70px; max-width: 100%; object-fit: contain; }
.member-logo-placeholder {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-head);
  font-weight: 700;
}

.member-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.member-category-badge {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}
.member-body h3 { font-size: 1rem; color: var(--dark-text); margin-bottom: 0.4rem; line-height: 1.3; }
.member-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.member-cat-tag {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.member-body .member-contact { font-size: 0.82rem; color: var(--mid-gray); display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.3rem; }
.member-body .member-desc { font-size: 0.83rem; color: var(--body-text); line-height: 1.5; margin-top: 0.5rem; flex: 1; }

.member-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
}
.member-number { font-size: 0.75rem; color: var(--mid-gray); font-weight: 500; }

/* List view card */
.members-grid.list-view .member-card { flex-direction: row; }
.members-grid.list-view .member-logo-box { width: 100px; height: auto; border-bottom: none; border-right: 1px solid var(--border); flex-shrink: 0; }
.members-grid.list-view .member-body { padding: 1rem 1.25rem; }
.members-grid.list-view .member-footer { border-top: none; border-left: 1px solid var(--border); flex-direction: column; gap: 0.5rem; align-items: flex-end; min-width: 120px; background: var(--off-white); }

/* Loading & No Results */
.loading-spinner {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--mid-gray);
}
.loading-spinner i { font-size: 2.5rem; margin-bottom: 1rem; color: var(--blue); }
.no-results {
  text-align: center;
  padding: 4rem;
  color: var(--mid-gray);
}
.no-results i { font-size: 3rem; margin-bottom: 1rem; }
.no-results h3 { color: var(--dark-text); margin-bottom: 0.5rem; }
.no-results p { margin-bottom: 1.5rem; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--body-text);
  font-size: 0.9rem;
  z-index: 1;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }

.modal-member-logo {
  height: 160px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-member-logo img { max-height: 110px; max-width: 240px; object-fit: contain; }

.modal-member-body { padding: 2rem; }
.modal-member-body h2 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--dark-text); }
.modal-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.modal-detail-row:last-child { border-bottom: none; }
.modal-detail-icon { width: 20px; color: var(--blue); margin-top: 0.1rem; flex-shrink: 0; }
.modal-detail-label { font-weight: 600; color: var(--dark-text); min-width: 120px; }
.modal-detail-value { color: var(--body-text); }

/* ── About Page ───────────────────────────────────────────── */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col-text h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.two-col-text .section-tag { margin-bottom: 0.75rem; }
.two-col-text p { margin-bottom: 1rem; font-size: 0.95rem; }
.history-card {
  background: var(--off-white);
  border-left: 3px solid var(--blue);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
}
.history-year { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--blue); }
.history-milestone { font-weight: 600; color: var(--dark-text); margin-bottom: 0.25rem; }
.history-card p { font-size: 0.85rem; color: var(--body-text); margin: 0; }

.objectives-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.objective-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.objective-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  min-width: 48px;
}
.objective-content h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.objective-content p { font-size: 0.92rem; color: var(--body-text); }

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.committee-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.committee-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.committee-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.committee-card.highlight { border-color: var(--blue); background: linear-gradient(135deg, rgba(26,107,160,0.05), rgba(0,194,224,0.03)); }
.committee-role-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}
.committee-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 auto 0.75rem;
  overflow: hidden;
}
.committee-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.committee-avatar.sm { width: 48px; height: 48px; font-size: 1.1rem; }
.committee-avatar.lg { width: 96px; height: 96px; font-size: 2rem; }
.committee-card h3 { font-size: 0.95rem; color: var(--dark-text); margin-bottom: 0.25rem; }
.committee-role { font-size: 0.78rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Events Timeline ──────────────────────────────────────── */
.events-timeline { max-width: 900px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 60px; bottom: -2rem;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item:last-child::before { display: none; }
.tl-date {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  height: fit-content;
}
.tl-day { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.tl-month { display: block; font-size: 0.72rem; text-transform: uppercase; color: var(--cyan-lt); letter-spacing: 0.06em; margin-top: 0.2rem; }
.timeline-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-md); }
.tl-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}
.tl-card-body {
  padding: 1.75rem;
}
.tl-type {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.tl-type.social { background: rgba(224,92,42,0.1); color: var(--accent); }
.tl-type.training { background: rgba(26,107,160,0.1); color: var(--blue); }
.tl-type.talk { background: rgba(40,167,69,0.1); color: #28a745; }
.timeline-card h3 { font-size: 1.1rem; color: var(--dark-text); margin-bottom: 0.6rem; }
.timeline-card p { font-size: 0.9rem; color: var(--body-text); line-height: 1.65; margin-bottom: 1rem; }
.tl-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.video-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.video-embed-box { border-radius: var(--radius-lg); overflow: hidden; }
.video-placeholder {
  background: var(--navy);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}
.video-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  transition: all var(--transition);
}
.video-play-btn:hover { opacity: 0.85; transform: scale(1.02); }
.video-play-btn i.fab { font-size: 4rem; color: #ff0000; }
.video-play-btn span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.video-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.video-info p { color: var(--body-text); margin-bottom: 1.5rem; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-col h2 { font-size: 1.7rem; margin-bottom: 0.75rem; }
.contact-info-col > p { color: var(--body-text); margin-bottom: 1.5rem; }
.contact-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  color: var(--dark-text);
}
.contact-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.contact-card.highlighted { border-color: var(--blue); background: rgba(26,107,160,0.04); }
.contact-card-icon {
  width: 38px; height: 38px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-card-info { flex: 1; }
.contact-card-info h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-card-info span { font-size: 0.8rem; color: var(--mid-gray); }
.contact-card > i.fas.fa-arrow-right { font-size: 0.7rem; color: var(--mid-gray); transition: all var(--transition); }
.contact-card:hover > i.fas.fa-arrow-right { color: var(--blue); transform: translateX(2px); }

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h2 { font-size: 1.7rem; margin-bottom: 1.5rem; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-text); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,160,0.12);
}
.form-group textarea { resize: vertical; }

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-status.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo i { font-size: 1.4rem; color: var(--cyan); }
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  /* Footer has dark bg — invert logo to white */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links-col ul li { margin-bottom: 0.5rem; }
.footer-links-col a { font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.footer-links-col a:hover { color: var(--cyan-lt); }

.footer-contacts { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contacts li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.87rem; }
.footer-contacts li i { color: var(--cyan); font-size: 0.75rem; flex-shrink: 0; }
.footer-contacts a { color: rgba(255,255,255,0.6); }
.footer-contacts a:hover { color: var(--cyan-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--cyan-lt); }

/* ── Toast Notification ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #28a745; }
.toast.error { border-left: 4px solid #dc3545; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .president-card { grid-template-columns: 160px 1fr; gap: 2rem; }
  .two-col-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .video-section-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-icon-col { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 3rem 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }

  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; }

  .nav-toggle { display: flex; }

  .hero-content { padding: 2rem 1.5rem 1.5rem; }
  .hero-stats-inner { justify-content: center; gap: 1.5rem; }
  .stat-divider { display: none; }

  .president-card { grid-template-columns: 1fr; text-align: center; }
  .president-image-col { display: flex; flex-direction: column; align-items: center; }

  .cta-card { padding: 2.5rem 1.75rem; }
  .cta-content h2 { font-size: 1.5rem; }

  .committee-grid.three-col { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .timeline-item { grid-template-columns: 70px 1fr; gap: 1rem; }
  .timeline-item::before { left: 35px; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .members-grid.list-view .member-card { flex-direction: column; }
  .members-grid.list-view .member-logo-box { width: 100%; height: 100px; border-right: none; border-bottom: 1px solid var(--border); }
  .members-grid.list-view .member-footer { flex-direction: row; border-left: none; border-top: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .committee-grid { grid-template-columns: 1fr 1fr; }
  .committee-grid.three-col { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
}
