/* ==========================================================================
   PPIA Corporate Website Stylesheet
   Design Theme: Corporate Minimal, Premium, Pharmaceutical, Trade Association
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
  --primary-blue: #2346D4;
  --royal-blue: #3B82F6;
  --light-blue: #60A5FA;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F5F7FA;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --border-color: #E2E8F0;
  
  /* Glow & Gradients */
  --glow-shadow: 0 20px 40px -15px rgba(35, 70, 212, 0.25);
  --soft-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --premium-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --blue-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
  --glow-gradient: radial-gradient(circle at center, rgba(96, 165, 250, 0.15) 0%, rgba(35, 70, 212, 0) 70%);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   2. UI Elements & Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(35, 70, 212, 0.4);
}

.btn-primary:hover {
  background-color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 70, 212, 0.5);
}

.btn-secondary {
  background-color: var(--bg-light-gray);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
}

.btn-secondary-small {
  padding: 8px 16px;
  font-size: 0.85rem;
  background-color: var(--bg-light-gray);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary-small:hover {
  background-color: var(--border-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-download {
  width: 100%;
  background-color: var(--bg-light-gray);
  color: var(--primary-blue);
  border: 1px solid rgba(35, 70, 212, 0.2);
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-download:hover {
  background: var(--blue-gradient);
  color: var(--bg-white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(35, 70, 212, 0.2);
}

.btn-header-cta {
  background: var(--blue-gradient);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(35, 70, 212, 0.2);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(35, 70, 212, 0.3);
}

/* Scroll Fade-Up Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sections Header Utility */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--royal-blue);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  color: var(--text-dark);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--blue-gradient);
  margin: 16px auto 0;
  border-radius: 2px;
}

.title-underline.left-align {
  margin-left: 0;
  margin-right: auto;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 20px auto 0;
}

/* ==========================================================================
   3. TOP BRANDING BAR
   ========================================================================== */
.top-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-logo-img {
  max-height: 84px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  position: relative;
  box-shadow: 0 4px 10px rgba(35, 70, 212, 0.3);
}

.logo-icon .globe-overlay {
  position: absolute;
  font-size: 0.75rem;
  bottom: 6px;
  right: 6px;
  background: var(--bg-white);
  color: var(--primary-blue);
  border-radius: 50%;
  padding: 1px;
  border: 1px solid var(--primary-blue);
}

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

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--primary-blue);
}

.logo-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==========================================================================
   4. SECTION 1 — HERO SLIDER
   ========================================================================== */
.hero-slider {
  height: 720px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #0b1120; /* Dark background to handle loads */
}

.slides-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 12s ease-out;
}

/* Smooth zoom when slide becomes active */
.slide.active .slide-bg {
  transform: scale(1.1);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(35, 70, 212, 0.4) 100%);
  z-index: -1;
}

.slide-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  color: var(--text-light);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease-out;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: float 4s ease-in-out infinite;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slide-content p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Floating Elements Parallax Effect */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Slider Controls Styles */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-light);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary-blue);
  border-color: transparent;
  color: var(--bg-white);
  box-shadow: 0 0 20px rgba(35, 70, 212, 0.5);
}

.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-blue);
  width: 28px;
  border-radius: 20px;
}

/* ==========================================================================
   5. SECTION 2 — QUICK LINKS (Primary Navigation)
   ========================================================================== */
.quick-links-section {
  padding: 100px 0;
  background-color: var(--bg-light-gray);
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--border-color);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.quick-link-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px 24px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-link-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--glow-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
  pointer-events: none;
}

.quick-link-card .card-border-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
  z-index: 2;
}

.quick-link-card .card-icon {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-normal);
}

.quick-link-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.quick-link-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.quick-link-card .card-footer-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: color var(--transition-fast);
}

.quick-link-card .card-footer-action i {
  transition: transform var(--transition-fast);
}

/* Hover effects */
.quick-link-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: var(--glow-shadow);
  border-color: rgba(35, 70, 212, 0.2);
}

.quick-link-card:hover .card-glow {
  opacity: 1;
}

.quick-link-card:hover .card-border-highlight {
  transform: scaleX(1);
}

.quick-link-card:hover .card-icon {
  transform: scale(1.1) translateY(-2px);
}

.quick-link-card:hover .card-footer-action {
  color: var(--royal-blue);
}

.quick-link-card:hover .card-footer-action i {
  transform: translateX(4px);
}

