/* ==========================================================================
   CHO GLOBAL ALLIANCE - HOME PAGE STYLESHEET (home.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --navy-darker: #061322;
  --navy-dark: #08182b;
  --navy-primary: #0b1a2d;
  --navy-card: #0e223d;
  --navy-border: rgba(255, 255, 255, 0.12);

  --gold-primary: #e5a83b;
  --gold-light: #f5be5d;
  --gold-dark: #c98e29;
  --gold-accent: #d89b31;
  --gold-subtle: rgba(229, 168, 59, 0.15);

  /* Neutrals */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-card: #e5e9f0;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Elevations */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(8, 24, 43, 0.07);
  --shadow-lg: 0 10px 25px rgba(8, 24, 43, 0.1);
  --shadow-hover: 0 16px 36px rgba(8, 24, 43, 0.12);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-white);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--navy-dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.site-header .container.header-inner,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 0 36px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform var(--transition), opacity var(--transition);
}

.brand-logo:hover .brand-logo-img {
  opacity: 0.92;
  transform: scale(1.02);
}

.logo-icon-svg {
  width: 38px;
  height: 38px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

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

.logo-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-white);
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
}

/* Header CTA Button */
.btn-join-alliance {
  background-color: var(--gold-primary);
  color: var(--navy-darker);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(229, 168, 59, 0.3);
  transition: var(--transition);

  white-space: nowrap;
  flex-shrink: 0;
}

.btn-join-alliance:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(229, 168, 59, 0.45);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --------------------------------------------------------------------------
   4. Hero / Banner Section with Video Background
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 140px;
  padding-bottom: 0;
  overflow: hidden;
  background-color: var(--navy-darker);
}

/* YouTube Video Background Wrapper */
.video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Make 16:9 YouTube video cover the container completely & 100% visible */
.video-bg-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio relative to width */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio relative to height */
  transform: translate(-50%, -50%);
  border: none;
  opacity: 1; /* 100% crystal clear visibility */
}

/* Subtle Video Overlay (Keeps video vivid while text remains readable) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(8, 24, 43, 0.2) 0%,
    rgba(8, 24, 43, 0.3) 50%,
    rgba(6, 19, 34, 0.75) 100%
  );
  z-index: 2;
}

/* Hero Content Area */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  margin: auto auto 50px auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.12rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 34px auto;
  line-height: 1.6;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Hero Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--gold-primary);
  color: var(--navy-darker);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(229, 168, 59, 0.35);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 168, 59, 0.5);
}

.btn-hero-secondary {
  background-color: rgba(11, 26, 45, 0.7);
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--text-white);
  transform: translateY(-3px);
}

/* Sound / Video Controls */
.video-sound-toggle {
  position: absolute;
  top: 100px;
  right: 28px;
  z-index: 4;
  background: rgba(8, 24, 43, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.video-sound-toggle:hover {
  background: var(--gold-primary);
  color: var(--navy-darker);
  border-color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   5. Integrated Stats Counter Strip
   -------------------------------------------------------------------------- */
.stats-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(8, 24, 43, 0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

/* --------------------------------------------------------------------------
   6. Section: Why CHO-Global Alliance?
   -------------------------------------------------------------------------- */
.why-section {
  padding: 80px 0 75px 0;
  background-color: var(--bg-white);
  text-align: center;
}

.section-header {
  margin-bottom: 52px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gold-divider {
  width: 46px;
  height: 3px;
  background-color: var(--gold-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-dark);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.08);
  color: var(--gold-primary);
}

.feature-icon-svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 250px;
}

/* --------------------------------------------------------------------------
   7. Section: Upcoming Events
   -------------------------------------------------------------------------- */
.events-section {
  padding: 65px 0 95px 0;
  background-color: #fbfcfe;
  border-top: 1px solid var(--border-light);
}

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

.event-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

/* Event Thumbnail & Placeholder Image Container */
.event-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* High Fidelity Visual Placeholder for Event Images */
.event-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 43, 0.2) 0%, rgba(8, 24, 43, 0.85) 100%);
  z-index: 1;
}

/* Event Date & Location Overlay Badge (Design Exact Match) */
.event-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(8, 24, 43, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-badge-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.event-badge-loc {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Event Content Details */
.event-content {
  padding: 22px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 8px;
}

.event-location-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   8. Global Site Footer (Matches Design from 04 & 06)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-dark);
  color: var(--text-white);
  padding: 70px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 22px;
}

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

.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(3px);
}

/* Footer Contact / Info */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Follow Us Column */
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-darker);
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-border {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. Responsive Breakpoints & Mobile Optimization
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}


