/* =====================================================
   AFASS Modern Design System — 2026
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:        #6366f1;
  --primary-dark:   #4f46e5;
  --primary-darker: #3730a3;
  --primary-light:  #e0e7ff;
  --dark:           #0f172a;
  --dark-800:       #1e293b;
  --dark-700:       #334155;
  --dark-600:       #475569;
  --gray:           #64748b;
  --gray-200:       #e2e8f0;
  --gray-100:       #f1f5f9;
  --white:          #ffffff;
  --accent:         #06b6d4;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 32px 64px rgba(0,0,0,.16);

  --transition:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Suppress old page loader */
#pageloader { display: none !important; }

#page { position: relative; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ---- Buttons ---- */
.btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(99,102,241,.30);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(99,102,241,.40);
  transform: translateY(-1px);
}

.btn-default, .btn-outline-primary {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
}
.btn-default:hover, .btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary) !important;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.9) !important;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: white !important;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn-sm {
  padding: 6px 16px;
  font-size: 0.82rem;
  border-radius: 6px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.afass-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition-slow);
}

.afass-nav .nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
}

/* Solid (default / scrolled) */
.afass-nav.nav-solid {
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}

/* Transparent (hero pages before scroll) */
.afass-nav.nav-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

/* Logo */
.afass-nav .nav-logo { flex-shrink: 0; }
.afass-nav .nav-logo img { height: 46px; width: auto; display: block; }

/* Desktop links */
.afass-nav .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  gap: 2px;
}

.afass-nav .nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--dark-700);
  white-space: nowrap;
  transition: var(--transition);
}
.afass-nav .nav-links > li > a:hover {
  background: rgba(99,102,241,.08);
  color: var(--primary);
}
.afass-nav .nav-links > li > a .caret {
  font-size: 0.6rem;
  opacity: .6;
  margin-left: 2px;
}

/* Transparent nav — white links */
.afass-nav.nav-transparent .nav-links > li > a {
  color: rgba(255,255,255,.88);
}
.afass-nav.nav-transparent .nav-links > li > a:hover {
  background: rgba(255,255,255,.13);
  color: white;
}

/* Dropdown */
.afass-nav .has-dropdown { position: relative; }

.afass-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 300px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.afass-nav .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.afass-nav .nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-700);
  transition: var(--transition);
  line-height: 1.45;
}
.afass-nav .nav-dropdown li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* External link badge */
.nav-ext-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Mobile hamburger */
.afass-nav .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  gap: 5px;
}
.afass-nav .nav-toggle:hover { background: rgba(0,0,0,.05); }

.afass-nav.nav-transparent .nav-toggle:hover { background: rgba(255,255,255,.12); }

.afass-nav .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-700);
  border-radius: 2px;
  transition: var(--transition);
}
.afass-nav.nav-transparent .nav-toggle span { background: rgba(255,255,255,.9); }

/* Mobile layout */
@media (max-width: 991px) {
  .afass-nav .nav-toggle { display: flex; }

  .afass-nav .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    margin: 0;
  }
  .afass-nav .nav-links.is-open { display: flex; }

  .afass-nav .nav-links > li > a {
    color: var(--dark-700) !important;
    background: none !important;
    padding: 11px 14px;
  }
  .afass-nav .nav-links > li > a:hover {
    background: var(--gray-100) !important;
    color: var(--primary) !important;
  }

  .afass-nav .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--primary-light);
    border-radius: 0;
    padding: 4px 0 4px 8px;
    background: transparent;
    pointer-events: auto;
    display: none;
    margin: 4px 0 4px 12px;
  }
  .afass-nav .has-dropdown.is-open .nav-dropdown { display: block; }

  .afass-nav .nav-dropdown li a {
    color: var(--dark-700);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
  }
  .afass-nav .nav-dropdown li a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }
}

/* =====================================================
   HERO
   ===================================================== */
.afass-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.afass-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sections/slider/slider46-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: .32;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.afass-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.88) 0%,
    rgba(67,56,202,.30) 60%,
    rgba(6,182,212,.15) 100%
  );
}

.afass-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.07) 1px, transparent 1px);
  background-size: 52px 52px;
}

.afass-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.afass-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 80px) 0 100px;
  width: 100%;
}

.afass-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a5b4fc;
  background: rgba(99,102,241,.13);
  border: 1px solid rgba(99,102,241,.28);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}

.afass-hero__title {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 800;
  color: white;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp .6s .08s ease both;
}

.afass-hero__title .gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.afass-hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeUp .6s .16s ease both;
}

.afass-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s .24s ease both;
}

.afass-hero__divider {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .6s .35s ease both;
}

.afass-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.afass-hero__stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.afass-hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.afass-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.35);
  animation: scrollBounce 2.5s ease infinite;
  font-size: 1.25rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   PRESIDENT SECTION
   ===================================================== */
.president-section {
  padding: 96px 0;
  background: white;
}

.president-img-frame {
  position: relative;
  display: inline-block;
}

.president-img-frame img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.president-img-frame::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.president-img-frame::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  border-radius: 50%;
  z-index: 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* =====================================================
   MISSION / VISION SECTION
   ===================================================== */
