/* ============================================================
   SCGN Corporate Governance Club — Main Stylesheet
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap");

:root {
  --navy: #0d1f3c;
  --crimson: #9b1b30;
  --crimson-light: #c0334a;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --cream: #f7f3ed;
  --white: #ffffff;
  --text-dark: #0d1f3c;
  --text-mid: #4a5568;
  --text-light: #8896a7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4rem;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0;
}
.nav-links a:hover {
  color: var(--gold-light);
}

/* Dropdown arrow */
.has-dropdown > a::after {
  content: "▾";
  font-size: 0.65rem;
  transition: transform 0.25s;
  display: inline-block;
}
.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 3px solid var(--crimson);
  border-radius: 0 0 4px 4px;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(13, 31, 60, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
  list-style: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  color: var(--navy) !important;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.75rem 1.4rem !important;
  display: block;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(13, 31, 60, 0.06);
  transition:
    background 0.2s,
    color 0.2s;
}
.dropdown li:last-child a {
  border-bottom: none;
}
.dropdown li a:hover {
  background: var(--cream);
  color: var(--crimson) !important;
}
.dropdown li a .chapter-badge {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6rem;
  background: var(--crimson);
  color: var(--white);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--crimson);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--crimson-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(201, 168, 76, 0.04) 0px,
      transparent 1px,
      transparent 80px,
      rgba(201, 168, 76, 0.04) 81px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(201, 168, 76, 0.04) 0px,
      transparent 1px,
      transparent 80px,
      rgba(201, 168, 76, 0.04) 81px
    );
}
.hero-glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 40%,
    rgba(155, 27, 48, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--crimson);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  height: 460px;
  isolation: isolate;
}
.hero-img-main {
  position: absolute;
  top: 0;
  left: 20px;
  right: 0;
  bottom: 60px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  animation: floatCard 7s ease-in-out infinite;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 31, 60, 0.6) 0%,
    transparent 50%
  );
}
.hero-img-thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  animation: floatCard 7s ease-in-out infinite 2s;
}
.hero-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 10;
  background: var(--crimson);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(155, 27, 48, 0.4);
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  border: 2px solid var(--crimson);
  display: inline-block;
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--crimson-light);
  border-color: var(--crimson-light);
}
.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-white {
  background: var(--white);
  color: var(--crimson);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  border: 2px solid var(--white);
  display: inline-block;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 4rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-item .n {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-item .l {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.15);
}

/* ── SECTIONS ── */
.section {
  padding: 7rem 4rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--crimson);
  display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title em {
  color: var(--crimson);
  font-style: italic;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.about-text p strong {
  color: var(--navy);
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 80px;
  bottom: 80px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 31, 60, 0.2);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(13, 31, 60, 0.25);
}
.about-img-corner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-tag {
  position: absolute;
  top: 20px;
  right: 60px;
  background: var(--crimson);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(155, 27, 48, 0.4);
}
.about-years {
  position: absolute;
  bottom: 90px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  text-align: center;
}
.about-years .num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-years .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── MISSION ── */
.mission-section {
  background: var(--navy);
  color: var(--white);
}
.mission-section .section-title {
  color: var(--white);
}
.mission-section .section-label {
  color: var(--gold);
}
.mission-section .section-label::before {
  background: var(--gold);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.mission-item {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.mission-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--crimson);
  transition: height 0.4s ease;
}
.mission-item:hover::before {
  height: 100%;
}
.mission-item:hover {
  background: rgba(201, 168, 76, 0.04);
}
.mi-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.06;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -0.5rem;
}
.mi-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.mi-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