@media (max-width: 1320px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.3px;
  }
  .btn-join-alliance {
    padding: 9px 15px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1080px) {
  .nav-menu,
  .site-header .btn-join-alliance {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Mobile Dropdown Menu */
  .site-header.mobile-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--navy-darker);
    padding: 24px;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    gap: 16px;
    align-items: flex-start;
  }

  .site-header.mobile-open .btn-join-alliance {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .brand-logo-img {
    height: 36px;
    max-width: 170px;
  }

  .hero-section {
    padding-top: 110px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-item::after {
    display: none !important;
  }

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

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

/* --------------------------------------------------------------------------
   8. Milestone Directory 2026 Banner (Home Page)
   -------------------------------------------------------------------------- */
.home-milestone-section {
  padding: 70px 0;
  background-color: var(--navy-darker);
  position: relative;
  overflow: hidden;
}

.home-milestone-card {
  background: linear-gradient(135deg, rgba(17, 34, 64, 0.95) 0%, rgba(10, 25, 47, 0.98) 100%);
  border: 1px solid rgba(229, 168, 59, 0.35);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.home-milestone-badge {
  display: inline-block;
  background: rgba(229, 168, 59, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.home-milestone-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.home-milestone-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.home-milestone-stats {
  display: flex;
  gap: 32px;
}

.home-milestone-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.home-milestone-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.home-milestone-action-box {
  background: rgba(6, 18, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.home-milestone-action-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.btn-milestone-cta {
  background-color: var(--gold-primary);
  color: var(--navy-darker);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(229, 168, 59, 0.3);
}

.btn-milestone-cta:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-milestone-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-milestone-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   9. Facilities Overview Grid (Home Page)
   -------------------------------------------------------------------------- */
.home-facilities-section {
  padding: 85px 0;
  background-color: var(--bg-white);
}

.home-facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.home-facility-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-facility-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
  background: #ffffff;
}

.home-facility-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(229, 168, 59, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.home-facility-card:hover .home-facility-icon-wrap {
  background: var(--gold-primary);
  color: var(--navy-darker);
  transform: scale(1.1);
}

.home-facility-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.home-facility-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-facility-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. President Message Section (Home Page)
   -------------------------------------------------------------------------- */
.home-president-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.home-president-card {
  background: var(--navy-dark);
  border: 1px solid rgba(229, 168, 59, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--text-white);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.home-president-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 32px;
}

.home-president-avatar-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  padding: 4px;
  margin-bottom: 18px;
  background: var(--navy-darker);
  overflow: hidden;
}

.home-president-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.home-president-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.home-president-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-president-term {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.home-president-content {
  display: flex;
  flex-direction: column;
}

.home-president-quote-badge {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-president-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.home-president-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  font-style: italic;
}

.home-president-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. Membership Fee Preview Grid (Home Page)
   -------------------------------------------------------------------------- */
.home-fees-section {
  padding: 85px 0;
  background-color: var(--bg-white);
}

.home-fees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.home-fee-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.home-fee-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.home-fee-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, #fffcf5 0%, #ffffff 100%);
  position: relative;
}

.home-fee-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--navy-darker);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
}

.home-fee-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-fee-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.home-fee-card.featured .home-fee-price {
  color: var(--gold-dark);
}

.home-fee-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-fee-apply {
  background: var(--navy-dark);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}

.home-fee-card.featured .btn-fee-apply {
  background: var(--gold-primary);
  color: var(--navy-darker);
  font-weight: 800;
}

.btn-fee-apply:hover {
  background: var(--gold-primary);
  color: var(--navy-darker);
}

.home-fees-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.home-fees-note strong {
  color: var(--navy-dark);
}

/* --------------------------------------------------------------------------
   12. Sustainability & Future Leadership Section (Home Page)
   -------------------------------------------------------------------------- */
.home-sustainability-section {
  padding: 85px 0;
  background-color: var(--navy-dark);
  color: var(--text-white);
  position: relative;
}

.home-sustainability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-sustainability-badge {
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-sustainability-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.home-sustainability-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.home-sustainability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-sustainability-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.home-sustainability-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(229, 168, 59, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-sustainability-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Responsive updates for new sections */
@media (max-width: 1080px) {
  .home-milestone-card {
    grid-template-columns: 1fr;
  }
  .home-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-president-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-president-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .home-fees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-sustainability-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-facilities-grid,
  .home-fees-grid {
    grid-template-columns: 1fr;
  }
  .home-milestone-stats {
    flex-direction: column;
    gap: 16px;
  }
}
