/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo a {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--primary-color);
}

.nav-cta {
  background-color: var(--primary-color);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-cta::after {
  display: none;
}

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

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

.dropdown-arrow {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  border-left-color: var(--primary-color);
  padding-left: 1.75rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 70px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-color);
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

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

.fade-in-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.fade-in-delay-2.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.fade-in-delay-3.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ============================================
   STATS GRID
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stats-grid.large {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SPECIFIC PAGE STYLES
   ============================================ */

/* Focus Areas */
.focus-blocks {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.focus-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.focus-block.reverse {
  grid-template-columns: 1fr auto;
}

.focus-block.reverse .focus-icon {
  order: 2;
}

.focus-icon {
  font-size: 3rem;
}

.focus-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.focus-content ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.focus-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Timeline */
.timeline-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-layout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: start;
}

.timeline-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Vertical Timeline */
.timeline-vertical {
  position: relative;
  padding-left: 3rem;
}

.timeline-vertical::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

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

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--bg-white);
}

.timeline-content-vertical {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
}

.president-photo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--bg-light);
}

.president-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.president-tenure {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.president-bio {
  color: var(--text-light);
  line-height: 1.7;
}

/* Governance Cards */
.governance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.governance-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-slow);
}

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

.governance-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.governance-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.governance-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
}

/* Committee Grid */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.member-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

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

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-light);
}