/* ── ACTIVITIES ── */
.activities-section {
  background: var(--cream);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.act-card {
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.act-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.act-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.act-card:hover .act-card-img img {
  transform: scale(1.06);
}
.act-card-body {
  padding: 1.8rem;
}
.act-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.act-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 31, 60, 0.12);
}
.act-card:hover::after {
  transform: scaleX(1);
}
.act-icon {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  display: block;
}
.act-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.act-body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── BENEFITS ── */
.benefits-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.benefits-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(155, 27, 48, 0.15) 0%,
    transparent 70%
  );
}
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.benefit-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.benefit-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.benefit-badge {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.benefit-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.benefit-text p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.benefits-img-panel {
  position: relative;
  height: 500px;
}
.b-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.b-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 31, 60, 0.7) 0%,
    transparent 50%
  );
}
.b-img-caption {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 60px;
  z-index: 2;
  padding: 1.5rem 2rem;
}
.b-img-caption .quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.b-img-caption .q-src {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.b-img-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.b-img-corner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PILLARS ── */
.pillars-section {
  background: var(--white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13, 31, 60, 0.08);
  margin-top: 3rem;
}
.pillar {
  background: var(--white);
  overflow: hidden;
  transition: background 0.35s;
}
.pillar-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition:
    filter 0.3s,
    transform 0.4s;
}
.pillar:hover .pillar-img img {
  filter: grayscale(0%);
  transform: scale(1.06);
}
.pillar-body {
  padding: 2rem 1.8rem;
}
.pillar:hover {
  background: var(--navy);
}
.pillar:hover .p-title {
  color: var(--white);
}
.pillar:hover .p-body {
  color: rgba(255, 255, 255, 0.6);
}
.p-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  display: block;
}
.p-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.p-body {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--text-mid);
  transition: color 0.3s;
}

/* ── JOIN ── */
.join-section {
  background: var(--cream);
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.eligibility-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.elig-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.07);
  border-radius: 4px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.elig-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 4px 20px rgba(155, 27, 48, 0.08);
}
.elig-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.elig-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.elig-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}
.join-cta {
  background: var(--navy);
  border-radius: 6px;
  padding: 3rem;
  color: var(--white);
  margin-top: 2rem;
}
.join-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.join-cta p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}
.join-steps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.join-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--crimson);
  padding: 5rem 4rem;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: #080f1d;
  color: var(--white);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom .gold {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   CHAPTER PAGE STYLES
   ═══════════════════════════════════════════ */

/* Chapter Hero */
.chapter-hero {
  min-height: 55vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.chapter-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(155, 27, 48, 0.2) 0%,
    transparent 65%
  );
}
.chapter-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.chapter-breadcrumb {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.chapter-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.chapter-breadcrumb a:hover {
  text-decoration: underline;
}
.chapter-breadcrumb span {
  margin: 0 0.5rem;
}
.chapter-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.chapter-hero-title em {
  color: var(--gold);
  font-style: italic;
}
.chapter-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 520px;
}
.chapter-uni-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  min-width: 180px;
}
.chapter-uni-badge .uni-emblem {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.8rem;
}
.chapter-uni-badge .uni-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.chapter-uni-badge .uni-est {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Chapter Stats */
.chapter-stats-bar {
  background: var(--crimson);
  padding: 1.8rem 4rem;
}
.chapter-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.ch-stat {
  text-align: center;
  flex: 1;
}
.ch-stat .n {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}
.ch-stat .l {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ch-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Chapter About */
.chapter-about {
  background: var(--white);
}
.chapter-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.chapter-about-img {
  border-radius: 6px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 60px rgba(13, 31, 60, 0.15);
}
.chapter-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}

/* ── EXECUTIVES SECTION ── */
.executives-section {
  background: var(--cream);
}
.executives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.exec-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 60, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.exec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(13, 31, 60, 0.14);
}
.exec-card-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
}
.exec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.exec-card-img .exec-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
}
.exec-card-img .exec-placeholder .avatar-icon {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.exec-card-img .exec-placeholder .avatar-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.exec-role-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--crimson), transparent);
  padding: 2rem 1.5rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.exec-card-body {
  padding: 1.5rem;
}
.exec-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.exec-role-title {
  font-size: 0.78rem;
  color: var(--crimson);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.exec-bio {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.exec-socials {
  display: flex;
  gap: 0.5rem;
}
.exec-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(13, 31, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.exec-social-btn:hover {
  background: var(--crimson);
  color: var(--white);
}

/* Exec section intro */
.executives-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 0;
}
.executives-intro .intro-right {
  text-align: right;
}
.executives-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* Chapter Activities */
.chapter-activities {
  background: var(--white);
}
.ch-act-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ch-act-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--crimson);
  transition: transform 0.2s;
}
.ch-act-item:hover {
  transform: translateX(4px);
}
.ch-act-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ch-act-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.ch-act-body {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Chapter join CTA */
.chapter-join {
  background: var(--navy);
}
.chapter-join .section-title {
  color: var(--white);
}
.chapter-join .section-label {
  color: var(--gold);
}
.chapter-join .section-label::before {
  background: var(--gold);
}
.chapter-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.chapter-join-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}
.chapter-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ch-contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
}
.ch-contact-icon {
  font-size: 1.3rem;
}
.ch-contact-label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.ch-contact-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s ease,
    width 0.3s ease;
  transform-origin: center;
}
/* Animated X state */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 250;
  overflow-y: auto;
  padding: 6rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 240;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open {
  opacity: 1;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-nav ul li a:hover {
  color: var(--gold-light);
  padding-left: 0.4rem;
}
/* Mobile sub-menu toggle */
.mobile-has-sub > a .mob-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
  color: var(--gold);
}
.mobile-has-sub.open > a .mob-arrow {
  transform: rotate(90deg);
}
.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
.mobile-has-sub.open .mobile-submenu {
  max-height: 300px;
}
.mobile-submenu li {
  border-bottom: none !important;
  border-top: none !important;
}
.mobile-submenu li a {
  padding: 0.75rem 1.2rem !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}