/* ==========================================================================
   6. SECTION 3 — WELCOME MESSAGE
   ========================================================================== */
.welcome-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.welcome-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
}

.welcome-content {
  display: flex;
  flex-direction: column;
}

.welcome-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.25;
}

.welcome-intro-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}

.dgto-badge-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--bg-light-gray);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 12px 12px 0;
  align-items: center;
}

.dgto-icon {
  font-size: 2rem;
  color: var(--primary-blue);
}

.dgto-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.dgto-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.welcome-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 40px;
}

.feature-grid-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-wrapper-small {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text-small {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-text-small strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Illustration Image styling */
.welcome-illustration {
  position: relative;
  height: 100%;
}

.illustration-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  padding: 15px;
  background: linear-gradient(135deg, rgba(35, 70, 212, 0.03) 0%, rgba(96, 165, 250, 0.08) 100%);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
}

.lab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--premium-shadow);
  flex-grow: 1;
}

.illustration-accent-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  animation: float 5s ease-in-out infinite;
}

.illustration-accent-card i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.illustration-accent-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.illustration-accent-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   7. SECTION 4 — ABOUT PPIA (Mission, Vision, Objectives)
   ========================================================================== */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: var(--bg-light-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/* Particles Canvas Background */
#pillars-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.about-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--soft-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--premium-shadow);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 28px;
  box-shadow: 0 6px 15px rgba(35, 70, 212, 0.2);
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.objectives-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.objectives-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-blue);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
}

/* ==========================================================================
   8. SECTION 5 — EXECUTIVE COMMITTEE
   ========================================================================== */
.executive-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.executive-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.executive-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--premium-shadow);
}

