/* About Page Specific Styles */

/* Page Breadcrumb */
.page-breadcrumb {
  background: linear-gradient(135deg, #5e1e28 0%, #822b39 100%);
  padding: 12px 40px;
  border-bottom: none;
}

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

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 12px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.breadcrumb-item a i {
  font-size: 12px;
}

.breadcrumb-item a:hover {
  color: #f5c143;
  text-decoration: none;
}

.breadcrumb-item.active span {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Page Hero Banner with Rotating Background */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.page-hero-bg.active {
  opacity: 1;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 30, 40, 0.92) 0%, rgba(130, 43, 57, 0.88) 50%, rgba(153, 27, 53, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f5c143;
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease-out;
}

.page-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: #f5c143;
  margin: 16px auto;
  border-radius: 2px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.page-hero-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

/* About Content Section */
.about-content {
  background-color: #fff;
  padding: 80px 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Layout with Sidebar */
.about-main-layout {
  display: grid;
  grid-template-columns: 260px 2fr 320px;
  gap: 40px;
  margin-bottom: 80px;
}

/* Left Sidebar Navigation */
.about-sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar-nav {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-link {
  display: block;
  padding: 16px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-link:hover {
  background: #f5f5f5;
  border-left-color: #f5c143;
  padding-left: 25px;
}

.sidebar-link.active {
  background: #fef9e7;
  border-left-color: #f5c143;
  color: #822b39;
  font-weight: 700;
}

.sidebar-link:last-child {
  border-bottom: none;
}

/* Main Content Area */
.about-main-content {
  background: white;
}

.content-block {
  display: none;
  margin-bottom: 40px;
  animation: fadeIn 0.5s ease-in-out;
}

.content-block.active {
  display: block;
}

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

.content-block h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-weight: 400;
}

.genesis-content {
  margin-top: 30px;
}

.genesis-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

/* Right Sidebar - Dynamic Content */
.chairperson-sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.chairperson-card {
  background: white;
  border: 3px solid #f5c143;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

.chairperson-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #f5c143;
  padding-bottom: 10px;
}

.chairperson-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chairperson-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chairperson-card h4 {
  font-size: 18px;
  color: #822b39;
  margin-bottom: 5px;
  font-weight: 700;
  text-align: center;
}

.chairperson-title {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.chairperson-quote {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 20px;
}

.quote-icon {
  color: #f5c143;
  font-size: 24px;
  margin-bottom: 10px;
}

.chairperson-quote p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  font-style: italic;
  margin: 0;
}

.read-more-arrow {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f5c143;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 193, 67, 0.4);
  transition: all 0.3s ease;
}

.read-more-arrow:hover {
  background: #822b39;
  color: white;
  transform: translateX(5px);
}

.read-more-arrow i {
  font-size: 16px;
  color: #222;
}

.read-more-arrow:hover i {
  color: white;
}

/* Moon Shots Section */
.moonshots-section {
  margin-bottom: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-radius: 16px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-center h2 {
  font-size: 42px;
  color: #822b39;
  margin-bottom: 15px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 300;
}

.moonshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 40px;
}

.moonshot-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  border-top: 4px solid #f5c143;
}

.moonshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top-color: #822b39;
}

.moonshot-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(130, 43, 57, 0.08);
  line-height: 1;
}

.moonshot-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 15px rgba(130, 43, 57, 0.3);
}

.moonshot-card h4 {
  font-size: 20px;
  color: #822b39;
  margin-bottom: 12px;
  font-weight: 700;
}

.moonshot-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.moonshot-progress {
  margin-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #822b39 0%, #f5c143 100%);
  border-radius: 10px;
  transition: width 1s ease;
}

.progress-label {
  font-size: 12px;
  color: #999;
  font-weight: 600;
}

/* Timeline Section */
.timeline-section {
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #822b39 0%, #f5c143 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  margin-left: 60px;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #822b39;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s;
}

