@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Source+Serif+4:wght@600&display=swap");

/* ==========
   Colourful (but professional) Theme
   ========== */

:root {
  --primary: #0f2a52;
  --primary-dark: #0a1f3c;
  --secondary: #ffffff;
  --accent: #f4f6fb;

  --accent-soft-blue: #e7f0ff;
  --accent-soft-purple: #eef2ff;
  --accent-soft-teal: #e8fbf5;
  --accent-gold: #fff4d6;

  --text: #0b1221;
  --muted: #5e6474;
  --border: #e4e8f0;
  --danger: #b91c1c;
  --success: #166534;

  --shadow-strong: 0 26px 60px rgba(12, 22, 44, 0.16);
  --shadow-soft: 0 14px 36px rgba(12, 22, 44, 0.08);
  --gradient-primary: linear-gradient(120deg, #0f2a52, #1e3a8a, #0ea5e9);
  --gradient-accent: linear-gradient(135deg, #22c55e, #0ea5e9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.1), transparent 25%),
    radial-gradient(circle at 86% 10%, rgba(34, 197, 94, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(241, 245, 249, 0.9), #f8fafc);
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: inherit;
}

p {
  margin: 0 0 0.85rem;
}

/* ==========
   Global Layout
   ========== */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  padding-bottom: 3.5rem;
}

.section {
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.section--light {
  background: radial-gradient(circle at 15% 25%, rgba(14, 165, 233, 0.05), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.05), transparent 28%),
    var(--secondary);
}

.section--muted {
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
}

.section-title {
  font-size: 1.95rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 720px;
  font-weight: 500;
}

/* ==========
   Header & Nav + coloured strip
   ========== */

.site-header {
  background: rgba(8, 20, 44, 0.94);
  color: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(5, 10, 25, 0.28);
}

/* default strip (overridden per page) */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #4f46e5);
}

/* Page-specific colour strips */
.home-page .site-header::after {
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
}

.about-page .site-header::after {
  background: linear-gradient(90deg, #0b3d91, #6366f1);
}

.events-page .site-header::after {
  background: linear-gradient(90deg, #14b8a6, #facc15);
}

.executives-page .site-header::after {
  background: linear-gradient(90deg, #1d4ed8, #8b5cf6);
}

.resources-page .site-header::after {
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
}

.blog-page .site-header::after {
  background: linear-gradient(90deg, #4f46e5, #ec4899);
}

.contact-page .site-header::after {
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.site-header .container {
  padding-left: clamp(1.25rem, 4vw, 1.8rem);
  padding-right: clamp(1.25rem, 4vw, 1.8rem);
}

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5edff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 0.2rem 0;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #fef3c7;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 16px;
  background-color: #e5e7eb;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Nav dropdown */

.nav-has-dropdown > a {
  display: inline-block;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0.5rem 0 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: none;
  z-index: 120;
}

.nav-dropdown li a {
  display: block;
  padding: 0.45rem 0.9rem;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-dropdown li a:hover {
  background-color: #eff6ff;
  color: #0b3d91;
}

/* Show dropdown on hover (desktop) */
.nav-has-dropdown:hover .nav-dropdown {
  display: block;
}

/* ==========
   Hero (enhanced)
   ========== */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--secondary);
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.2), transparent 34%),
    radial-gradient(circle at 78% -10%, rgba(14, 165, 233, 0.22), transparent 28%),
    linear-gradient(120deg, #0a152d, #0f2a52 50%, #1e3a8a);
}

/* soft glowing shapes */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.75;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.8), transparent 62%);
  top: -60px;
  right: 2%;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.6), transparent 62%);
  bottom: -40px;
  left: -4%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-inner > div:first-child {
  max-width: 640px;
}

.hero-title {
  font-family: "Source Serif 4", "Plus Jakarta Sans", "Segoe UI", system-ui, serif;
  font-size: 2.45rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.65rem;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: #d8e4ff;
  margin-top: 1.25rem;
}

.hero-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.7));
  padding: 1.75rem;
  border-radius: 1.15rem;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(10px);
}

/* ==========
   Cards, Buttons, Badges
   ========== */

