/* 
 * Global Perspective Forum - Complete Stylesheet
 * Comprehensive styles for all pages while maintaining index design
 */

/* ===================== */
/* Base Styles & Variables */
/* ===================== */
:root {
  /* Color palette */
  --color-primary: #1a1a1a;
  --color-secondary: #0066b3;
  --color-accent: #e63946;
  --color-light: #f8f9fa;
  --color-bg-light: #f5f7fa; /* Light blue-gray to replace white */
  --color-dark: #212529;
  --color-gray: #6c757d;
  --color-light-gray: #dee2e6;
  --color-white: #ffffff;
  --color-text-muted: #6e7781;
  
  /* Typography */
  --font-primary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  --font-heading: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Border radius */
  --border-radius: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #004d8c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

p {
  margin-bottom: var(--spacing-md);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-primary);
}

input, textarea, select {
  font-family: var(--font-primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.text-center {
  text-align: center;
}

/* ===================== */
/* Button Styles         */
/* ===================== */
.btn-primary {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #004d8c;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-secondary);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-gray);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--color-light);
  border-color: var(--color-dark);
}

.btn-submit {
  background-color: var(--color-secondary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #004d8c;
  transform: translateY(-2px);
}

/* ===================== */
/* Top Bar               */
/* ===================== */
.top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: var(--spacing-lg);
}

.top-bar a {
  color: var(--color-white);
  opacity: 0.8;
}

.top-bar a:hover {
  opacity: 1;
}

/* ===================== */
/* Main Header           */
/* ===================== */
.main-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--color-primary);
}

.main-nav ul {
  display: flex;
  gap: var(--spacing-xl);
}

.main-nav a {
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-secondary);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
}

.search-icon {
  cursor: pointer;
  color: var(--color-primary);
  transition: var(--transition);
}

.search-icon:hover {
  color: var(--color-secondary);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===================== */
/* Dropdown Menu         */
/* ===================== */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  width: 720px;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-container {
  display: flex;
  justify-content: space-between;
}

.dropdown-column {
  flex: 1;
  padding: 0 var(--spacing-md);
}

.dropdown-column h3 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--color-light-gray);
}

.dropdown-column ul li {
  margin-bottom: var(--spacing-sm);
}

.dropdown-column ul li a {
  color: var(--color-dark);
  font-weight: 400;
}

.dropdown-column ul li a:hover {
  color: var(--color-secondary);
}