.timeline-item.active .timeline-marker {
  width: 30px;
  height: 30px;
  background: #f5c143;
  border-color: #822b39;
  box-shadow: 0 0 0 8px rgba(245, 193, 67, 0.2);
}

.timeline-content {
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 45%;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.timeline-item:hover .timeline-marker {
  width: 26px;
  height: 26px;
  background: #f5c143;
  border-color: #822b39;
  box-shadow: 0 0 0 6px rgba(245, 193, 67, 0.3);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-size: 20px;
  color: #822b39;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Timeline Modal */
.timeline-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.93);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
}

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

.timeline-modal {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: modalSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.7) translateY(100px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.close-timeline-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  font-size: 28px;
  color: #822b39;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-timeline-modal:hover {
  background: #822b39;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.timeline-modal-header {
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  padding: 50px 40px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.timeline-modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 193, 67, 0.15) 0%, transparent 70%);
  animation: pulse-bg 8s ease-in-out infinite;
}

.timeline-modal-year-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #f5c143;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.timeline-modal-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.timeline-modal-header p {
  font-size: 17px;
  opacity: 0.95;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-modal-body {
  padding: 50px 40px;
}

.timeline-modal-section {
  margin-bottom: 40px;
}

.timeline-modal-section:last-child {
  margin-bottom: 0;
}

.timeline-modal-section h3 {
  font-size: 26px;
  color: #822b39;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-modal-section h3 i {
  color: #f5c143;
  font-size: 28px;
}

.timeline-modal-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.achievement-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #f5c143;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-left-color: #822b39;
}

.achievement-card h4 {
  font-size: 18px;
  color: #822b39;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.achievement-card h4 i {
  color: #f5c143;
  font-size: 20px;
}

.achievement-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  text-align: left;
}

.challenges-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.challenges-list li {
  padding: 15px 20px;
  background: #fff5f5;
  border-left: 4px solid #e74c3c;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.challenges-list li i {
  color: #e74c3c;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.priorities-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.priorities-list li {
  padding: 15px 20px;
  background: #f0f9ff;
  border-left: 4px solid #3498db;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.priorities-list li i {
  color: #3498db;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.stat-box {
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 6px 20px rgba(130, 43, 57, 0.3);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(130, 43, 57, 0.4);
}

.stat-box .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #f5c143;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-box .stat-label {
  font-size: 13px;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.timeline-modal-footer {
  background: #f9f9f9;
  padding: 30px 40px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.modal-footer-text {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

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

.modal-btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.modal-btn.primary {
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  color: white;
}

.modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 43, 57, 0.3);
}

.modal-btn.secondary {
  background: white;
  color: #822b39;
  border: 2px solid #822b39;
}

.modal-btn.secondary:hover {
  background: #822b39;
  color: white;
}

/* Responsive Timeline Modal */
@media (max-width: 968px) {
  .timeline-modal {
    max-width: 95%;
  }

  .timeline-modal-header {
    padding: 40px 30px 30px;
  }

  .timeline-modal-header h2 {
    font-size: 30px;
  }

  .timeline-modal-body {
    padding: 35px 25px;
  }

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

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

  .timeline-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-footer-buttons {
    width: 100%;
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .timeline-modal-header h2 {
    font-size: 24px;
  }

  .timeline-modal-year-badge {
    font-size: 16px;
    padding: 10px 20px;
  }

  .timeline-modal-section h3 {
    font-size: 22px;
  }

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

  .close-timeline-modal {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 193, 67, 0.1) 0%, transparent 70%);
  animation: pulse-bg 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 800;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.cta-btn.primary {
  background: #f5c143;
  color: #222;
}

.cta-btn.primary:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 193, 67, 0.4);
}

.cta-btn.secondary {
  background: white;
  color: #822b39;
}

.cta-btn.secondary:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Subscription Popup Overlay */
.subscription-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(8px);
}

.subscription-overlay.show {
  opacity: 1;
  visibility: visible;
}