.card {
  background-color: var(--secondary);
  border-radius: 1rem;
  padding: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

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

.card:hover::before {
  opacity: 1;
}

.card--shadowless {
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.1s ease,
    border-color 0.18s ease;
  letter-spacing: 0.01em;
}

/* Main CTA - hero buttons */
.btn-primary {
  background: var(--gradient-accent);
  color: #0b172f;
  border-color: transparent;
  box-shadow:
    0 14px 32px rgba(34, 197, 94, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 44px rgba(34, 197, 94, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.38);
}

/* Blue actions - across inner pages */
.btn-blue {
  background: radial-gradient(circle at top left, #38bdf8, #0f2a52);
  color: var(--secondary);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.35);
}

.btn-blue:hover {
  background: radial-gradient(circle at top left, #0ea5e9, #0b2040);
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(30, 64, 175, 0.5);
}

/* Ghost/secondary buttons */
.btn-ghost {
  background-color: #f8fafc;
  color: var(--primary-dark);
  border-color: rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  transform: translateY(-1px);
}

/* Outline buttons on dark backgrounds */
.btn-outline {
  background-color: transparent;
  color: #e5e7eb;
  border-color: rgba(248, 250, 252, 0.7);
}

.btn-outline:hover {
  background-color: rgba(15, 23, 42, 0.45);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  color: #e7efff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(34, 197, 94, 0.12), transparent 50%),
    var(--secondary);
  border-radius: 0.95rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  border-top: 3px solid rgba(37, 99, 235, 0.7);
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:nth-child(2) {
  border-top-color: rgba(250, 204, 21, 0.85);
}

.stat-card:nth-child(3) {
  border-top-color: rgba(16, 185, 129, 0.85);
}

.stat-card:nth-child(4) {
  border-top-color: rgba(168, 85, 247, 0.85);
}

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

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ==========
   Grid helpers
   ========== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ==========
   Slider
   ========== */

.slider {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 3rem;
}

.slider-track {
  position: relative;
  min-height: 260px;
}

.event-slide {
  display: none;
  transition: opacity 0.25s ease;
}

.event-slide.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff, #f4f6fb);
  color: var(--primary-dark);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.slider-btn:hover {
  background: linear-gradient(135deg, #e0f2fe, #f4f6fb);
  box-shadow: var(--shadow-strong);
  transform: translateY(-54%);
}

.slider-btn.prev {
  left: 0.35rem;
}

.slider-btn.next {
  right: 0.35rem;
}

/* ==========
   Blog
   ========== */

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: start;
}

.blog-post {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.blog-post-title {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.blog-post-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.blog-sidebar-card + .blog-sidebar-card {
  margin-top: 1rem;
}

.blog-post .btn {
  align-self: flex-start;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.sidebar-list li {
  margin-bottom: 0.25rem;
}

.sidebar-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
}

.sidebar-list a:hover {
  color: var(--primary-dark);
}

/* ==========
   Events
   ========== */

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-pill {
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: var(--secondary);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
}

.filter-pill.active {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  border-color: transparent;
  color: var(--secondary);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.event-card {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 60%),
    var(--secondary);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.event-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.event-title {
  margin: 0.2rem 0 0.15rem;
  font-size: 1.05rem;
}

.event-venue {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Past events gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  height: 160px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent 55%);
  color: var(--secondary);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 0.85rem;
}

/* ==========
   Executives
   ========== */

.executives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

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

/* Photo container now works with <img> inside */
.exec-photo {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  margin: 0 auto 0.75rem;
  padding: 3px; /* thickness of the colourful ring */
  background: conic-gradient(
    from 160deg,
    #0ea5e9,
    #4f46e5,
    #22c55e,
    #facc15,
    #0ea5e9
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* hide anything outside the circle */
}

/* Actual image inside the ring */
.exec-photo img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.exec-name {
  margin: 0;
  font-weight: 600;
}

.exec-role {
  margin: 0.15rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.exec-year {
  font-size: 0.8rem;
  color: var(--muted);
}

.org-structure {
  margin-top: 2rem;
}

.org-tree {
  list-style: none;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(129, 140, 248, 0.5);
}

.org-tree li {
  margin: 0.4rem 0;
  position: relative;
}

.org-tree li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.7rem;
  width: 1rem;
  height: 1px;
  background-color: rgba(148, 163, 184, 0.7);
}

/* ==========
   Resources
   ========== */

.resource-category {
  margin-bottom: 1.75rem;
}

.resource-category h3 {
  margin-bottom: 0.35rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

.resource-list a {
  color: var(--primary-dark);
  text-decoration: none;
}

.resource-list a:hover {
  text-decoration: underline;
}

/* ==========
   Forms & Contact
   ========== */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.25);
}

.form-messages {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.form-messages.error {
  color: var(--danger);
}

.form-messages.success {
  color: var(--success);
}

/* FAQ Accordion */

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.75rem;
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.12), transparent 60%),
    var(--secondary);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.9rem;
  border: none;
  background: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span.icon {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
}

.faq-answer {
  display: none;
  padding: 0 0.9rem 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========
   Timeline (About)
   ========== */

.timeline {
  position: relative;
  padding-left: 1.6rem;
  border-left: 2px solid rgba(129, 140, 248, 0.5);
}

.timeline-item {
  margin-bottom: 1.2rem;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -0.55rem;
  top: 0.2rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: radial-gradient(circle, #4f46e5, #0ea5e9);
}

/* ==========
   Footer
   ========== */

.site-footer {
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #e5e7eb;
  padding: 2.25rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  font-size: 0.9rem;
  align-items: start;
}

.footer-heading {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: #c7d2fe;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fef3c7;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.social-pill {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

/* ==========
   CTA Strip
   ========== */

.cta-strip {
  background: linear-gradient(120deg, #0a1f3c, #1e3a8a, #0ea5e9);
  color: var(--secondary);
  padding: 1.8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25), transparent 65%);
  filter: blur(6px);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-title {
  margin: 0;
  font-size: 1.45rem;
}

/* ==========
   Utility
   ========== */

.text-muted {
  color: var(--muted);
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

/* ==========
   Responsive
   ========== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .blog-layout,
  .form-grid,
  .executives-grid,
  .events-grid,
  .gallery-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.98),
      rgba(15, 23, 42, 0.96)
    );
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
    display: none;
  }

  .nav-links a {
    color: #e5e7eb;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-dropdown {
    position: static;
    margin: 0.25rem 0 0;
    box-shadow: none;
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(51, 65, 85, 0.8);
  }

  .nav-dropdown li a {
    color: #e5e7eb;
  }

  .nav-dropdown li a:hover {
    background-color: rgba(30, 64, 175, 0.75);
    color: #fef3c7;
  }

  .slider {
    padding: 0 0.5rem 1.5rem;
  }

  .slider-btn {
    top: auto;
    bottom: -18px;
    transform: none;
  }

  .slider-btn:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 600px) {
  .site-header .container {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .hero-card {
    margin-top: 0.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .stat-card {
    padding: 0.95rem 1rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner .btn {
    width: 100%;
  }
}
