/* ============================================
   OSP Lahore Branch – Central Stylesheet
   All styles for every page in one file.
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0d4f8b;
  --primary-dark: #093a66;
  --primary-light: #1a73b5;
  --secondary: #2980b9;
  --accent: #3498db;
  --accent-light: #5dade2;
  --gold: #d4a843;
  --gold-dark: #b8912e;
  --light-blue: #eaf2f8;
  --lighter-blue: #f0f7fc;
  --white: #ffffff;
  --off-white: #f8fbfe;
  --gray-50: #f9fafb;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --text-dark: #1a2332;
  --text-body: #3a4a5c;
  --text-muted: #6b7c8f;
  --success: #27ae60;
  --danger: #e74c3c;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--off-white);
  -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;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hide component placeholders until loaded */
#siteHeader:empty,
#siteFooter:empty {
  min-height: 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
}

.top-bar-right a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ============================================
   MAIN HEADER / NAVBAR
   ============================================ */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(13,79,139,0.3);
}

.logo-text h1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-text span {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--light-blue);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.menu-toggle:hover {
  background: var(--light-blue);
}

/* ============================================
   SECONDARY NAVIGATION
   ============================================ */
.secondary-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 0;
  position: sticky;
  top: 86px;
  z-index: 999;
}

.secondary-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}

.secondary-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: var(--transition);
}

.secondary-nav a i {
  font-size: 12px;
  opacity: 0.7;
}

.secondary-nav a:hover,
.secondary-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-bottom-color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(52,152,219,0.3), transparent),
    radial-gradient(ellipse 400px 300px at 20% 70%, rgba(13,79,139,0.4), transparent);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  color: var(--gold);
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 20px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-stat {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}

.hero-stat .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-conference {
  background-color: #0d4f8b;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,79,139,0.3);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,79,139,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212,168,67,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 14.5px;
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--lighter-blue);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-blue);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-body {
  padding: 28px;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image .overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-image .overlay-badge .big {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.about-image .overlay-badge .small {
  font-size: 12px;
  color: var(--text-muted);
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 14px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--lighter-blue);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feature i {
  color: var(--primary);
  font-size: 14px;
}

/* ============================================
   OFFICE BEARERS
   ============================================ */
.bearers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.bearer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.bearer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.bearer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.bearer-card:hover::before {
  opacity: 1;
}

.bearer-img-wrapper {
  width: 110px;
  height: 110px;
  margin: 24px auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-blue);
  transition: var(--transition);
}

.bearer-card:hover .bearer-img-wrapper {
  border-color: var(--accent);
}

.bearer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bearer-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.bearer-card .designation {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 20px;
}

/* ============================================
   CONFERENCE BANNER (Two-Column Layout)
   ============================================ */
.conference-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary), var(--accent));
  border-radius: var(--radius-xl);
  padding: 50px;
  overflow: hidden;
  color: var(--white);
  width: 100%;
  max-width: 100%;
}

.conference-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 90% 20%, rgba(212,168,67,0.2), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(52,152,219,0.2), transparent);
  pointer-events: none;
}

.conference-banner > * {
  position: relative;
  z-index: 2;
}

/* Two-column grid */
.conf-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  width: 100%;
}

/* Left: text */
.conf-text {
  min-width: 0;
}

.conf-text .conf-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,0.2);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(212,168,67,0.3);
}

.conf-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.conf-text .conf-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}

.conf-text .conf-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.conf-text .conf-detail i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

/* Right: image */
.conf-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

.conf-image-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border: 4px solid rgba(255,255,255,0.2);
  transition: transform 0.4s ease;
}

.conf-image-frame:hover {
  transform: translateY(-4px);
}

.conf-image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Floating decorations */
.conf-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.conf-float-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  top: -25px;
  right: -25px;
}

.conf-float-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  bottom: -15px;
  left: -15px;
}

/* --- Conference Banner Responsive --- */