.subscription-modal {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: slideInScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInScale {
  from {
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.close-subscription {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10;
}

.close-subscription:hover {
  background: #f5f5f5;
  color: #822b39;
  transform: rotate(90deg);
}

.subscription-header {
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  padding: 40px 30px 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.subscription-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 193, 67, 0.15) 0%, transparent 70%);
  animation: pulse-bg 6s ease-in-out infinite;
}

.subscription-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #f5c143;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.subscription-header h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.subscription-reason {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
  position: relative;
  z-index: 1;
}

.subscription-form {
  padding: 35px 30px;
}

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

.subscription-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.subscription-form input,
.subscription-form select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

.subscription-form input:focus,
.subscription-form select:focus {
  outline: none;
  border-color: #822b39;
  box-shadow: 0 0 0 3px rgba(130, 43, 57, 0.1);
}

.subscription-interests {
  margin-bottom: 25px;
}

.subscription-interests > label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.interest-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.interest-checkbox {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: #f9f9f9;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.interest-checkbox:hover {
  background: #f0f0f0;
  border-color: #f5c143;
}

.interest-checkbox input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  cursor: pointer;
}

.interest-checkbox input[type="checkbox"]:checked + span {
  color: #822b39;
  font-weight: 600;
}

.interest-checkbox span {
  font-size: 13px;
  color: #555;
}

.subscription-benefits {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border-left: 4px solid #f5c143;
}

.subscription-benefits h4 {
  font-size: 16px;
  color: #822b39;
  margin-bottom: 12px;
  font-weight: 700;
}

.subscription-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subscription-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.subscription-benefits li:last-child {
  margin-bottom: 0;
}

.subscription-benefits li i {
  color: #f5c143;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.subscribe-btn {
  width: 100%;
  background: linear-gradient(135deg, #822b39 0%, #991b35 100%);
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(130, 43, 57, 0.3);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.subscription-privacy {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 15px;
  line-height: 1.6;
}

.subscription-privacy a {
  color: #822b39;
  text-decoration: underline;
}

.subscription-privacy a:hover {
  color: #991b35;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-main-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-sidebar,
  .chairperson-sidebar {
    position: static;
  }

  .sidebar-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sidebar-link {
    border-left: none;
    border-bottom: none;
    text-align: center;
  }

  .sidebar-link:hover {
    padding-left: 20px;
  }

  .moonshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    justify-content: flex-start !important;
  }

  .timeline-item .timeline-content {
    text-align: left !important;
    margin-left: 80px !important;
    margin-right: 0 !important;
    max-width: calc(100% - 80px);
  }

  .timeline-marker {
    left: 30px;
  }

  .page-hero {
    height: 300px;
  }

  .page-hero-content h1 {
    font-size: 34px;
  }

  .page-hero-content p {
    font-size: 15px;
  }

  .hero-label {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

@media (max-width: 640px) {
  .moonshots-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

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

  .sidebar-nav {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 280px;
  }

  .page-hero-content h1 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .page-hero-content p {
    font-size: 14px;
  }

  .hero-label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-divider {
    width: 45px;
    margin: 12px auto;
  }

  .content-block h2 {
    font-size: 28px;
  }

  .section-header-center h2 {
    font-size: 32px;
  }

  .subscription-modal {
    width: 95%;
  }

  .subscription-header {
    padding: 30px 20px 25px;
  }

  .subscription-header h3 {
    font-size: 22px;
  }

  .subscription-reason {
    font-size: 14px;
  }

  .subscription-form {
    padding: 25px 20px;
  }

  .interest-checkboxes {
    grid-template-columns: 1fr;
  }
}

.section-tags{margin-top:10px;display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.tag-pill{background:#e0f2fe;color:#0369a1;border:1px solid #bae6fd;border-radius:999px;padding:4px 10px;font-size:12px;font-weight:700;}
.tag-link{font-weight:700;color:#0ea5e9;text-decoration:none;font-size:13px;}