.member-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.member-designation {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Organization Structure */
.structure-chart {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.org-level {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.org-level.level-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.org-box {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.org-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.org-box p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.org-connector {
  width: 2px;
  height: 30px;
  background: var(--border-color);
  margin: 0 auto;
}

.org-connector-branch {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

/* Chapters */
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.chapter-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

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

.chapter-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.chapter-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.chapter-location {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.chapter-description {
  color: var(--text-light);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-content h3 {
  margin: 1rem 0;
  font-size: 1.5rem;
}

.blog-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  margin-left: 0.5rem;
}

/* Programs */
.programs-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.program-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-ongoing {
  background: #10b981;
  color: white;
}

.status-upcoming {
  background: #f59e0b;
  color: white;
}

.program-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.program-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.program-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem;
}

.program-card.featured h3 {
  color: white;
}

.program-card.featured .program-meta {
  color: rgba(255, 255, 255, 0.9);
}

/* Press Releases */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.press-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.press-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.press-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.press-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.press-content h3 a:hover {
  color: var(--primary-color);
}

.press-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-download {
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

/* Publications */
.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.publication-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.pub-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pub-year {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.publication-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0;
}

/* FAQs */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-size: 1.25rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

.gallery-item {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  width: 100%;
  height: 250px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-caption {
  padding: 1rem;
}

.gallery-caption h4 {
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact */
.contact-info {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  display: none;
}

.form-message.success {
  background: #10b981;
  color: white;
  display: block;
}

.form-message.error {
  background: #ef4444;
  color: white;
  display: block;
}

/* Map */
.map-container {
  margin-top: 2rem;
}

.map-placeholder {
  height: 400px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

/* Updates */
.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.updates-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.update-list {
  margin-bottom: 2rem;
}

.update-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.update-item:last-child {
  border-bottom: none;
}

.update-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.update-item h4 {
  margin: 0.5rem 0;
}

.update-item h4 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.update-item h4 a:hover {
  color: var(--primary-color);
}

/* Image Placeholders */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
}

.image-placeholder.large {
  font-size: 8rem;
  min-height: 400px;
}

/* Load More */
.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-bar select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Enhanced Hero Section */
.hero-home {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  animation: slowZoom 20s ease-in-out infinite alternate;
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
  opacity: 1;
}

/* Fallback if image doesn't load */
.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -1;
}

.hero-bg-slide-out {
  opacity: 0;
  transform: scale(1.05) translateX(-10px);
}

.hero-bg-slide-in {
  opacity: 1;
  transform: scale(1) translateX(0);
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Press Release Section */
.press-release-section {
  background: var(--bg-light);
}

.press-release-list {
  max-width: 900px;
  margin: 0 auto;
}

.press-release-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
}

.press-release-item:last-child {
  border-bottom: none;
}

.press-date {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 120px;
  flex-shrink: 0;
}

.press-headline {
  flex: 1;
  margin: 0;
}

.press-headline a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.press-headline a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.press-headline a:hover::after {
  width: 100%;
}

.press-headline a:hover {
  color: var(--primary-color);
}

.view-all-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.view-all-link:hover {
  margin-left: 0.5rem;
}

/* Call to Action Section */
.cta-action-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-glow:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
}

.slide-up-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
}

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

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image .image-placeholder {
  transition: transform 0.6s ease;
}

.news-card:hover .news-image .image-placeholder {
  transform: scale(1.1);
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.news-content h3 {
  margin: 0.75rem 0;
  font-size: 1.25rem;
}

.news-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.news-content h3 a:hover {
  color: var(--primary-color);
}

/* Publication Section */
.publication-section {
  background: var(--bg-light);
}

.publication-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.publication-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}

.publication-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.pub-icon-wrapper {
  flex-shrink: 0;
}

.pub-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.publication-item:hover .pub-icon {
  transform: scale(1.1);
}

.pub-info {
  flex: 1;
}

.pub-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pub-info h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.pub-info h3 a:hover {
  color: var(--primary-color);
}

.pub-year {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* File a Complaint Section */
.file-complaint-section {
  background: var(--bg-white);
}

.complaint-layout {
  align-items: center;
}

.complaint-explanation {
  padding-right: 2rem;
}

.complaint-features {
  list-style: none;
  margin-top: 1.5rem;
}

.complaint-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

.complaint-cta {
  display: flex;
  justify-content: center;
}

.complaint-box {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.complaint-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.complaint-box p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* About Our President Section */
.president-section {
  background: var(--bg-light);
}

.president-layout {
  align-items: center;
  gap: 3rem;
}

.president-image {
  display: flex;
  justify-content: center;
}

.president-photo-large {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
}

.president-photo-large .photo-placeholder {
  font-size: 8rem;
}

.president-content {
  padding-left: 2rem;
}

.president-quote {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.president-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.2;
}

.president-info {
  margin-top: 2rem;
}

.president-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.president-title {
  color: var(--primary-color);
  font-weight: 600;
}

/* Recent Blog Section */
.blog-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card-home {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
}

.blog-card-home:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-image-home {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image-home .image-placeholder {
  transition: transform 0.6s ease;
}

.blog-card-home:hover .blog-image-home .image-placeholder {
  transform: scale(1.1);
}

.blog-content-home {
  padding: 1.5rem;
}

.blog-content-home .blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-content-home h3 {
  margin: 0.75rem 0;
  font-size: 1.25rem;
}

.blog-content-home h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.blog-content-home h3 a:hover {
  color: var(--primary-color);
}

.blog-content-home p {
  color: var(--text-light);
  margin: 1rem 0;
  line-height: 1.7;
}

/* Section Header Updates */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    margin-top: 0.5rem;
  }

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

  .hero-subtext {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-block {
    grid-template-columns: 1fr;
  }

  .focus-block.reverse {
    grid-template-columns: 1fr;
  }

  .focus-block.reverse .focus-icon {
    order: 0;
  }

  .timeline-content-vertical {
    grid-template-columns: 1fr;
  }

  .updates-grid {
    grid-template-columns: 1fr;
  }

  .press-item {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .org-level.level-4 {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .press-release-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .press-date {
    min-width: auto;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .publication-item {
    flex-direction: column;
    text-align: center;
  }

  .complaint-layout {
    grid-template-columns: 1fr;
  }

  .complaint-explanation {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .president-layout {
    grid-template-columns: 1fr;
  }

  .president-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .president-photo-large {
    width: 250px;
    height: 250px;
  }

  .blog-grid-home {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