@media (max-width: 1024px) {
  .conference-banner {
    padding: 40px;
  }

  .conf-content-wrapper {
    gap: 32px;
  }

  .conf-image-frame img {
    height: 270px;
  }

  .conf-text h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .conference-banner {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .conf-content-wrapper {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* Image on top */
  .conf-image {
    order: -1;
    overflow: hidden;
    border-radius: var(--radius-md);
  }

  .conf-image-frame {
    border-width: 3px;
    border-radius: var(--radius-md);
  }

  .conf-image-frame img {
    height: 200px;
  }

  /* Hide floating decorations */
  .conf-float {
    display: none;
  }

  .conf-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .conf-text .conf-label {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 12px;
  }

  .conf-text .conf-details {
    gap: 8px;
    margin: 16px 0 22px;
  }

  .conf-text .conf-detail {
    font-size: 13px;
  }

  .conf-text .btn {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .conference-banner {
    padding: 22px 16px;
  }

  .conf-content-wrapper {
    gap: 18px;
  }

  .conf-image-frame {
    border-width: 2px;
    border-radius: var(--radius-sm);
  }

  .conf-image-frame img {
    height: 170px;
  }

  .conf-text h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .conf-text .conf-label {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .conf-text .conf-detail {
    font-size: 12.5px;
    gap: 6px;
  }

  .conf-text .conf-detail i {
    font-size: 11px;
    width: 14px;
  }

  .conf-text .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .conference-banner {
    padding: 18px 14px;
  }

  .conf-image-frame img {
    height: 145px;
  }

  .conf-text h2 {
    font-size: 1.15rem;
  }
}

/* ============================================
   PRESIDENT'S MESSAGE
   ============================================ */
.message-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}

.message-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 160px;
}

.message-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.message-image .caption {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.message-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.message-content .quote-icon {
  font-size: 36px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 10px;
}

.message-content h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.message-content p {
  color: var(--text-body);
  line-height: 1.85;
  font-size: 14.5px;
}

.message-signature {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.message-signature .name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.message-signature .role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}


/* ============================================
   NEWS & EVENTS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card-body {
  padding: 24px;
}

.news-card .date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  background: var(--light-blue);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.news-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.news-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card .read-more:hover {
  gap: 10px;
  color: var(--primary-light);
}

/* ============================================
   PAGE BANNER / BREADCRUMB
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.data-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-body);
}

.data-table tbody tr {
  transition: var(--transition);
}

.data-table tbody tr:hover {
  background: var(--lighter-blue);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--light-blue);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
}

.data-table .link-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   MEMBERS PAGE
   ============================================ */
.members-intro {
  max-width: 800px;
  margin: 0 auto 10px;
  text-align: center;
}

.members-intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.members-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.member-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.member-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.member-stat-card .stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.member-stat-card .stat-icon.life { background: #fef3c7; color: #d97706; }
.member-stat-card .stat-icon.ordinary { background: #dbeafe; color: #2563eb; }
.member-stat-card .stat-icon.associate { background: #d1fae5; color: #059669; }
.member-stat-card .stat-icon.honorary { background: #ede9fe; color: #7c3aed; }
.member-stat-card .stat-icon.overseas { background: #fce7f3; color: #db2777; }

.member-stat-card .stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.member-stat-card .stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.membership-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.membership-info h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.membership-info h3 i { color: var(--primary); }

.membership-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.membership-type {
  padding: 20px;
  background: var(--lighter-blue);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.membership-type h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--primary);
}

.membership-type p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto 30px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.search-bar input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
}

.search-bar i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 15px;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  display: none;
}

.no-results i {
  font-size: 40px;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.member-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.member-section:hover {
  box-shadow: var(--shadow-md);
}

.member-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--lighter-blue);
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.member-section-header:hover {
  background: var(--light-blue);
}

.member-section-header h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin: 0;
}

.member-section-header h3 .section-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.member-section-header h3 .section-icon.life { background: #fef3c7; color: #d97706; }
.member-section-header h3 .section-icon.ordinary { background: #dbeafe; color: #2563eb; }
.member-section-header h3 .section-icon.associate { background: #d1fae5; color: #059669; }
.member-section-header h3 .section-icon.honorary { background: #ede9fe; color: #7c3aed; }
.member-section-header h3 .section-icon.overseas { background: #fce7f3; color: #db2777; }

.member-section-header .header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.member-section-header .count {
  background: var(--primary);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.member-section-header .toggle-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  font-size: 13px;
}

.member-section.open .toggle-icon {
  transform: rotate(180deg);
}

.member-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-section.open .member-section-body {
  max-height: 3000px;
}

.member-section-body-inner {
  padding: 24px 28px;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 8px;
}

.member-list li {
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.member-list li:hover {
  background: var(--light-blue);
  border-color: rgba(52,152,219,0.15);
}

.member-list li .member-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  text-transform: uppercase;
}

.member-list li .member-avatar.gold { background: linear-gradient(135deg, #d97706, #f59e0b); }
.member-list li .member-avatar.green { background: linear-gradient(135deg, #059669, #10b981); }
.member-list li .member-avatar.purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.member-list li .member-avatar.pink { background: linear-gradient(135deg, #db2777, #ec4899); }

.member-list li .member-location {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
}

.member-section-body .download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.member-section-body .download-row p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   MONTHLY MEETINGS PAGE
   ============================================ */
.meetings-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.meetings-intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.meetings-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.meeting-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.meeting-feature i {
  color: var(--primary);
  font-size: 16px;
}

.year-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.year-filter .filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.year-filter .filter-btn:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.year-filter .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(13,79,139,0.25);
}

.meeting-topic {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 13.5px;
  display: block;
  margin-bottom: 3px;
}

.meeting-speaker {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}

.meeting-date-cell {
  white-space: nowrap;
  font-weight: 500;
  color: var(--text-dark);
}

.meeting-date-cell .day {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.meeting-venue {
  font-size: 13px;
  color: var(--text-body);
}

.recording-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.recording-btn:hover {
  background: #dc2626;
  color: var(--white);
  transform: translateY(-1px);
}

.recording-btn.unavailable {
  background: var(--gray-50);
  color: var(--gray-400);
  cursor: default;
}

.recording-btn.unavailable:hover {
  background: var(--gray-50);
  color: var(--gray-400);
  transform: none;
}

.upcoming-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.meetings-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.summary-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.summary-card .summary-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.summary-card .summary-icon.blue { background: #dbeafe; color: #2563eb; }
.summary-card .summary-icon.red { background: #fef2f2; color: #dc2626; }
.summary-card .summary-icon.green { background: #d1fae5; color: #059669; }

.summary-card .summary-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.summary-card .summary-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   EXECUTIVE MEETINGS PAGE
   ============================================ */
.exec-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.exec-intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.exec-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.exec-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.exec-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.exec-info-card .exec-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.exec-info-card .exec-icon.blue { background: #dbeafe; color: #2563eb; }
.exec-info-card .exec-icon.amber { background: #fef3c7; color: #d97706; }
.exec-info-card .exec-icon.green { background: #d1fae5; color: #059669; }

.exec-info-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.exec-info-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.exec-table-section {
  margin-bottom: 30px;
}

.exec-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.exec-table-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.exec-table-header h3 i {
  color: var(--primary);
}

.exec-table-header .meeting-count {
  background: var(--light-blue);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.exec-date-cell {
  white-space: nowrap;
}

.exec-date-cell .date-main {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  display: block;
}

.exec-date-cell .date-time {
  font-size: 12px;
  color: var(--text-muted);
}

.exec-venue {
  font-size: 14px;
  color: var(--text-body);
}

.exec-agenda {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
}

.exec-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}

.exec-status.completed {
  background: #d1fae5;
  color: #059669;
}

.exec-status.scheduled {
  background: #dbeafe;
  color: #1d4ed8;
}

.minutes-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--light-blue);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.minutes-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.minutes-btn.unavailable {
  background: var(--gray-50);
  color: var(--gray-400);
  cursor: default;
}

.minutes-btn.unavailable:hover {
  background: var(--gray-50);
  color: var(--gray-400);
  transform: none;
}

.attendees-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-top: 40px;
}

.attendees-section h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.attendees-section h3 i { color: var(--primary); }

.attendees-section > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.attendees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.attendee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--lighter-blue);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.attendee-item:hover {
  background: var(--light-blue);
}

.attendee-item .att-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.attendee-item .att-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.attendee-item .att-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.contact-info-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ============================================
   PUBLICATIONS PAGE
   ============================================ */
.pub-committee {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 30px;
}

.pub-committee h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pub-committee h3 i {
  color: var(--primary);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.committee-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--lighter-blue);
  border-radius: var(--radius-sm);
}

.committee-member .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.committee-member .info .name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.committee-member .info .role {
  font-size: 12px;
  color: var(--text-muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* ============================================
   PDF / DOWNLOAD SECTION
   ============================================ */
.pdf-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pdf-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--light-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
}

.pdf-section h3 {
  margin-bottom: 10px;
}

.pdf-section p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

/* ============================================
   CONFERENCE ARCHIVE
   ============================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.archive-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.archive-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 22px 24px;
  color: var(--white);
}

.archive-card-header .year {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}

.archive-card-header h4 {
  color: var(--white);
  font-size: 16px;
}

.archive-card-body {
  padding: 22px 24px;
}

.archive-card-body .detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-100);
}

.archive-card-body .detail-row:last-of-type {
  border-bottom: none;
}

.archive-card-body .detail-row i {
  color: var(--primary);
  width: 18px;
  text-align: center;
  font-size: 13px;
}

.archive-card-body .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-about .footer-logo .logo-icon {
  width: 44px;
  height: 44px;
  font-size: 20px;
  border-radius: 12px;
}

.footer-about .footer-logo h4 {
  color: var(--white);
  font-size: 15px;
}

.footer-about p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col ul li a i {
  font-size: 10px;
  opacity: 0.5;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-image-wrapper { width: 280px; height: 280px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { bottom: -10px; }
  .bearers-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .message-grid { grid-template-columns: 1fr; }
  .message-image { position: static; }
  .message-image img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
 
  .contact-grid { grid-template-columns: 1fr; }
  .members-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 50px 0; }
  .top-bar { display: none; }
  .header-inner { padding: 12px 0; }

  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 80px 24px 30px;
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display: block; padding: 12px 16px; font-size: 14px; border-radius: var(--radius-sm); }

  .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--light-blue);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    cursor: pointer;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
  }
  .nav-overlay.open { display: block; }

  .secondary-nav { top: 64px; }
  .secondary-nav a { padding: 9px 14px; font-size: 11.5px; }

  .hero { min-height: auto; padding: 40px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-image-wrapper { width: 200px; height: 200px; }
  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    justify-content: center;
  }
  .hero-stat { padding: 12px 16px; min-width: 100px; }
  .hero-stat .number { font-size: 1.2rem; }

  .bearers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .message-content { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .archive-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 40px 0 30px; }
  .page-banner h1 { font-size: 1.8rem; }
  .data-table th, .data-table td { padding: 10px 14px; font-size: 13px; }

  .member-list { grid-template-columns: 1fr; }
  .member-section-header { padding: 16px 20px; }
  .member-section-header h3 { font-size: 14px; gap: 8px; }
  .member-section-header h3 .section-icon { width: 32px; height: 32px; font-size: 14px; }
  .member-section-body-inner { padding: 18px 20px; }
  .membership-types { grid-template-columns: 1fr; }
  .member-section-body .download-row { flex-direction: column; gap: 10px; align-items: flex-start; }

  .meetings-features { gap: 10px; }
  .meeting-feature { padding: 10px 14px; font-size: 12.5px; }
  .meetings-summary { grid-template-columns: 1fr; }
  .recording-btn { padding: 6px 10px; font-size: 11px; }

  .exec-info-cards { grid-template-columns: 1fr; }
  .exec-table-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .attendees-grid { grid-template-columns: 1fr; }

  .journal-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.6rem; }
  .bearers-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .conference-banner { padding: 28px 20px; }
  .conference-banner h2 { font-size: 1.4rem; }
  .conference-banner .conf-details { flex-direction: column; gap: 10px; align-items: flex-start; }
  .contact-form { padding: 24px; }
  .member-list { grid-template-columns: 1fr; }
  .pub-committee { padding: 24px; }
  .committee-grid { grid-template-columns: 1fr; }
  .members-stats { grid-template-columns: repeat(2, 1fr); }
  .member-stat-card { padding: 16px 10px; }
  .member-stat-card .stat-number { font-size: 1.3rem; }
  .year-filter .filter-btn { padding: 6px 14px; font-size: 12px; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .main-header,
  .secondary-nav,
  .top-bar,
  .back-to-top,
  .main-footer {
    display: none !important;
  }
  body { background: white; color: black; }
  .section { padding: 20px 0; }
}


/* ============================================
   NEWS & EVENTS – TEXT-BASED CARDS
   ============================================ */
.news-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-text-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-text-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Top row: date + tags */
.news-text-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  gap: 12px;
}

.news-text-date {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.news-text-day {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.news-text-month {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-text-year {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.news-text-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Category tags */
.news-text-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.news-text-tag i {
  font-size: 10px;
}

.news-text-tag.tag-conference {
  background: #dbeafe;
  color: #1d4ed8;
}

.news-text-tag.tag-workshop {
  background: #d1fae5;
  color: #059669;
}

.news-text-tag.tag-award {
  background: #fef3c7;
  color: #b45309;
}

.news-text-tag.tag-cme {
  background: #ede9fe;
  color: #6d28d9;
}

.news-text-tag.tag-membership {
  background: #fce7f3;
  color: #be185d;
}

.news-text-tag.tag-publication {
  background: #e0e7ff;
  color: #4338ca;
}

/* "New" badge */
.news-text-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-text-badge.new {
  background: #fef2f2;
  color: #dc2626;
  animation: pulse-badge 2s ease-in-out infinite;
}

.news-text-badge.new i {
  font-size: 8px;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Body */
.news-text-card-body {
  padding: 16px 24px 0;
  flex-grow: 1;
}

.news-text-card-body h4 {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-dark);
  transition: var(--transition);
}

.news-text-card:hover .news-text-card-body h4 {
  color: var(--primary);
}

.news-text-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.65;
  /* Clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer */
.news-text-card-footer {
  padding: 16px 24px 20px;
}

.news-text-card-footer .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-text-card-footer .read-more:hover {
  gap: 10px;
  color: var(--primary-light);
}

/* Left accent border on hover */
.news-text-card {
  border-left: 3px solid transparent;
}

.news-text-card:hover {
  border-left-color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .news-text-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-text-grid {
    grid-template-columns: 1fr;
  }

  .news-text-card-top {
    padding: 18px 20px 0;
  }

  .news-text-card-body {
    padding: 14px 20px 0;
  }

  .news-text-card-footer {
    padding: 14px 20px 18px;
  }

  .news-text-day {
    font-size: 1.3rem;
  }
}

/* ============================================
   Conference Banner — Two-Column Layout
   ============================================ */

.conf-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 50px;
  align-items: center;
}

.conf-text {
  position: relative;
  z-index: 2;
}

/* --- Right Image Container --- */
.conf-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conf-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.conf-image-frame:hover {
  transform: translateY(-6px) scale(1.01);
}

.conf-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* --- Badge overlay on image --- */
.conf-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.4);
  backdrop-filter: blur(6px);
}

.conf-image-badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.conf-image-badge-number sup {
  font-size: 0.9rem;
  font-weight: 500;
}

.conf-image-badge-text {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}

/* --- Decorative floating shapes --- */
.conf-float {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.conf-float-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  opacity: 0.12;
  top: -30px;
  right: -30px;
  animation: confFloat 6s ease-in-out infinite;
}

.conf-float-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent), #00838f);
  opacity: 0.1;
  bottom: -20px;
  left: -20px;
  animation: confFloat 8s ease-in-out infinite reverse;
}

@keyframes confFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .conf-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conf-image {
    order: -1; /* Image first on mobile */
  }

  .conf-image-frame img {
    height: 240px;
  }

  .conf-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 10px 16px;
  }

  .conf-image-badge-number {
    font-size: 1.5rem;
  }

  .conf-float-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -15px;
  }

  .conf-float-2 {
    width: 70px;
    height: 70px;
    bottom: -10px;
    left: -10px;
  }
}

@media (max-width: 480px) {
  .conf-image-frame img {
    height: 200px;
  }

  .conf-image-frame {
    border-width: 3px;
  }
}

/* ============================================
   Conference Banner — Complete Styles
   (Replace any existing .conference-banner,
   .conf-content-wrapper, .conf-image rules)
   ============================================ */

/* --- Reset / Base --- */


.conf-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 600px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

/* --- Left Text --- */
.conf-text {
  min-width: 0;
}

.conf-text .conf-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.conf-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px 0;
  line-height: 1.25;
}

.conf-text .conf-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.conf-text .conf-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.conf-text .conf-detail i {
  width: 18px;
  text-align: center;
  color: var(--accent, #00acc1);
}

/* --- Right Image --- */
.conf-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  min-width: 0;
}

.conf-image-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.4s ease;
}

.conf-image-frame:hover {
  transform: translateY(-4px);
}

.conf-image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* --- Floating decorations --- */
.conf-float {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.conf-float-1 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #42a5f5, #00acc1);
  opacity: 0.12;
  top: -25px;
  right: -25px;
}

.conf-float-2 {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00acc1, #00838f);
  opacity: 0.1;
  bottom: -15px;
  left: -15px;
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .conf-content-wrapper {
    gap: 36px;
  }

  .conf-image-frame img {
    height: 300px;
  }

  .conf-text h2 {
    font-size: 1.75rem;
  }
}

/* ============================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  
}

/* ============================================
   Hero Section — Complete Styles
   ============================================ */

.hero {
  position: relative;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #00838f 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Background pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
}

/* --- Left: Text Content --- */
.hero-content {
  min-width: 0;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.hero-content h1 .highlight {
  color: #4dd0e1;
  position: relative;
}

.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(77, 208, 225, 0.4);
  border-radius: 2px;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin: 0 0 30px 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Right: Image + Stats --- */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.2);
  line-height: 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Stats row under image */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-stat .number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4dd0e1;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}


/* ============================================
   RESPONSIVE — Laptop (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .hero .container {
    gap: 36px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image-wrapper img {
    height: 300px;
  }
}


/* ============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 0 50px;
    min-height: auto;
  }

  .hero .container {
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .hero-image-wrapper img {
    height: 260px;
  }

  .hero-stat .number {
    font-size: 1.35rem;
  }
}


/* ============================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Image on top */
  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    border-width: 3px;
    border-radius: 14px;
  }

  .hero-image-wrapper img {
    height: 220px;
  }

  /* Stats compact */
  .hero-stats {
    gap: 10px;
  }

  .hero-stat {
    padding: 12px 8px;
    border-radius: 10px;
  }

  .hero-stat .number {
    font-size: 1.2rem;
  }

  .hero-stat .label {
    font-size: 0.65rem;
  }

  /* Text adjustments */
  .hero-content h1 {
    font-size: 1.65rem;
    margin-bottom: 16px;
    text-align: center;
  }

  .hero-content p {
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.75;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }
}


/* ============================================
   RESPONSIVE — Small Phone (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero {
    padding: 40px 0 30px;
  }

  .hero .container {
    gap: 22px;
  }

  .hero-image-wrapper {
    border-width: 2px;
    border-radius: 12px;
  }

  .hero-image-wrapper img {
    height: 180px;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stat {
    padding: 10px 6px;
    border-radius: 8px;
  }

  .hero-stat .number {
    font-size: 1.1rem;
  }

  .hero-stat .label {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.84rem;
    margin-bottom: 20px;
  }

  /* Buttons stack & go full width */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
  }
}


/* ============================================
   RESPONSIVE — Very Small (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
  .hero {
    padding: 30px 0 24px;
  }

  .hero-image-wrapper img {
    height: 150px;
  }

  .hero-stat .number {
    font-size: 1rem;
  }

  .hero-stat .label {
    font-size: 0.55rem;
  }

  .hero-content h1 {
    font-size: 1.25rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }
}



/* ============================================
   CONFERENCE BANNER — FORCE OVERRIDE
   Paste at the VERY BOTTOM of style.css
   ============================================ */

.conference-banner {
  position: relative !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary), var(--accent)) !important;
  border-radius: var(--radius-xl) !important;
  padding: 50px !important;
  overflow: hidden !important;
  color: var(--white) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.conference-banner::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 500px 300px at 90% 20%, rgba(212,168,67,0.2), transparent),
              radial-gradient(ellipse 400px 400px at 10% 80%, rgba(52,152,219,0.2), transparent) !important;
  pointer-events: none !important;
}

.conference-banner > * {
  position: relative !important;
  z-index: 2 !important;
}

/* ---- Two Column Grid ---- */
.conf-content-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 44px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* ---- Left Text ---- */
.conf-text {
  min-width: 0 !important;
  max-width: 100% !important;
}

.conf-text .conf-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(212,168,67,0.2) !important;
  color: var(--gold) !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 16px !important;
  border: 1px solid rgba(212,168,67,0.3) !important;
}

.conf-text h2 {
  color: var(--white) !important;
  font-size: 2rem !important;
  margin-bottom: 12px !important;
  line-height: 1.25 !important;
}

.conf-text .conf-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 20px 0 28px !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
}

.conf-text .conf-detail {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.85) !important;
}