.mission-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(99,102,241,.14) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(6,182,212,.09) 0%, transparent 55%);
  pointer-events: none;
}

.mission-section .section-eyebrow { background: rgba(99,102,241,.15); }

.mission-section h2 { color: white; }

.mission-section > .container > .row > div > p {
  color: rgba(255,255,255,.6);
  max-width: 500px;
}

.mission-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
}

.mission-card:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(99,102,241,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.mission-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.mission-card h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.mission-card p {
  color: rgba(255,255,255,.58);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.75;
}

/* =====================================================
   CONFERENCE SECTION
   ===================================================== */
.conference-section { padding: 96px 0; }

.conference-card {
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.conference-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(99,102,241,.1);
}

.conference-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.conference-card__img {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.conference-card__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.conference-card__body h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 12px;
}

.conference-card__body p {
  color: var(--gray);
  margin-bottom: 24px;
}

.conference-card__meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.conference-card__meta strong { color: var(--dark-700); }

@media (max-width: 767px) {
  .conference-card { flex-direction: column; padding: 28px; gap: 28px; }
  .conference-card__img { width: 100%; }
  .conference-card__img img { height: 200px; }
}

/* =====================================================
   OBJECTIVES SECTION
   ===================================================== */
.objectives-section {
  padding: 96px 0;
  background: var(--gray-100);
}

.objective-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.objective-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -8px; right: 16px;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  letter-spacing: -.06em;
  pointer-events: none;
}

.objective-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(99,102,241,.12);
  transform: translateY(-4px);
}

.objective-card__icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1rem;
}

.objective-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-700);
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* =====================================================
   TEAM / EXECUTIVE SECTION
   ===================================================== */
.team-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.team-section h2 { color: white; }
.team-section .section-eyebrow { background: rgba(99,102,241,.15); }

.team-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  margin-bottom: 12px;
}

.team-card:last-child { margin-bottom: 0; }

.team-card:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(99,102,241,.35);
  transform: translateX(4px);
}

.team-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.team-name {
  font-weight: 600;
  color: white;
  font-size: .9rem;
  line-height: 1.3;
  margin-bottom: 2px;
}

.team-role {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  padding: calc(var(--nav-height) + 56px) 0 48px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  margin: 0;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(99,102,241,.12) 0%, transparent 55%),
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px) 0 0 / 48px 48px;
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1.title {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 0;
}

.breadcrumb-box {
  background: rgba(0,0,0,.18);
  padding: 12px 0;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent !important;
  margin: 0;
  padding: 0;
  border-radius: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.breadcrumb > li {
  display: inline;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.breadcrumb > li + li::before {
  content: '/';
  padding: 0 8px;
  color: rgba(255,255,255,.25);
}

.breadcrumb > li a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.breadcrumb > li a:hover { color: white; }
.breadcrumb > li.active { color: rgba(255,255,255,.88); }

/* =====================================================
   INNER PAGE SECTIONS
   ===================================================== */
.page-section { padding: 64px 0; }

.alert {
  border-radius: var(--radius);
  border: none;
  padding: 16px 20px;
  font-size: .9rem;
}

.alert-info {
  background: var(--primary-light);
  color: var(--primary-darker);
}

.alert-info a.btn {
  margin-left: 12px;
}

/* iframe PDF viewer */
iframe#pspdfkit {
  border: none;
  display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: var(--dark);
  color: white;
}

.footer-widget {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-widget h3.title {
  color: white;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .01em;
}

.footer-widget .widget-title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.footer-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-widget p {
  color: rgba(255,255,255,.52);
  font-size: .875rem;
  line-height: 1.75;
}

.footer-widget p strong {
  color: rgba(255,255,255,.75);
}

.copyright {
  padding: 20px 0;
}

.copyright-text {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  margin: 0;
}

.copyright-text a {
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.copyright-text a:hover { color: white; }

.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  font-size: .9rem;
}
.scroll-top-btn:hover {
  background: var(--primary);
  color: white;
}

/* =====================================================
   BOOTSTRAP 3 → 5 COMPATIBILITY
   ===================================================== */
/* Col-xs-* classes were removed in Bootstrap 5 */
.col-xs-12 { --bs-columns: 12; flex: 0 0 auto; width: 100%; }
.col-xs-6  { --bs-columns: 6;  flex: 0 0 auto; width: 50%; }
.col-xs-2  { --bs-columns: 2;  flex: 0 0 auto; width: 16.6666%; }

/* =====================================================
   RESPONSIVE HELPERS
   ===================================================== */
@media (max-width: 767px) {
  .afass-hero__stats { gap: 24px; }
  .afass-hero__actions { flex-direction: column; align-items: flex-start; }
  .afass-hero__title { letter-spacing: -.025em; }
  .president-section { padding: 64px 0; }
  .president-img-frame img { max-width: 100%; }
  .president-img-frame::before { display: none; }
  .mission-section,
  .objectives-section,
  .team-section,
  .conference-section { padding: 64px 0; }
}

@media (max-width: 575px) {
  .afass-hero__divider { margin-top: 40px; padding-top: 32px; }
  .mission-card { padding: 24px; }
  .objective-card { padding: 22px; }
}