/* ===================== */
/* Hero Section          */
/* ===================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.globe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* ===================== */
/* Featured Articles     */
/* ===================== */
.featured-articles {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

.view-all {
  font-weight: 600;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.featured-article {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-article.main {
  grid-column: span 2;
  display: flex;
}

.featured-article.main .article-image {
  flex: 1;
}

.featured-article.main .article-content {
  flex: 1;
}

.article-image {
  height: 240px;
  overflow: hidden;
}

.featured-article.main .article-image {
  height: auto;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ddd;
  background-image: linear-gradient(120deg, #e0e0e0 30%, #f0f0f0 38%, #f0f0f0 40%, #e0e0e0 48%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.article-content {
  padding: var(--spacing-lg);
}

.category {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.featured-article h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.featured-article.main h3 {
  font-size: 2rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

.read-more {
  display: inline-block;
  font-weight: 600;
  margin-top: var(--spacing-sm);
}

/* ===================== */
/* Latest Insights       */
/* ===================== */
.latest-insights {
  padding: var(--spacing-xxl) 0;
  background-color: #f5f5f5;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.insight-card {
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.insight-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.insight-card p {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-gray);
}

/* ===================== */
/* About Section         */
/* ===================== */
.about-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
}

blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  margin: var(--spacing-xl) 0;
  padding: 0 var(--spacing-xl);
  position: relative;
  color: var(--color-dark);
}

blockquote::before,
blockquote::after {
  content: '"';
  font-size: 4rem;
  color: var(--color-light-gray);
  position: absolute;
  line-height: 1;
}

blockquote::before {
  top: -1rem;
  left: 0;
}

blockquote::after {
  bottom: -3rem;
  right: 0;
}

/* ===================== */
/* Footer                */
/* ===================== */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}

.footer-logo h2 {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.footer-column h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
  color: var(--color-light);
  opacity: 0.8;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  color: var(--color-white);
  opacity: 0.7;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ===================== */
/* Animation Styles      */
/* ===================== */
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== */
/* Category Page Styles  */
/* ===================== */
.category-hero {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.category-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  height: 180px;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.category-content {
  padding: 1.5rem;
}

.category-content h3 {
  margin-bottom: 0.75rem;
}

.category-content p {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.category-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-dark);
  border-top: 1px solid var(--color-light-gray);
  padding-top: 1rem;
}

.category-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-button {
  background: none;
  border: 2px solid var(--color-secondary);
  padding: 0.5rem 1.25rem;
  margin: 0 0.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button.active, .filter-button:hover {
  background-color: var(--color-secondary);
  color: white;
}

.trending-topics {
  background-color: white;
  padding: 3rem 0;
  margin-top: 2rem;
}

.topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.topic-tag {
  background-color: var(--color-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background-color: var(--color-secondary);
  color: white;
}

/* ===================== */
/* About Page Styles     */
/* ===================== */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/api/placeholder/1200/800') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.about-hero h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.mission-section {
  padding: 5rem 0;
  text-align: center;
}

.mission-container {
  max-width: 900px;
  margin: 0 auto;
}

.mission-content {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  text-align: left;
}

.mission-card {
  flex: 1;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.team-section {
  padding: 5rem 0;
  background-color: white;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f0f0f0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.95rem;
  color: var(--color-gray);
}

.history-section {
  padding: 5rem 0;
}

.timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--color-light-gray);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -60px;
}

.timeline-date {
  position: absolute;
  top: 20px;
  color: var(--color-secondary);
  font-weight: 700;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -150px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -150px;
}

.timeline-title {
  margin-bottom: 1rem;
}

.stats-section {
  background-color: var(--color-secondary);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.values-section {
  padding: 5rem 0;
}

.values-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.values-content {
  flex: 1;
  padding-right: 2rem;
}

.values-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
}

.values-list {
  margin-top: 2rem;
}

.value-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.value-icon {
  margin-right: 1rem;
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-content h4 {
  margin-bottom: 0.5rem;
}

/* ===================== */
/* Article Page Styles   */
/* ===================== */
.article-header {
  padding: 3rem 0 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.article-meta a {
  color: var(--color-secondary);
}

.article-meta .separator {
  margin: 0 0.5rem;
}

.article-category {
  display: inline-block;
  background-color: var(--color-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-right: 1rem;
}

.article-header h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article-header p.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.article-author {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-bio {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.article-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 2rem 0 4rem;
}

.article-content {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d3748;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.article-content h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--color-secondary);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  color: #4a5568;
  font-style: italic;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.article-content figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.article-sidebar {
  position: relative;
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.toc-list {
  list-style: none;
  padding-left: 0;
}

.toc-list li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.toc-list li::before {
  content: '•';
  color: var(--color-secondary);
  position: absolute;
  left: 0;
}

.toc-list li a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.toc-list li a:hover {
  color: var(--color-secondary);
}

.related-article {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.related-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-image {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.related-info .date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.share-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--color-gray);
  transition: background-color 0.2s ease;
}

.share-button.twitter {
  background-color: #1DA1F2;
}

.share-button.facebook {
  background-color: #4267B2;
}

.share-button.linkedin {
  background-color: #0077B5;
}

.share-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.article-tag {
  background-color: #e9ecef;
  color: var(--color-dark);
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}

.article-tag:hover {
  background-color: var(--color-light-gray);
  color: var(--color-primary);
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
}

.article-nav-link {
  display: flex;
  align-items: center;
  max-width: 45%;
}

.article-nav-link.prev {
  flex-direction: row;
  text-align: left;
}

.article-nav-link.next {
  flex-direction: row-reverse;
  text-align: right;
}

.article-nav-link span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.article-nav-link p {
  font-weight: 600;
}

.article-nav-link svg {
  flex-shrink: 0;
  margin: 0 0.5rem;
}

.comments-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
}

.comment {
  display: flex;
  margin-bottom: 2rem;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.comment-content h4 {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}

.comment-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-left: 0.5rem;
  font-weight: normal;
}

.comment-body {
  margin-bottom: 0.5rem;
}

.comment-actions {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.comment-actions a {
  color: var(--color-text-muted);
}

.comment-actions a:hover {
  color: var(--color-secondary);
}

.comment-form {
  margin-top: 2rem;
}

.comment-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  min-height: 120px;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.highlight {
  background-color: #fffbeb;
  padding: 0.5rem;
  border-radius: 3px;
}

/* ===================== */
/* Contact Page Styles   */
/* ===================== */
.contact-hero {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/api/placeholder/1200/500') center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-option {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  color: white;
}

.contact-option:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.contact-option svg {
  margin-right: 0.5rem;
}

.contact-main {
  padding: 4rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease;
  font-family: var(--font-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-box {
  margin-bottom: 2rem;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.info-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.info-icon {
  background-color: var(--color-light);
  color: var(--color-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-text {
  flex: 1;
}

.info-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.info-text a, .info-text p {
  color: var(--color-gray);
  margin-bottom: 0;
}

.info-text a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  background-color: var(--color-light);
  color: var(--color-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
}

.map-section {
  background-color: white;
  padding: 4rem 0;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: #e63946;
  font-size: 2rem;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
  animation: bounce 2s infinite;
}

.map-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  z-index: 2;
}

.map-card h3 {
  margin-bottom: 0.5rem;
}

.map-card p {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.map-card .directions {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.faq-section {
  padding: 4rem 0;
}

.faq-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--color-light);
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content {
  padding-bottom: 1.5rem;
  color: var(--color-gray);
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding-top: 0.5rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.call-to-action {
  background-color: var(--color-secondary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: white;
  color: var(--color-secondary);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ===================== */
/* Utility Classes       */
/* ===================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-5 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-3 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-4 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-5 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.flex-column { flex-direction: column; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

/* ===================== */
/* Responsive Design     */
/* ===================== */
@media (max-width: 1100px) {
  .dropdown-menu {
    width: 600px;
  }
  
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
  }
  
  .map-card {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-article.main {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .featured-article.main .article-image {
    height: 240px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .article-container {
    grid-template-columns: 1fr;
  }
  
  .article-sidebar {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .sidebar-widget {
    margin-bottom: 1rem;
  }
  
  .sticky-sidebar {
    position: static;
  }
  
  .mission-content {
    flex-direction: column;
  }
  
  .values-container {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
  }
  
  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
    top: -30px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .main-header .container {
    flex-wrap: wrap;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .main-nav.active {
    max-height: 500px;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    display: none;
  }
  
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-container {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .dropdown-column {
    padding: var(--spacing-sm) 0;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .article-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .article-nav-link {
    max-width: 100%;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
  
  .info-box {
    margin-bottom: 1.5rem;
  }
  
  .map-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: none;
    transform: none;
    margin-top: -80px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-text h2 {
    font-size: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }

  
}