.executive-img-wrapper {
  height: 220px;
  background: linear-gradient(135deg, rgba(35, 70, 212, 0.05) 0%, rgba(96, 165, 250, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.executive-avatar-placeholder {
  font-size: 5rem;
  color: rgba(35, 70, 212, 0.25);
}

.executive-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.executive-info {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.executive-info h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.executive-info .designation {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.executive-info .company {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
}

.executive-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.executive-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-light-gray);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.executive-socials a:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

/* ==========================================================================
   9. SECTION 6 — GENERAL BODY MEMBERS DIRECTORY
   ========================================================================== */
.members-section {
  padding: 100px 0;
  background-color: var(--bg-light-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.directory-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.search-box-wrapper {
  flex-grow: 1;
  position: relative;
  min-width: 280px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-white);
  box-shadow: var(--soft-shadow);
  transition: var(--transition-fast);
}

.search-box-wrapper input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(35, 70, 212, 0.15);
}

.filter-box-wrapper {
  position: relative;
  min-width: 180px;
}

.filter-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.filter-box-wrapper select {
  width: 100%;
  padding: 14px 36px 14px 38px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-white);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition-fast);
}

.filter-box-wrapper select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.filter-box-wrapper::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.directory-container {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.members-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.members-table th {
  background-color: #0f172a;
  color: var(--text-light);
  padding: 18px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.members-table th i {
  margin-right: 6px;
  color: var(--light-blue);
}

.members-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.members-table tbody tr {
  transition: var(--transition-fast);
}

.members-table tbody tr:last-child td {
  border-bottom: none;
}

.members-table tbody tr:hover {
  background-color: rgba(35, 70, 212, 0.02);
}

.member-class-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.member-class-badge.corporate {
  background-color: rgba(35, 70, 212, 0.1);
  color: var(--primary-blue);
}

.member-class-badge.associate {
  background-color: rgba(96, 165, 250, 0.15);
  color: #1e3a8a;
}

.no-results {
  padding: 60px;
  text-align: center;
  color: var(--text-muted);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--border-color);
}

.directory-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

#directory-stats {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   10. SECTION 7 — EVENTS & ELECTIONS TIMELINE
   ========================================================================== */
.events-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  position: relative;
}

/* Vertical Timeline Line */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
  z-index: 1;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  z-index: 2;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

/* Timeline dots */
.timeline-dot {
  position: absolute;
  width: 44px;
  height: 44px;
  right: -22px;
  top: 15px;
  background: var(--blue-gradient);
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.1rem;
  box-shadow: 0 0 0 5px var(--bg-white), 0 4px 12px rgba(35, 70, 212, 0.3);
}

.timeline-item.right .timeline-dot {
  left: -22px;
}

/* Cards of content */
.timeline-content {
  padding: 24px 30px;
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  position: relative;
  box-shadow: var(--soft-shadow);
  transition: transform var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.timeline-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.timeline-badge.election {
  background-color: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.timeline-badge.polling {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.timeline-badge.event {
  background-color: rgba(35, 70, 212, 0.08);
  color: var(--primary-blue);
}

.timeline-badge.meeting {
  background-color: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

/* ==========================================================================
   11. SECTION 8 — DOWNLOAD CENTER
   ========================================================================== */
.download-section {
  padding: 100px 0;
  background-color: var(--bg-light-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.download-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--soft-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.download-card-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.file-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.file-icon.pdf {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.file-icon.xls {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.file-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.file-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   12. SECTION 9 — CONTACT US & GOOGLE MAPS
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(35, 70, 212, 0.08);
  border-radius: 12px;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.info-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-text .phone-link {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 6px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--soft-shadow);
}

/* Contact Form Panel styling */
.contact-form-panel {
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--premium-shadow);
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-white);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(35, 70, 212, 0.15);
}

.form-group .error-msg {
  display: none;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
  font-weight: 500;
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.02);
}

.form-group.invalid .error-msg {
  display: block;
}

.btn-submit-form {
  width: 100%;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
}

.btn-submit-form:hover {
  background-color: var(--royal-blue);
}

/* Success notification message state */
.form-notification {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-notification.active {
  display: flex;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.corporate-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 4px solid var(--primary-blue);
}

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

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--royal-blue);
}

.logo-area.light .logo-title {
  color: var(--bg-white);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-socials a:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

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

.footer-links li a {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: var(--light-blue);
  padding-left: 4px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-details li {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
}

.footer-contact-details li i {
  color: var(--royal-blue);
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.dgto-licence {
  color: var(--royal-blue);
  font-weight: 600;
}

.powered-by {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 400;
}

.powered-by a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
}

.powered-by a:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

/* ==========================================================================
   14. DYNAMIC MODAL OVERLAYS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--bg-white);
  border-radius: 20px;
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  z-index: 10;
}

.modal-header h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-header h2 i {
  color: var(--primary-blue);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary-blue);
}

.modal-body {
  padding: 30px;
}

.modal-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-actions {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Modals Inner Components */

/* Plan of Activities Schedule Styles */
.activities-schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-row {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.activity-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.activity-period {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue);
  width: 140px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.activity-details h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.activity-details p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Performance metrics inside modal */
.performance-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.metric-card {
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.metric-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

.performance-charts h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.svg-chart-container {
  width: 100%;
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
}

.performance-svg-chart {
  width: 100%;
  height: auto;
}

.chart-axis-text {
  font-size: 8px;
  fill: var(--text-muted);
  text-anchor: end;
  font-family: 'Inter', sans-serif;
}

.chart-label-text {
  font-size: 9px;
  fill: var(--text-dark);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.chart-val-text {
  font-size: 9px;
  fill: var(--primary-blue);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.chart-bar {
  transition: height 1s ease-out, y 1s ease-out;
}

/* Charter styles in modal */
.charter-sections-viewer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.charter-section-block {
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.charter-section-block h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.charter-section-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Election schedule table in modal */
.modal-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.modal-schedule-table th {
  text-align: left;
  background-color: var(--bg-light-gray);
  color: var(--text-dark);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
}

.modal-schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-schedule-table tr:hover td {
  background-color: rgba(35, 70, 212, 0.02);
  color: var(--text-dark);
}

/* ==========================================================================
   15. RESPONSIVE MEDIA BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Devices (Max Width: 1024px) */
@media (max-width: 1024px) {
  .hero-slider {
    height: 600px;
  }
  
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .welcome-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .welcome-illustration {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .illustration-accent-card {
    bottom: -15px;
    left: -15px;
  }
  
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .executive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-container::after {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-dot {
    left: 18px !important;
    right: auto !important;
  }
  
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (Max Width: 768px) */
@media (max-width: 768px) {
  .top-header {
    padding: 12px 0;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .logo-title {
    font-size: 1.25rem;
  }
  
  .logo-subtitle {
    font-size: 0.65rem;
  }
  
  .btn-header-cta {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .hero-slider {
    height: 550px;
  }
  
  .slide-content h1 {
    font-size: 2.2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .welcome-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
    padding-top: 30px;
  }
  
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .executive-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-panel {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  
  .prev-arrow { left: 10px; }
  .next-arrow { right: 10px; }
  
  .performance-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-container {
    width: 95%;
  }
  
  .modal-header, .modal-body {
    padding: 16px 20px;
  }
  
  .activity-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .activity-period {
    width: 100%;
  }
}

/* Very Small Mobile Widths (Max Width: 480px) */
@media (max-width: 480px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
  }
  
  .header-cta {
    display: none; /* Hide header CTA button on extra small devices to save spacing */
  }
}

/* Logo Link styles */
.logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo-link:hover {
  opacity: 0.95;
}

/* ==========================================================================
   Dedicated Report Page Styles
   ========================================================================== */
.report-hero {
  height: 380px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.report-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(35, 70, 212, 0.65) 100%);
  z-index: 2;
}

.report-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  padding: 0 24px;
}

.report-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}

.report-hero-content .report-breadcrumbs {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.report-hero-content .report-breadcrumbs a {
  color: var(--light-blue);
  margin-right: 8px;
}

.report-hero-content .report-breadcrumbs a:hover {
  color: var(--bg-white);
}

.report-hero-content .report-breadcrumbs span {
  margin-left: 8px;
}

.report-container-section {
  padding: 80px 0;
  background-color: var(--bg-light-gray);
}

.report-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  padding: 60px;
  max-width: 960px;
  margin: 0 auto;
  color: var(--text-dark);
  position: relative;
}

.report-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.report-header-meta .association-meta h2 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.report-header-meta .association-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.report-header-meta .document-meta {
  text-align: right;
}

.report-header-meta .document-meta .doc-id {
  font-family: monospace;
  font-weight: 700;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--royal-blue);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.report-header-meta .document-meta .doc-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

.report-body-content h2.report-section-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 40px 0 20px 0;
  border-left: 4px solid var(--primary-blue);
  padding-left: 12px;
  line-height: 1.2;
}

.report-body-content h2.report-section-title:first-of-type {
  margin-top: 0;
}

.report-body-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: justify;
}

/* Report Highlights Section */
.report-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 40px 0;
}

.report-highlight-card {
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform var(--transition-fast);
}

.report-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--premium-shadow);
}

.report-highlight-card .highlight-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.report-highlight-card .highlight-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

/* Styled Report Table */
.report-table-wrapper {
  overflow-x: auto;
  margin: 30px 0 40px 0;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-white);
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.report-table th {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-weight: 600;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
}

.report-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.report-table tbody tr:last-child td {
  border-bottom: none;
}

.report-table tbody tr:nth-child(even) {
  background-color: var(--bg-light-gray);
}

.report-table tbody tr:hover {
  background-color: rgba(96, 165, 250, 0.08);
}

.report-bullet-list {
  margin-bottom: 24px;
  padding-left: 20px;
}

.report-bullet-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.report-bullet-list li::before {
  content: "•";
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -4px;
}

.report-download-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
}

.btn-report-download {
  background: var(--blue-gradient);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(35, 70, 212, 0.4);
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.btn-report-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 70, 212, 0.5);
}

/* Report Page Responsive Tweaks */
@media (max-width: 992px) {
  .report-card {
    padding: 40px;
  }
  .report-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .report-hero {
    height: 280px;
  }
  .report-hero-content h1 {
    font-size: 2rem;
  }
  .report-card {
    padding: 24px;
    border-radius: 8px;
  }
  .report-header-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .report-header-meta .document-meta {
    text-align: left;
  }
  .report-highlights-grid {
    grid-template-columns: 1fr;
  }
  .report-table th, .report-table td {
    padding: 12px 14px;
  }
}

/* Custom Report Section Cards & Navigation */
.report-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.report-section-card {
  background-color: var(--bg-light-gray);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 35px;
  margin-bottom: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  border-left: 4px solid var(--primary-blue);
  text-align: left;
}

.report-section-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--premium-shadow);
  background-color: var(--bg-white);
}

.report-section-card h3 {
  font-size: 1.35rem;
  color: var(--primary-blue);
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-section-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0;
  text-align: justify;
}

.report-section-card ul {
  margin-top: 14px;
  padding-left: 20px;
}

.report-section-card li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
  color: var(--text-dark);
  text-align: justify;
}

.report-section-card li:last-child {
  margin-bottom: 0;
}

.report-section-card li::before {
  content: "•";
  color: var(--royal-blue);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.btn-outline-blue:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 70, 212, 0.25);
}

.report-navigation-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 20px;
}