.mobile-submenu li a:hover {
  color: var(--gold-light) !important;
}
.mobile-submenu .chapter-badge {
  font-size: 0.58rem;
  background: var(--crimson);
  color: var(--white);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.4rem;
}
/* Mobile CTA inside drawer */
.mobile-nav-cta {
  margin-top: 2rem;
  display: block;
  text-align: center;
}
.mobile-nav-cta a {
  display: block;
  background: var(--crimson);
  color: var(--white) !important;
  padding: 0.9rem 1.5rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  border: 2px solid var(--crimson);
}
.mobile-nav-cta a:hover {
  background: transparent;
  color: var(--crimson-light) !important;
  border-color: var(--crimson-light);
}
/* Chapter label in drawer */
.mobile-nav-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.5rem 0.2rem 0.5rem;
  display: block;
}

.mobile-nav-overlay {
  pointer-events: none;
}

.mobile-nav-overlay.open {
  pointer-events: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .executives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav {
    padding: 0.9rem 2rem;
  }
}

/* TABLET (768px – 1024px): Show nav links, hide hamburger */
@media (min-width: 768px) and (max-width: 1024px) {
  nav {
    padding: 0.9rem 2rem;
    gap: 1rem;
  }
  .nav-links {
    display: flex;
    gap: 1.2rem;
  }
  .nav-links a {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }
  .nav-cta {
    font-size: 0.72rem;
    padding: 0.5rem 1rem;
  }
  .nav-hamburger {
    display: none;
  }
}

/* MOBILE (< 768px): Show hamburger, hide nav links */
@media (max-width: 767px) {
  nav {
    padding: 0.9rem 1.2rem;
  }
  .nav-links {
    display: none !important;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav-overlay {
    display: block;
  }

  /* Layout adjustments */
  .hero-inner,
  .about-grid,
  .mission-grid,
  .benefits-layout,
  .join-grid,
  .chapter-about-grid,
  .chapter-join-grid,
  .executives-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-inner, .chapter-hero-inner {
    padding: 4rem 1.5rem;
  }
  .hero-right {
    display: none;
  }
  .activities-grid,
  .ch-act-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  footer {
    padding: 4rem 2rem 1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4rem 1.2rem;
  }
  .stats-bar,
  .chapter-stats-bar {
    padding: 2rem 1.2rem;
  }
  .chapter-hero-inner {
    grid-template-columns: 1fr;
  }
  .chapter-uni-badge {
    display: none;
  }
  .executives-intro .intro-right {
    text-align: left;
  }
  .executives-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .activities-grid,
  .pillars-grid,
  .ch-act-grid {
    grid-template-columns: 1fr;
  }
}