.conf-text .conf-detail i {
  color: var(--gold) !important;
  width: 16px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}

/* ---- Right Image ---- */
.conf-image {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.conf-image-frame {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
  border: 4px solid rgba(255,255,255,0.2) !important;
  transition: transform 0.4s ease !important;
  box-sizing: border-box !important;
}

.conf-image-frame:hover {
  transform: translateY(-4px) !important;
}

.conf-image-frame img {
  width: 100% !important;
  height: 665px !important;
  object-fit: cover !important;
  display: block !important;
  max-width: 100% !important;
}

/* ---- Floating Decorations ---- */
.conf-float {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.conf-float-1 {
  width: 150px !important;
  height: 150px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)) !important;
  top: -25px !important;
  right: -25px !important;
}

.conf-float-2 {
  width: 80px !important;
  height: 80px !important;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05)) !important;
  bottom: -15px !important;
  left: -15px !important;
}

/* ============================================
   CONFERENCE BANNER — RESPONSIVE OVERRIDE
   ============================================ */

@media (max-width: 1024px) {
  .conference-banner {
    padding: 40px !important;
  }

  .conf-content-wrapper {
    gap: 32px !important;
  }

  .conf-image-frame img {
    height: 270px !important;
  }

  .conf-text h2 {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 768px) {
  .conference-banner {
    padding: 28px 20px !important;
    border-radius: var(--radius-lg) !important;
  }

  .conf-content-wrapper {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .conf-image {
    order: -1 !important;
    overflow: hidden !important;
    border-radius: var(--radius-md) !important;
  }

  .conf-image-frame {
    border-width: 3px !important;
    border-radius: var(--radius-md) !important;
  }

  .conf-image-frame img {
    height: 200px !important;
  }

  .conf-float {
    display: none !important;
  }

  .conf-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .conf-text .conf-label {
    font-size: 11px !important;
    padding: 5px 14px !important;
    margin-bottom: 12px !important;
  }

  .conf-text .conf-details {
    gap: 8px !important;
    margin: 16px 0 22px !important;
  }

  .conf-text .conf-detail {
    font-size: 13px !important;
  }

  .conf-text .btn {
    display: inline-flex !important;
  }
}

@media (max-width: 480px) {
  .conference-banner {
    padding: 22px 16px !important;
  }

  .conf-content-wrapper {
    gap: 18px !important;
  }

  .conf-image-frame {
    border-width: 2px !important;
    border-radius: var(--radius-sm) !important;
  }

  .conf-image-frame img {
    height: 170px !important;
  }

  .conf-text h2 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }

  .conf-text .conf-label {
    font-size: 10px !important;
    padding: 4px 12px !important;
    margin-bottom: 10px !important;
  }

  .conf-text .conf-detail {
    font-size: 12.5px !important;
    gap: 6px !important;
  }

  .conf-text .conf-detail i {
    font-size: 11px !important;
    width: 14px !important;
  }

  .conf-text .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 360px) {
  .conference-banner {
    padding: 18px 14px !important;
  }

  .conf-image-frame img {
    height: 145px !important;
  }

  .conf-text h2 {
    font-size: 1.15rem !important;
  }
}