/* Simple, Reliable WordPress CSS Approach
 * No build process, no conflicts, easy maintenance
 */

:root {
  /* Official TLC Logo Colors - THESE ARE THE ONLY BRAND COLORS */
  --brand-navy: #084E8D;        /* Dark Blue - Primary brand color */
  --brand-blue: #22A6EE;        /* Bright Blue - Secondary brand color */
  --brand-light-blue: #97CCE3;  /* Light Blue - Tertiary brand color */
  --brand-yellow: #FFDE00;      /* Bright Yellow - Accent color */
  --brand-cream-yellow: #FCEF97; /* Pale Yellow/Cream - Light accent */
  
  /* Semantic Color Assignments Using Only TLC Brand Colors */
  --color-primary: var(--brand-navy);
  --color-secondary: var(--brand-blue);
  --color-accent: var(--brand-yellow);
  --color-light-accent: var(--brand-cream-yellow);

  /* Semantic Colors */
  --text-primary: var(--brand-navy);
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;

  /* Interactive States */
  --hover-lift: translateY(-2px);
  --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* Icon Sizing System */
  --icon-container-size: 3rem;
  --icon-svg-size: 1.5rem;
  --glass-icon-container-size: 3.5rem;
  --glass-icon-svg-size: 1.5rem;
  --mobile-nav-icon-size: 2rem;
  --mobile-nav-svg-size: 1.25rem;
  
  /* Event Icon Sizing */
  --event-info-icon-size: 1.25rem;
  --event-action-icon-size: 1.25rem;
  --event-badge-icon-size: 1rem;

  /* Spacing */
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  background: white url('<?php echo get_template_directory_uri(); ?>/assets/herobanner-background.jpg') center/cover no-repeat; 
  min-height: 60vh; 
  max-height: none;
}

.hero-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: var(--brand-navy);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  .hero-section {
    background-size: contain !important;
  }
}

/* Hero Circles - Condensed */
.hero-circles-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 900px;
  padding: 1rem 0;
}

.hero-circles-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  justify-items: center;
}

.hero-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--brand-navy);
  background: transparent;
  border-radius: 1rem;
  padding: 1rem;
  min-height: 180px;
  transition: var(--transition);
  cursor: pointer;
}

.hero-circle:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-circle:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.hero-circle-icon {
  width: 6rem;
  height: 6rem;
  background: var(--brand-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(8, 78, 141, 0.3);
}

.hero-circle:hover .hero-circle-icon {
  background: var(--brand-blue);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 78, 141, 0.4);
}

.hero-circle-icon svg {
  width: 3rem;
  height: 3rem;
  color: white;
}

.hero-circle-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hero Mobile Background */
.hero-mobile-bg {
  background: white url('<?php echo get_template_directory_uri(); ?>/assets/herobanner-background-mobile.jpg') center/cover no-repeat;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

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

.events-header h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.events-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.status-new {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: top;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Event Card */
.event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-blue);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-navy);
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  min-width: 60px;
  z-index: 2;
}

.event-date-month {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-date-day {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

/* Event Image */
.event-image-wrapper {
  height: 200px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-blue), var(--brand-blue));
}

.event-main-icon {
  width: 3rem;
  height: 3rem;
  color: white;
}

/* Event Content */
.event-content {
  padding: 1.5rem;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.event-meta-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--brand-blue);
}

.event-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.event-action-btn {
  background: var(--brand-blue);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.event-action-btn:hover {
  background: var(--brand-navy);
  transform: translateY(-1px);
}

/* Status Badges */
.status-today {
  background: #dc2626;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.status-tomorrow {
  background: #f59e0b;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.status-this-week {
  background: var(--brand-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Fundraiser Status Badges */
.status-ongoing {
  background: var(--brand-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.status-active {
  background: var(--brand-navy);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.status-upcoming {
  background: var(--brand-light-blue);
  color: var(--brand-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.status-ending-soon {
  background: #f59e0b;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ===== FUNDRAISERS SECTION ===== */
.fundraisers-section {
  background: #f8fafc;
  padding: 3rem 0 4rem;
}

/* Banner-style fundraiser layout */
.fundraiser-banner {
  transition: all 0.3s ease;
}

.fundraiser-banner:hover {
  transform: translateY(-2px);
}

.fundraiser-banner-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fundraiser-banner:hover .fundraiser-banner-icon {
  transform: scale(1.05);
}

.fundraiser-banner-image {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  padding: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fundraiser-banner:hover .fundraiser-banner-image {
  transform: scale(1.05);
}

.fundraiser-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.fundraiser-banner-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.fundraiser-banner-description {
  font-size: 1.125rem;
  line-height: 1.6;
}

.fundraiser-date-info {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.fundraiser-date-info svg {
  flex-shrink: 0;
}

.fundraiser-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fundraiser-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: white;
}

.fundraiser-banner-btn svg {
  transition: transform 0.3s ease;
}

.fundraiser-banner-btn:hover svg {
  transform: translateX(2px);
}

/* Gradient backgrounds for different fundraiser types */
.bg-gradient-to-r.from-yellow-50.to-yellow-100 {
  background: linear-gradient(to right, #fefce8, #fef3c7);
}

.bg-gradient-to-r.from-blue-50.to-blue-100 {
  background: linear-gradient(to right, #eff6ff, #dbeafe);
}

.bg-gradient-to-r.from-gray-50.to-gray-100 {
  background: linear-gradient(to right, #f9fafb, #f3f4f6);
}

/* ===== SPONSORS SECTION ===== */
.sponsors-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  padding: 4rem 0;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ===== SPONSORS SECTION HEADERS ===== */
.sponsors-section .section-title {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sponsors-section .section-subtitle {
  color: var(--brand-light-blue) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== SPONSOR NAME STYLING ===== */
.sponsor-name {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sponsor-card:hover .sponsor-name {
  color: var(--brand-yellow);
  transform: translateY(-1px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Sponsor card styles consolidated in dedicated section below */

/* Section Titles */
.section-title {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #084E8D !important;
  margin-bottom: 0.75rem !important;
  text-align: center !important;
  display: block !important;
  visibility: visible !important;
}

.section-subtitle {
  font-size: 1.125rem !important;
  color: #6b7280 !important;
  max-width: 38rem !important;
  margin: 0 auto 2rem !important;
  line-height: 1.6 !important;
  text-align: center !important;
  display: block !important;
  visibility: visible !important;
}

/* ===== GET INVOLVED SECTION ===== */
.get-involved-section {
  padding: 4rem 0;
}

.get-involved-cta {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-navy) 0%, rgba(8, 78, 141, 0.95) 50%, var(--brand-blue) 100%);
}

.get-involved-content {
  padding: 3rem;
}

.get-involved-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.get-involved-subtitle {
  font-size: 1.125rem;
  color: rgba(151, 204, 227, 0.9);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.6;
}

.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.get-involved-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.get-involved-info {
  color: rgba(151, 204, 227, 0.9);
  margin-bottom: 1rem;
}

.get-involved-info .highlight {
  font-weight: 600;
  color: white;
}

.get-involved-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .get-involved-features {
    flex-direction: row;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: white;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-yellow);
  flex-shrink: 0;
}

/* Mobile adjustments for get-involved section */
@media (max-width: 768px) {
  .get-involved-content {
    padding: 2rem 1.5rem;
  }
  
  .get-involved-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .get-involved-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   SPONSORSHIP PAGE STYLES
   ============================================ */

/* ===== SPONSOR MESSAGES ===== */
.sponsor-message {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sponsor-message-success {
  background: #dcfce7;
  border-bottom: 1px solid #16a34a;
}

.sponsor-message-error {
  background: #fee2e2;
  border-bottom: 1px solid #dc2626;
}

.message-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.sponsor-message-success .message-content {
  color: #16a34a;
}

.sponsor-message-error .message-content {
  color: #dc2626;
}

.message-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ===== SPONSOR HERO SECTION ===== */
.sponsor-hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.sponsor-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.sponsor-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(151, 204, 227, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.sponsor-hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sponsor-hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sponsor-hero-features .feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-yellow);
}

/* ===== SPONSORSHIP TIERS ===== */
.sponsor-tiers-section {
  background: var(--bg-secondary);
}

.sponsor-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sponsor-tier-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sponsor-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tier-platinum {
  border-color: var(--brand-navy);
  position: relative;
}

.tier-platinum .tier-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tier-gold {
  border-color: var(--brand-blue);
}

.tier-silver {
  border-color: var(--brand-light-blue);
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.tier-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.tier-benefits {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Benefit icon styles moved to benefit-card specific section below */

.tier-select-btn {
  background: var(--brand-blue);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.tier-select-btn:hover {
  background: var(--brand-navy);
  transform: translateY(-2px);
}

/* Custom Sponsorship Card */
.custom-sponsor-card {
  background: linear-gradient(135deg, var(--brand-light-blue) 0%, var(--brand-blue) 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 2rem;
}

.custom-sponsor-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.custom-sponsor-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* ===== SIMPLE BENEFIT CARDS ===== */
.sponsor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #ffffff !important;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  border: 2px solid #e5e7eb !important;
  transition: var(--transition);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-blue);
}

.benefit-card .benefit-icon {
  width: 3rem !important;
  height: 3rem !important;
  background-color: var(--brand-blue) !important;
  border-radius: 50% !important;
  margin: 0 auto 1rem auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  visibility: visible !important;
  opacity: 1 !important;
}

.benefit-card h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #084E8D !important;
  margin-bottom: 0.5rem !important;
  margin-top: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.benefit-card p {
  color: #6b7280 !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
}

/* ===== PTO BENEFITS SECTION ===== */
.benefit-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: center;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: rgba(34, 166, 238, 0.05);
  transform: translateX(4px);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  stroke: currentColor;
  fill: none;
}

.benefit-item:hover .benefit-icon {
  background-color: var(--brand-navy);
  transform: scale(1.1);
}

.benefit-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.benefit-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .benefit-card__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-item {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
  }
  
  .benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .benefit-content h3 {
    font-size: 1.125rem;
  }
  
  .benefit-content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .benefit-card__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .benefit-item {
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
  }
  
  .benefit-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .benefit-icon svg {
    width: 1rem;
    height: 1rem;
  }
  
  .benefit-content h3 {
    font-size: 1rem;
  }
  
  .benefit-content p {
    font-size: 0.8rem;
  }
}

/* ===== SPONSOR INFO SECTION ===== */
.sponsor-info-section {
  background: var(--bg-secondary);
  padding: 3rem 0;
}

/* ===== SPONSORSHIP FORM ===== */
.sponsor-form-section {
  background: white;
  padding: 3rem 0;
}

.sponsor-form-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.sponsor-form {
  padding: 2rem;
}

.selected-tier-display {
  background: rgba(34, 166, 238, 0.1);
  border: 1px solid var(--brand-blue);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.selected-tier-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.selected-tier-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.selected-tier-name {
  font-weight: 700;
  color: var(--brand-navy);
}

.selected-tier-amount {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1.125rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(34, 166, 238, 0.1);
}

.form-input-container {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-weight: 600;
  pointer-events: none;
}

.form-input-with-icon {
  padding-left: 2rem;
}

/* Checkbox Styling */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: var(--transition);
}

.checkbox-item:hover {
  background: rgba(34, 166, 238, 0.05);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Form Submit Section */
.form-submit-section {
  background: var(--bg-secondary);
  padding: 2rem;
  margin: 2rem -2rem -2rem -2rem;
  border-radius: 0 0 16px 16px;
  text-align: center;
}

.form-disclaimer {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(34, 166, 238, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--brand-blue);
}

.form-disclaimer p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* Form submit button styles now handled by unified button system */

.submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.form-contact-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--brand-navy);
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sponsor-hero {
    padding: 2.5rem 0;
  }
  
  .sponsor-info-section {
    padding: 2rem 0;
  }
  
  .sponsor-form-section {
    padding: 2rem 0;
  }
  
  .sponsor-hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .sponsor-tiers-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .sponsor-form {
    padding: 1.5rem;
  }
  
  .form-submit-section {
    margin: 2rem -1.5rem -1.5rem -1.5rem;
  }
}

/* ============================================
   GENERAL EVENT COMPONENTS
   ============================================ */

/* Event Icon Styling */
.event-info-icon {
  width: var(--event-info-icon-size);
  height: var(--event-info-icon-size);
  color: var(--brand-blue);
  flex-shrink: 0;
}

.event-action-btn svg {
  width: var(--event-action-icon-size);
  height: var(--event-action-icon-size);
  flex-shrink: 0;
}

.event-type-badge svg {
  width: var(--event-badge-icon-size);
  height: var(--event-badge-icon-size);
  flex-shrink: 0;
}

/* Event Quick Info Section */
.event-hero__quick-info {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  min-width: 200px;
}

.event-info-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.event-info-item span {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .event-hero__quick-info {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .event-info-item {
    min-width: auto;
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
  }
}

/* Override conflicting styles from single-event.css */
.event-hero .event-info-item {
  padding: 1rem 1.5rem !important;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem !important;
  margin: 0 !important;
}

/* Interactive Card Base */
.interactive-card {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}

.interactive-card:hover {
  transform: var(--hover-lift);
  box-shadow: var(--hover-shadow);
  border-color: #22A6EE;
}

.interactive-card:focus-visible {
  outline: 2px solid #22A6EE;
  outline-offset: 2px;
}

/* Card Variants - Using Only TLC Brand Colors */
.card-navy {
  border-left: 4px solid var(--brand-navy);
}

.card-navy:hover .card-icon {
  background-color: var(--brand-navy);
  transform: scale(1.1);
}

.card-navy:hover .card-title {
  color: var(--brand-navy);
}

.card-blue {
  border-left: 4px solid var(--brand-blue);
}

.card-blue:hover .card-icon {
  background-color: var(--brand-blue);
  transform: scale(1.1);
}

.card-blue:hover .card-title {
  color: var(--brand-blue);
}

.card-yellow {
  border-left: 4px solid var(--brand-yellow);
}

.card-yellow:hover .card-icon {
  background-color: var(--brand-yellow);
  transform: scale(1.1);
}

.card-yellow:hover .card-title {
  color: var(--brand-yellow);
}

/* Card Elements */
.card-icon {
  width: var(--icon-container-size);
  height: var(--icon-container-size);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.card-icon-svg {
  width: var(--icon-svg-size);
  height: var(--icon-svg-size);
  color: white;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: auto;
  flex-grow: 1;
}

/* Interactive Arrow */
.card-arrow {
  opacity: 0.7;
  transform: translateX(0);
  transition: var(--transition);
  color: #22A6EE;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interactive-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Compact Card Variant (removed by request) */

/* Mobile Optimization */
@media (max-width: 768px) {
  :root {
    /* Update icon sizes for tablets/small mobile */
    --icon-container-size: 2.5rem;
    --icon-svg-size: 1.25rem;
    --glass-icon-container-size: 3rem;
    --glass-icon-svg-size: 1.5rem;
  }

  .interactive-card {
    padding: 1.5rem;
  }

  /* Better touch targets */
  .interactive-card {
    min-height: 44px;
  }

  /* Active state for touch */
  .interactive-card:active {
    transform: scale(0.98);
    background-color: rgba(59, 130, 246, 0.05);
  }

  .interactive-card:active .card-arrow {
    opacity: 1;
    transform: translateX(2px);
  }
}

/* Extra small mobile optimization */
@media (max-width: 480px) {
  :root {
    /* Update icon sizes for very small screens */
    --icon-container-size: 2rem;
    --icon-svg-size: 1rem;
    --glass-icon-container-size: 2.5rem;
    --glass-icon-svg-size: 1.25rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .interactive-card,
  .card-icon,
  .card-title,
  .card-arrow {
    transition: none;
  }
  
  .interactive-card:hover {
    transform: none;
  }
}

/* Glassmorphism Cards (for gradient backgrounds) */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: white;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(34, 166, 238, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.glass-card .glass-icon {
  width: var(--glass-icon-container-size);
  height: var(--glass-icon-container-size);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: var(--transition);
}

.glass-card:hover .glass-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.glass-card .glass-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.glass-card .glass-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.glass-icon-svg {
  width: var(--glass-icon-svg-size);
  height: var(--glass-icon-svg-size);
  color: white;
}

.glass-card .glass-arrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.8;
  transition: var(--transition);
}

.glass-card:hover .glass-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Image Cards */
.image-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
}

/* Welcome section responsive image switching - Higher specificity to override Tailwind */
.image-card .welcome-image-desktop {
  display: none !important;
}

.image-card .welcome-image-mobile {
  display: block !important;
}

@media (min-width: 768px) {
  .image-card .welcome-image-desktop {
    display: block !important;
  }

  .image-card .welcome-image-mobile {
    display: none !important;
  }
}

/* Optimize welcome images for their respective devices - Higher specificity */
.image-card .welcome-image-mobile {
  max-width: 100% !important;
  height: auto !important;
}

.image-card .welcome-image-desktop {
  max-width: 100% !important;
  height: auto !important;
}

/* Ensure proper image sizing on different screen sizes */
@media (max-width: 767px) {
  .image-card .welcome-image-mobile {
    width: 100% !important;
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .image-card .welcome-image-desktop {
    width: 100% !important;
    height: auto !important;
  }
}

/* Section Backgrounds */
.section-gradient-light {
  background: linear-gradient(135deg, #ffffff 0%, #E8F7FF 50%, #ffffff 100%);
  position: relative;
}

/* Section title styling consolidated above */

/* Section Title Variants */
.section-title-left {
  text-align: left;
}

.section-title-left::after {
  margin: 1rem 0 0 0;
}

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

.section-title-large {
  font-size: 3rem;
}

/* Section Title Contexts */
.section-title-hero {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #084E8D, #22A6EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.section-title-hero::after {
  width: 80px;
  height: 5px;
  margin: 1.5rem auto 0 auto;
}

.section-title-white {
  color: white;
}

.section-title-white::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
}

/* Responsive Section Titles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-title-small {
    font-size: 1.75rem;
  }
  
  .section-title-large {
    font-size: 2.25rem;
  }
  
  .section-title-hero {
    font-size: 2.5rem;
  }
  
  .section-title-hero::after {
    width: 60px;
    height: 4px;
    margin: 1rem auto 0 auto;
  }
}

/* Initiative Cards */
.initiative-list {
  background: var(--bg-primary);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.initiative-header {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  padding: 2rem;
  color: white;
}

.initiative-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.initiative-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.initiative-content {
  padding: 2rem;
}

.initiative-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.initiative-card:hover {
  background-color: #f8fafc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.initiative-card:active {
  transform: translateY(0) scale(0.99);
  background-color: #f1f5f9;
}

.initiative-card:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.initiative-indicator {
  width: 8px;
  background: linear-gradient(to bottom, var(--brand-blue), rgba(89, 188, 235, 0.3));
  border-radius: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.initiative-card:hover .initiative-indicator {
  background: linear-gradient(to bottom, var(--brand-blue), rgba(89, 188, 235, 0.6));
  transform: scaleY(1.05);
}

.initiative-info {
  flex: 1;
}

.initiative-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.initiative-card:hover .initiative-title {
  color: var(--brand-blue);
}

.initiative-description {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.initiative-card:hover .initiative-description {
  color: #4b5563;
}

.initiative-action {
  display: flex;
  align-items: center;
  color: var(--brand-blue);
  opacity: 0.7;
  transform: translateX(0);
  transition: var(--transition);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.initiative-card:hover .initiative-action {
  opacity: 1;
  transform: translateX(2px);
}

.initiative-action svg {
  width: 12px;
  height: 12px;
  margin-left: 0.5rem;
  transition: var(--transition);
}

.initiative-card:hover .initiative-action svg {
  transform: translateX(2px);
}

/* Card blue variant styling consolidated above */

/* Card Light Blue Variant */
.card-light-blue {
  border-left: 4px solid var(--brand-light-blue);
}

.card-light-blue:hover .card-icon {
  background-color: var(--brand-light-blue);
  transform: scale(1.1);
}

.card-light-blue:hover .card-title {
  color: var(--brand-light-blue);
}

/* Card Cream Yellow Variant */
.card-cream-yellow {
  border-left: 4px solid var(--brand-cream-yellow);
}

.card-cream-yellow:hover .card-icon {
  background-color: var(--brand-cream-yellow);
  transform: scale(1.1);
}

.card-cream-yellow:hover .card-title {
  color: var(--brand-cream-yellow);
}

/* Mobile Enhancements for Initiative Cards */
@media (max-width: 768px) {
  .initiative-content {
    padding: 1.5rem;
  }
  
  .initiative-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .initiative-indicator {
    width: 6px;
  }
  
  .initiative-card:active .initiative-action {
    opacity: 1;
    transform: translateX(2px);
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .interactive-card {
    border: 2px solid var(--text-primary);
  }
  
  .interactive-card:hover {
    border-color: var(--brand-blue);
  }
  
  .glass-card {
    border: 2px solid rgba(255, 255, 255, 0.4);
  }
  
  .glass-card:hover {
    border-color: rgba(255, 255, 255, 0.8);
  }
  
  .initiative-card {
    border: 1px solid #d1d5db;
  }
  
  .initiative-card:hover {
    border-color: var(--brand-blue);
  }
}

/* Utility Classes for Background Colors */
.bg-brand-navy { background-color: var(--brand-navy); }
.bg-brand-blue { background-color: var(--brand-blue); }
/* Removed non-brand colors - use only TLC official colors */
.bg-brand-yellow { background-color: var(--brand-yellow); }
.bg-accent-yellow { background-color: var(--accent-yellow); }
.bg-brand-light-blue { background-color: var(--brand-light-blue); }
.bg-light-blue { background-color: #e6f3ff; }
.bg-brand-cream-yellow { background-color: var(--brand-cream-yellow); }

/* Utility Classes for Text Colors */
.text-brand-navy { color: var(--brand-navy); }
.text-brand-blue { color: var(--brand-blue); }
/* Removed non-brand colors - use only TLC official colors */
.text-brand-yellow { color: var(--brand-yellow); }
.text-brand-light-blue { color: var(--brand-light-blue); }
.text-brand-cream-yellow { color: var(--brand-cream-yellow); }

/* Utility Classes for Common Sizing */
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-sm { font-size: 0.875rem; }

/* Layout Utilities */
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-6 { padding: 1.5rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid Utilities */
.grid { display: grid; }
.gap-6 { gap: 1.5rem; }

/* Background Utilities */
.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-600 { background-color: #4b5563; }

/* Text Color Utilities */
.text-gray-600 { color: #4b5563; }

/* Responsive Grid */
.grid-responsive-2-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-responsive-2-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Contact Popup Styles */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.contact-popup.show {
  display: flex;
}

.contact-popup .popup-content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
  width: 100%;
  max-width: 24rem;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.contact-popup.show .popup-content {
  transform: scale(1);
  opacity: 1;
}

.contact-popup .popup-header {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem;
  color: white;
}

.contact-popup .popup-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.contact-popup .popup-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
}

.contact-popup .popup-body {
  padding: 1.5rem;
}

.contact-popup .contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.contact-popup .contact-option:hover {
  background-color: #f9fafb;
}

.contact-popup .contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.contact-popup .contact-icon svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem;
  min-height: 1.25rem;
}

.contact-popup .contact-option:hover .contact-icon {
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-popup .contact-info p {
  margin: 0;
}

.contact-popup .contact-info .contact-label {
  font-weight: 500;
  color: #111827;
}

.contact-popup .contact-info .contact-detail {
  font-size: 0.875rem;
  color: #6b7280;
}

.contact-popup .close-button {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #f3f4f6;
  color: #374151;
  border-radius: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-popup .close-button:hover {
  background-color: #e5e7eb;
}

/* Hide popup by default */
#contact-popup {
  display: none !important;
}

#contact-popup.show {
  display: flex !important;
}

/* Navigation Icon Fixes */
.nav-icon-container {
  width: 2rem;
  height: 2rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav-icon-container:hover {
  background-color: #dbeafe;
}

.nav-icon-container svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem;
  min-height: 1.25rem;
  color: #6b7280;
  transition: color 0.2s ease;
}

.nav-icon-container:hover svg {
  color: var(--brand-blue);
}

/* Mobile Navigation Menu Styles */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: transparent;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.mobile-nav-item:hover {
  background-color: #f9fafb;
  color: var(--brand-blue);
}

.mobile-nav-icon {
  width: var(--mobile-nav-icon-size);
  height: var(--mobile-nav-icon-size);
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
  background-color: #dbeafe;
}

.mobile-nav-icon svg {
  width: var(--mobile-nav-svg-size);
  height: var(--mobile-nav-svg-size);
  color: #6b7280;
  transition: color 0.2s ease;
}

.mobile-nav-item:hover .mobile-nav-icon svg {
  color: var(--brand-blue);
}

/* Desktop Navigation Link Icons */
.nav-link-svg {
  width: 1rem;
  height: 1rem;
  color: inherit;
  transition: color 0.2s ease;
}

.nav-link:hover .nav-link-svg {
  color: var(--brand-blue);
}

.mobile-nav-text {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Mobile Menu Content - Use semantic classes instead of utility overrides */

/* Mobile Menu Overlay - Proper semantic styling */
#mobile-menu-overlay {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu-overlay.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  /* Use viewport units for better small screen support */
  padding: max(1rem, 2vh) max(1rem, 2vw);
  /* Ensure minimum safe area spacing on devices with notches */
  padding-top: max(1rem, env(safe-area-inset-top, 1rem));
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  padding-left: max(1rem, env(safe-area-inset-left, 1rem));
  padding-right: max(1rem, env(safe-area-inset-right, 1rem));
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 28rem;
  /* Ensure menu doesn't exceed viewport height */
  max-height: calc(100vh - max(2rem, 4vh) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 101;
  /* Enable scrolling if content exceeds available space */
  overflow-y: auto;
  /* Smooth scrolling */
  scroll-behavior: smooth;
  /* Custom scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--brand-blue) transparent;
}

/* Custom scrollbar for webkit browsers */
.mobile-menu-content::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu-content::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
  background-color: var(--brand-blue);
  border-radius: 3px;
}

.mobile-menu-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-navy);
}

/* Mobile menu content structure */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  flex-shrink: 0;
  border-radius: 1rem 1rem 0 0;
}

.mobile-menu-content > div:not(.mobile-menu-header) {
  flex: 1;
  overflow-y: auto;
  /* Ensure content area can scroll independently */
  min-height: 0;
}

/* Very small screens - adjust spacing */
@media (max-height: 600px) {
  .mobile-menu-overlay {
    padding: max(0.5rem, 1vh) max(0.5rem, 1vw);
    padding-top: max(0.5rem, env(safe-area-inset-top, 0.5rem));
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0.5rem));
  }
  
  .mobile-menu-content {
    max-height: calc(100vh - max(1rem, 2vh) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }
}

/* Landscape orientation on small screens */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-menu-overlay {
    padding: max(0.25rem, 0.5vh) max(0.5rem, 1vw);
    padding-top: max(0.25rem, env(safe-area-inset-top, 0.25rem));
    padding-bottom: max(0.25rem, env(safe-area-inset-bottom, 0.25rem));
  }
  
  .mobile-menu-content {
    max-height: calc(100vh - max(0.5rem, 1vh) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    max-width: 24rem; /* Slightly smaller in landscape */
  }
}

/* Ensure mobile menu is always accessible */
@media (max-width: 320px) {
  .mobile-menu-content {
    max-width: calc(100vw - max(1rem, 2vw));
    margin: 0 auto;
  }
}

/* Prevent mobile menu from being cut off on very short screens */
@media (max-height: 400px) {
  .mobile-menu-overlay {
    padding: 0.25rem;
    padding-top: max(0.25rem, env(safe-area-inset-top, 0.25rem));
    padding-bottom: max(0.25rem, env(safe-area-inset-bottom, 0.25rem));
  }
  
  .mobile-menu-content {
    max-height: calc(100vh - 0.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: 0.5rem; /* Smaller border radius on very small screens */
  }
  
  .mobile-menu-header {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}

/* Mobile Menu Button - Hide on Desktop */
#mobile-menu-toggle {
  display: block;
  z-index: 50;
}

@media (min-width: 768px) {
  #mobile-menu-toggle {
    display: none;
  }
}

/* Responsive utilities - using proper specificity instead of !important */
@media (min-width: 768px) {
  .md\:hidden { 
    display: none; 
  }
}

@media (min-width: 1024px) {
  .lg\:flex { 
    display: flex; 
  }
  .lg\:hidden { 
    display: none; 
  }
}

/* Navigation Overflow Fix */
.site-header {
  overflow-x: hidden;
  width: 100%;
}

.site-header .max-w-7xl {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .site-header .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header .max-w-7xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .site-header .max-w-7xl {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1536px) {
  .site-header .max-w-7xl {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Ensure navigation items don't overflow */
.site-nav {
  flex-wrap: nowrap;
  overflow: visible;
}

.site-nav .nav-link {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Fix for any elements that might cause horizontal scroll */
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Navigation Height and Logo Fixes */
.site-header {
  min-height: 4rem; /* 64px */
  max-height: 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .site-header {
    min-height: 5rem; /* 80px */
    max-height: 5rem;
  }
}

/* Ensure logo fits within header */
.site-header img {
  max-height: 3.5rem; /* 56px */
  max-width: 3.5rem;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .site-header img {
    max-height: 4.5rem; /* 72px */
    max-width: 4.5rem;
  }
}

/* Fix header container height */
.site-header .flex {
  height: 100%;
  min-height: 4rem;
  max-height: 4rem;
}

@media (min-width: 1024px) {
  .site-header .flex {
    min-height: 5rem;
    max-height: 5rem;
  }
}

/* Ensure navigation items fit within header */
.site-nav {
  height: 100%;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 0.5rem;
  height: auto;
  max-height: 3rem;
  display: flex;
  align-items: center;
}

/* Fix CTA button sizing */
.cta-button {
  height: auto;
  max-height: 2.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}

/* Donation Form Components */
.donation-form-container {
  background: var(--bg-primary);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  max-width: 36rem;
  margin: 0 auto;
}

.donation-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.donation-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.donation-form-subtitle {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Amount Selection Buttons */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .amount-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amount-btn {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--bg-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

.amount-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.amount-btn:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(110, 190, 83, 0.2);
}

.amount-btn:hover::before {
  opacity: 0.1;
}

.amount-btn:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 2px;
}

.amount-btn.selected {
  border-color: var(--brand-green);
  background: linear-gradient(135deg, rgba(110, 190, 83, 0.1), rgba(255, 221, 0, 0.1));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(110, 190, 83, 0.25);
}

.amount-btn.selected::before {
  opacity: 0.15;
}

.amount-btn-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.amount-btn-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* Enhanced form input styling */
.form-input-with-icon {
  padding-left: 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.form-input-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
}

/* Form Sections */
.form-section {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Form Inputs */
.form-input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-primary);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(110, 190, 83, 0.1);
}

.form-input-with-icon {
  padding-left: 2rem;
}

.form-input-container {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.125rem;
  pointer-events: none;
}

/* Form Grid */
.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Radio Button Options */
.radio-group {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .radio-group-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option-content {
  display: block;
  width: 100%;
  padding: 1.25rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.radio-option-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.radio-option-content:hover {
  border-color: var(--brand-purple);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(154, 99, 169, 0.15);
}

.radio-option-content:hover::before {
  opacity: 0.05;
}

.radio-option input[type="radio"]:checked + .radio-option-content {
  border-color: var(--brand-purple);
  background: linear-gradient(135deg, rgba(154, 99, 169, 0.1), rgba(89, 188, 235, 0.1));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(154, 99, 169, 0.2);
}

.radio-option input[type="radio"]:checked + .radio-option-content::before {
  opacity: 0.1;
}

.radio-option-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.radio-option-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  background: var(--bg-primary);
  min-height: 44px;
}

.radio-option input[type="radio"]:checked + .radio-option-content {
  border-color: var(--brand-green);
  background-color: #f0fdf4;
}

.radio-option-content:hover {
  border-color: var(--brand-blue);
  background-color: #eff6ff;
}

.radio-option input[type="radio"]:focus-visible + .radio-option-content {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.radio-option-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.radio-option-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand-green);
  border-radius: 4px;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Submit Button */
.donation-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  color: white;
  font-weight: 700;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  min-height: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(8, 78, 141, 0.2);
}

.donation-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.donation-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(8, 78, 141, 0.4);
}

.donation-submit-btn:hover::before {
  opacity: 1;
}

.donation-submit-btn:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 2px;
}

.donation-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(8, 78, 141, 0.2);
}

.donation-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(8, 78, 141, 0.1);
}

.donation-submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Form Footer Text */
.form-footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Coming Soon Message */
.coming-soon-message {
  text-align: center;
  padding: 2rem 1rem;
}

.coming-soon-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.coming-soon-icon svg {
  width: 2rem;
  height: 2rem;
}

.coming-soon-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.coming-soon-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: var(--transition);
}

.contact-option:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(89, 188, 235, 0.15);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-details p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.email-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}

.coming-soon-footer {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.coming-soon-footer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Student Management Styles */
.form-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-section__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
}

.student-entry {
  background: var(--bg-secondary);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.student-entry:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(89, 188, 235, 0.1);
}

.student-entry__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.student-entry__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.student-entry__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-entry__remove:hover {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
}

.student-entry__remove:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

/* Form Grid Variants */
.form-grid--two-col {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-grid--two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Form Field Styles */
.form-field {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background: var(--bg-primary);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(89, 188, 235, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Form Checkbox Styles */
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox {
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ========================================
   UNIFIED BUTTON SYSTEM
   ======================================== */

/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-height: 44px; /* Touch-friendly minimum */
  position: relative;
  overflow: hidden;
}

/* Navigation Button - Smaller, more compact for header */
.btn-nav {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
  border-radius: 4px;
}

.btn-nav .w-5 {
  width: 1rem;
  height: 1rem;
}

/* Primary Button - Navy Background */
.btn-primary {
  background-color: var(--brand-navy);
  color: white;
  border-color: var(--brand-navy);
  box-shadow: 0 2px 4px rgba(8, 78, 141, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #002a5a;
  border-color: #002a5a;
  transform: var(--hover-lift);
  box-shadow: 0 4px 8px rgba(8, 78, 141, 0.3);
  color: white;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 166, 238, 0.3), 0 4px 8px rgba(8, 78, 141, 0.3);
}

/* Secondary Button - Blue Background */
.btn-secondary {
  background-color: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
  box-shadow: 0 2px 4px rgba(34, 166, 238, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #1a91da;
  border-color: #1a91da;
  transform: var(--hover-lift);
  box-shadow: 0 4px 8px rgba(34, 166, 238, 0.3);
  color: white;
}

.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 166, 238, 0.3), 0 4px 8px rgba(34, 166, 238, 0.3);
}

/* Outline Button - Transparent with Border */
.btn-outline {
  background-color: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--brand-navy);
  color: white;
  transform: var(--hover-lift);
  box-shadow: var(--hover-shadow);
}

.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 166, 238, 0.3), var(--hover-shadow);
}

/* White Button - White Background */
.btn-white {
  background-color: white;
  color: var(--brand-navy);
  border-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-white:hover,
.btn-white:focus {
  background-color: #f8fafc;
  border-color: #f8fafc;
  transform: var(--hover-lift);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: var(--brand-navy);
}

.btn-white:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 166, 238, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Outline White Button - For Dark Backgrounds */
.btn-outline-white {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  background-color: white;
  color: var(--brand-navy);
  transform: var(--hover-lift);
  box-shadow: var(--hover-shadow);
}

.btn-outline-white:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), var(--hover-shadow);
}

/* Accent Button - Yellow Background */
.btn-accent {
  background-color: var(--brand-yellow);
  color: var(--brand-navy);
  border-color: var(--brand-yellow);
  box-shadow: 0 2px 4px rgba(255, 221, 0, 0.3);
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #e6c700;
  border-color: #e6c700;
  transform: var(--hover-lift);
  box-shadow: 0 4px 8px rgba(255, 221, 0, 0.4);
  color: var(--brand-navy);
}

.btn-accent:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 221, 0, 0.3), 0 4px 8px rgba(255, 221, 0, 0.4);
}

/* Button Size Modifiers */
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-height: 52px;
}

.btn--full-width {
  width: 100%;
}

/* Button State Modifiers */
.btn:disabled,
.btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled:hover,
.btn--disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Loading State */
.btn--loading {
  position: relative;
  color: transparent;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 1s linear infinite;
}

@keyframes btn-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: scale(0.98);
  }
  
  .btn:active:not(:disabled) {
    transform: scale(0.98);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  
  .btn:hover,
  .btn:focus {
    transform: none;
  }
  
  .btn--loading::after {
    animation: none;
  }
}

/* ========================================
   BOARD MEMBERS PAGE STYLES
   ======================================== */

/* Board Member Card */
.board-member-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.board-member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.board-member-card--open {
  border-style: dashed;
  border-color: #d1d5db;
}

/* Board Member Icon */
.board-member-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-member-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

/* Board Member Title */
.board-member-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

/* Board Member Name */
.board-member-name {
  color: #374151;
  font-weight: 600;
}

.board-member-name--open {
  color: #6b7280;
}

/* Board Member Subtitle */
.board-member-subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* Board Grid */
.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .board-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .board-grid--committees {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Section Headings */
.board-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: center;
  margin-bottom: 3rem;
}

/* Container */
.board-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.board-section {
  padding: 4rem 0;
}

.board-section--spacing {
  margin-bottom: 4rem;
}

/* CTA Component */
.cta {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
}

.cta-gradient {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  color: white;
}

/* CTA Button Overrides for Gradient Backgrounds */
.cta-gradient .btn-primary {
  background-color: white;
  color: var(--brand-navy);
  border-color: white;
}

.cta-gradient .btn-primary:hover,
.cta-gradient .btn-primary:focus {
  background-color: #f8fafc;
  color: var(--brand-navy);
  border-color: #f8fafc;
}

.cta-gradient .btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-gradient .btn-secondary:hover,
.cta-gradient .btn-secondary:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

.cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
}

.cta__body {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: inherit;
}

.cta-header {
  background-color: var(--brand-navy);
  color: white;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.cta-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

/* CTA Actions Container */
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta__actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Legacy support */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Contact Info Styles */
.contact-info {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--brand-blue);
}

.contact-info__title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-info__text {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info__item {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

.contact-info__link {
  color: var(--brand-blue);
  text-decoration: none;
}

.contact-info__link:hover {
  text-decoration: underline;
}

/* Parent Status Toggle Styles */
.parent-status-toggle {
  margin-bottom: 1rem;
}

.toggle-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .toggle-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.toggle-option {
  cursor: pointer;
  position: relative;
}

.toggle-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-option__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: var(--bg-primary);
  transition: var(--transition);
  min-height: 80px;
}

.toggle-option:hover .toggle-option__content {
  border-color: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(89, 188, 235, 0.1);
}

.toggle-radio:checked + .toggle-option__content {
  border-color: var(--brand-blue);
  background: rgba(89, 188, 235, 0.05);
  box-shadow: 0 0 0 3px rgba(89, 188, 235, 0.1);
}

.toggle-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
  flex-shrink: 0;
}

.toggle-radio:checked + .toggle-option__content .toggle-option__icon {
  background: var(--brand-blue);
  color: white;
}

.toggle-option__text {
  flex: 1;
}

.toggle-option__title {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.toggle-option__description {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.toggle-radio:checked + .toggle-option__content .toggle-option__title {
  color: var(--brand-navy);
}

/* Focus states for accessibility */
.toggle-option:focus-within .toggle-option__content {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .donation-form-container {
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 12px;
  }
  
  .donation-form-title {
    font-size: 1.375rem;
  }
  
  .amount-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .amount-btn {
    padding: 1rem 0.75rem;
    min-height: 56px;
    border-radius: 12px;
  }
  
  .amount-btn-value {
    font-size: 1.5rem;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .radio-group-2 {
    grid-template-columns: 1fr;
  }
  
  .radio-option-content {
    padding: 1rem 0.75rem;
    border-radius: 12px;
  }
  
  .donation-submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 52px;
    border-radius: 12px;
  }
  
  .form-input-with-icon {
    font-size: 1rem;
    padding-left: 2.25rem;
  }
  
  .form-input-icon {
    font-size: 1.125rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .amount-btn:active {
    transform: scale(0.98);
    background-color: rgba(110, 190, 83, 0.1);
  }
  
  .radio-option-content:active {
    transform: scale(0.98);
    background-color: rgba(154, 99, 169, 0.1);
  }
  
  .donation-submit-btn:active {
    transform: scale(0.98);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .amount-btn,
  .radio-option-content,
  .donation-submit-btn,
  .form-input {
    transition: none;
  }
  
  .amount-btn:hover,
  .donation-submit-btn:hover,
  .radio-option-content:hover {
    transform: none;
  }
  
  .amount-btn::before,
  .radio-option-content::before,
  .donation-submit-btn::before {
    display: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .amount-btn,
  .radio-option-content {
    border-width: 3px;
  }
  
  .amount-btn.selected,
  .radio-option input[type="radio"]:checked + .radio-option-content {
    border-width: 4px;
  }
  
  .donation-submit-btn {
    border: 2px solid var(--text-primary);
  }
}

/* Responsive adjustments for hero circles */
@media (min-width: 768px) {
  .hero-circles-row {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-circles-container { gap: 2.5rem; }
  .hero-circles-row { gap: 2rem; }
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .hero-circles-container {
    gap: 0; margin: 0; padding: 0; max-width: none; width: 100%;
  }
  
  .hero-circles-row {
    grid-template-columns: repeat(3, 1fr); gap: 0.5rem; width: 100%; padding: 0 1rem;
  }
  
  .hero-circle {
    padding: 0.5rem; min-height: 140px; width: 100%;
  }
  
  .hero-circle-icon {
    width: 5.5rem; height: 5.5rem; margin-bottom: 0.5rem;
  }
  
  .hero-circle-icon svg {
    width: 3rem; height: 3rem;
  }
  
  .hero-circle-text {
    font-size: 0.7rem; line-height: 1.1;
  }
  
  .hero-circle:active {
    transform: scale(0.98);
  }
}

@media (max-width: 480px) {
  .hero-circles-container {
    gap: 0; margin: 0; padding: 0; max-width: none; width: 100%;
  }
  
  .hero-circles-row {
    grid-template-columns: repeat(2, 1fr); gap: 0.4rem; width: 100%; padding: 0 0.75rem;
  }
  
  .hero-circle {
    padding: 0.4rem; min-height: 130px; width: 100%;
  }
  
  .hero-circle-icon {
    width: 4.5rem; height: 4.5rem; margin-bottom: 0.4rem;
  }
  
  .hero-circle-icon svg {
    width: 2.5rem; height: 2.5rem;
  }
  
  .hero-circle-text {
    font-size: 0.65rem; line-height: 1.1;
  }
}

/* Mobile hero section adjustments */
@media (max-width: 767px) {
  .hero-section {
    min-height: 70vh !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* Mobile header layout adjustments */
@media (max-width: 767px) {
  .site-header .flex {
    justify-content: space-between !important;
  }
  
  .site-header .flex > div:first-child {
    flex: 1;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  
  .site-header .flex > div:last-child {
    flex-shrink: 0;
  }
  
  /* Ensure proper spacing for mobile header elements */
  .site-header .space-x-3 > * + * {
    margin-left: 0.75rem;
  }
  
  /* Mobile logo sizing */
  .site-header img {
    height: 3rem !important;
    width: 3rem !important;
  }
  
  /* Mobile organization name styling */
  .site-header h1 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
    line-height: 1.2;
    text-align: left !important;
  }
  
  /* Ensure logo and text are left-aligned */
  .site-header .flex > div:first-child > * {
    display: flex !important;
    align-items: center !important;
  }
  
  /* Logo link alignment */
  .site-header a {
    display: flex !important;
    align-items: center !important;
  }
}

/* Hero CTA Section */
.hero-cta-section {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  padding: 4rem 1rem;
  text-align: center;
  color: white;
}

.hero-cta-container {
  max-width: 60rem;
  margin: 0 auto;
}

.hero-cta-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.hero-cta-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.hero-cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-highlight {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-cta-highlight-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* CTA Action Buttons */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  color: var(--brand-navy);
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
  min-height: 44px;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--brand-navy);
}

.cta-btn-primary:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  min-width: 180px;
  justify-content: center;
  min-height: 44px;
}

.cta-btn-secondary:hover {
  background: white;
  color: var(--brand-navy);
}

.cta-btn-secondary:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.cta-footer-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
}

/* Quick Donation Buttons */
.quick-donate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto 2rem auto;
}

@media (min-width: 640px) {
  .quick-donate-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-donate-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(10px);
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-donate-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  color: white;
}

.quick-donate-btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.quick-donate-amount {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.quick-donate-purpose {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive CTA */
@media (max-width: 768px) {
  .hero-cta-section {
    padding: 3rem 1rem;
  }
  
  .hero-cta-title {
    font-size: 2rem;
  }
  
  .hero-cta-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta-icon {
    width: 4rem;
    height: 4rem;
  }
  
  .hero-cta-icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    min-width: 160px;
  }
  
  .quick-donate-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .quick-donate-btn {
    padding: 0.875rem 0.5rem;
  }
  
  .quick-donate-btn:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.3);
  }
}

/* Resources Page Grid Layouts */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.business-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .business-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .business-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resource-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .resource-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sharing-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .sharing-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sharing-options-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.print-download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .print-download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Common Utility Classes (replacing Tailwind) */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }

.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.text-white { color: white; }
.text-gray-600 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-blue-100 { color: #dbeafe; }
.text-brand-navy { color: var(--brand-navy); }

.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-600 { background-color: #4b5563; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-sky-500 { background-color: #0ea5e9; }
.bg-sky-600 { background-color: #0284c7; }

.bg-gradient-to-r { background: linear-gradient(to right, var(--brand-navy), var(--brand-blue)); }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.border { border-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-sky-600:hover { background-color: #0284c7; }
.hover\:underline:hover { text-decoration: underline; }

.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out; }

.duration-300 { transition-duration: 300ms; }

.overflow-hidden { overflow: hidden; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-0\.5 { margin-top: 0.125rem; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.pt-6 { padding-top: 1.5rem; }

/* Responsive text sizes */
@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Resource Tabs Styling */
.resource-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.resource-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: #f3f4f6;
  padding: 0.5rem;
  border-radius: 0.75rem;
}

@media (min-width: 768px) {
  .resource-tabs {
    flex-direction: row;
    justify-content: center;
  }
}

.resource-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  color: #6b7280;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.resource-tab:hover {
  background: rgba(89, 188, 235, 0.1);
  color: var(--brand-navy);
}

.resource-tab.active {
  background: white;
  color: var(--brand-navy);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Tab Panels */
.resource-tab-content {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Section title styling consolidated above */

.section-description {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Business Categories */
.business-categories {
  max-width: 800px;
  margin: 0 auto;
}

.category-section {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}

.category-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease;
}

.category-header:hover {
  background: #f3f4f6;
}

.category-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.category-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0;
}

.expand-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.category-header[aria-expanded="true"] .expand-icon {
  transform: rotate(180deg);
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.category-content.expanded {
  max-height: 500px;
}

.business-list {
  padding: 1.5rem;
}

.business-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.business-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.business-item p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.business-phone {
  font-size: 0.875rem;
  color: var(--brand-blue);
  text-decoration: none;
}

.business-phone:hover {
  text-decoration: underline;
}

/* Education Grid */
.education-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .education-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.education-category h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-link {
  display: block;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resource-link:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.resource-link h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.resource-link p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.link-arrow {
  font-size: 0.875rem;
  color: var(--brand-blue);
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-item {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.video-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.video-item p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.video-link {
  font-size: 0.875rem;
  color: var(--brand-blue);
  text-decoration: none;
}

.video-link:hover {
  text-decoration: underline;
}

/* Share Options */
.share-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .share-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 1rem;
}

.share-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button.facebook {
  background: #1877f2;
  color: white;
}

.share-button.facebook:hover {
  background: #166fe5;
}

.share-button.twitter {
  background: #1da1f2;
  color: white;
}

.share-button.twitter:hover {
  background: #1a91da;
}

.share-button.email {
  background: #6b7280;
  color: white;
}

.share-button.email:hover {
  background: #4b5563;
}

.share-button.print {
  background: #f3f4f6;
  color: var(--brand-navy);
  border: 1px solid #e5e7eb;
}

.share-button.print:hover {
  background: #e5e7eb;
}

/* ========================================
   ENHANCED EVENT CARDS
   ======================================== */
.events-section {
    position: relative;
    overflow: hidden;
}

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


/* Enhanced Event Card */
.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Date Badge */
.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 60px;
    z-index: 2;
}

.event-date-month {
    font-size: 0.75rem;
    color: var(--brand-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-date-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1;
    margin-top: 2px;
}

/* Event Image Section */
.event-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-main-icon {
    width: 4rem;
    height: 4rem;
    color: white;
    opacity: 0.9;
}

/* Event Content */
.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta-icon {
    width: 16px;
    height: 16px;
    color: var(--brand-blue);
    flex-shrink: 0;
}

.event-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Event Footer */
.event-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.event-action-btn {
    padding: 0.5rem 1.25rem;
    background: var(--brand-blue);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.event-action-btn:hover {
    background: #4a9fd8;
    transform: translateY(-1px);
}

.event-action-btn.btn-full {
    background: #dc2626;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Event Status Indicators */
.event-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

.status-today {
    background: #fef3c7;
    color: #92400e;
}

.status-tomorrow {
    background: #dbeafe;
    color: #1e3a8a;
}

.status-this-week {
    background: #e0e7ff;
    color: #3730a3;
}

.status-new {
    background: #dcfce7;
    color: #14532d;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}



/* Grid View (default) */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.events-grid.inactive {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   SPONSORS SECTION
   ===================================== */

/* Sponsors section styling consolidated above */

/* Sponsors grid styling consolidated above */

/* Sponsor card styling consolidated above */

/* Sponsor card hover effects consolidated above */

/* Sponsor name styling consolidated above */

/* Sponsor category styling consolidated above */

/* Sponsor CTA card styling consolidated above */

/* Sponsor CTA card pseudo-elements and button styling consolidated above */

/* Mobile responsive rules for sponsors consolidated above */

/* Animation for sponsor cards on scroll (optional enhancement) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .sponsor-card,
    .sponsor-cta-card .btn {
        transition: none;
    }
    
    .sponsor-card:hover {
        transform: none;
    }
    
    .sponsor-cta-card .btn:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .sponsor-card {
        border: 2px solid var(--brand-navy);
    }
    
    .sponsor-category {
        background: var(--brand-navy);
        color: white;
        border: 1px solid white;
    }
}

/* ========================================
   MEETING RESOURCES PAGE STYLES
   ======================================== */

.meeting-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.meeting-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.meeting-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.meeting-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meeting-icon svg {
    width: 24px;
    height: 24px;
}

.meeting-detail-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.meeting-detail-text {
    color: #6b7280;
    line-height: 1.6;
}

.meeting-contact-section {
    margin-top: 3rem;
}

.meeting-contact-card {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.meeting-contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   TEACHER RESOURCES PAGE STYLES
   ======================================== */

.support-intro-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.request-section {
    margin: 3rem 0;
}

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

.request-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.request-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.request-card-icon svg {
    width: 32px;
    height: 32px;
}

.request-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.request-card-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.appreciation-section {
    margin: 3rem 0;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.appreciation-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child):before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #e5e7eb;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 1rem;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #6b7280;
    line-height: 1.6;
}

.teacher-contact-section {
    margin-top: 3rem;
}

.teacher-contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

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

.contact-option {
    text-align: center;
}

.contact-option-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--brand-navy);
    text-decoration: underline;
}

/* Responsive adjustments for resource pages */
@media (max-width: 768px) {
    .meeting-details-grid {
        grid-template-columns: 1fr;
    }
    
    .meeting-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .request-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item {
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   SUBSCRIBE PAGE STYLES
   ======================================== */

/* Ensure proper text colors on subscribe page */
.main-content {
    color: var(--brand-navy) !important;
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    color: var(--brand-navy) !important;
}

.main-content p {
    color: #6b7280 !important;
}

/* Subscribe Form Container */
.subscribe-form-container {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e5e7eb;
}

/* Success and Error Messages */
.success-message,
.error-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid;
}

.success-message {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.error-message {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.success-icon,
.error-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.125rem;
}

.success-content h3,
.error-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.success-content p,
.error-content p {
    margin: 0;
    font-size: var(--font-size-sm);
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--brand-navy) !important;
    font-size: var(--font-size-sm);
}

.form-label.required::after {
    content: ' *';
    color: #dc2626;
}

.form-input,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    background-color: var(--bg-primary);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(34, 166, 238, 0.1);
}

.form-help {
    font-size: var(--font-size-xs);
    color: #6b7280 !important;
    margin-top: 0.25rem;
}

/* Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    cursor: pointer;
    accent-color: var(--brand-blue);
}

.form-checkbox-label {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: #6b7280 !important;
}

/* Form Actions */
.form-actions {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Subscribe Info Section */
.subscribe-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.subscribe-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--brand-navy) !important;
    margin-bottom: 1rem;
}

.subscribe-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.subscribe-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #6b7280 !important;
}

.subscribe-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.privacy-note {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand-blue);
}

.privacy-note p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: #6b7280 !important;
    line-height: 1.6;
}

/* Page Title and Subtitle */
.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--brand-navy) !important;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: var(--font-size-lg);
    color: #6b7280 !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design for Subscribe Page */
@media (max-width: 768px) {
    .subscribe-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .page-title {
        font-size: var(--font-size-3xl);
    }
    
    .page-subtitle {
        font-size: var(--font-size-base);
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-base);
    }
    
    .success-message,
    .error-message {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .success-icon,
    .error-icon {
        align-self: center;
    }
}

/* Focus and Accessibility */
.form-input:focus-visible,
.form-select:focus-visible,
.form-checkbox input:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .form-input,
    .form-select {
        border-width: 3px;
    }
    
    .success-message,
    .error-message {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .form-input,
    .form-select {
        transition: none;
    }
}

/* ===== CONTEXT-AWARE TEXT AND ICON SYSTEM ===== */

/*
USAGE GUIDE:

1. AUTOMATIC CONTEXT (Recommended):
   - Components with blue/navy backgrounds automatically get white text
   - Components with white/light backgrounds automatically get blue text
   - Icons adapt automatically based on background context

2. MANUAL CONTEXT (When needed):
   - Add .bg-context-light to containers with light backgrounds
   - Add .bg-context-dark to containers with dark backgrounds

3. ADAPTIVE CLASSES:
   - .text-adaptive-primary - Main text color (navy on light, white on dark)
   - .text-adaptive-secondary - Secondary text color
   - .icon-adaptive - Icons without backgrounds (blue on light, white on dark)
   - .icon-adaptive-bg - Icons with backgrounds (always white icon on colored bg)
   - .icon-standalone - Icons without backgrounds (blue on light, white on dark)

4. EXAMPLES:
   
   <!-- Light background container -->
   <div class="bg-white">
     <h2 class="title-adaptive">Title</h2>  <!-- Will be navy -->
     <p class="text-adaptive-secondary">Text</p>  <!-- Will be gray -->
     <svg class="icon-adaptive">...</svg>  <!-- Will be blue -->
   </div>
   
   <!-- Dark background container -->
   <div class="cta-gradient">
     <h2 class="title-adaptive">Title</h2>  <!-- Will be white -->
     <p class="text-adaptive-secondary">Text</p>  <!-- Will be light gray -->
     <svg class="icon-adaptive">...</svg>  <!-- Will be white -->
   </div>
   
   <!-- Icon with background -->
   <div class="icon-adaptive-bg rounded-full">
     <svg>...</svg>  <!-- Icon will be white, bg will be blue -->
   </div>
*/

/* Background Context Classes - Define the color context */
.bg-context-light {
    /* Light backgrounds (white, light colors) */
    --text-primary: var(--brand-navy);
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --icon-color: var(--brand-blue);
    --icon-bg-color: var(--brand-blue);
    --icon-text-color: white;
}

.bg-context-dark {
    /* Dark backgrounds (navy, blue gradients) */
    --text-primary: white;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --icon-color: white;
    --icon-bg-color: rgba(255, 255, 255, 0.2);
    --icon-text-color: white;
}

/* Text Classes - Use context-aware colors */
.text-adaptive-primary {
    color: var(--text-primary, var(--brand-navy)) !important;
}

.text-adaptive-secondary {
    color: var(--text-secondary, #6b7280) !important;
}

.text-adaptive-muted {
    color: var(--text-muted, #9ca3af) !important;
}

/* Icon Classes - Context-aware icons */
.icon-adaptive {
    color: var(--icon-color, var(--brand-blue)) !important;
}

.icon-adaptive-bg {
    background-color: var(--icon-bg-color, var(--brand-blue)) !important;
    color: var(--icon-text-color, white) !important;
}

/* Title Classes - Context-aware titles */
.title-adaptive {
    color: var(--text-primary, var(--brand-navy)) !important;
}

.title-adaptive-large {
    color: var(--text-primary, var(--brand-navy)) !important;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-adaptive-medium {
    color: var(--text-primary, var(--brand-navy)) !important;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.title-adaptive-small {
    color: var(--text-primary, var(--brand-navy)) !important;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Component Integration - Apply context to common components */
.bg-context-light .card-title,
.bg-context-light .page-title,
.bg-context-light .section-title,
.bg-context-light h1,
.bg-context-light h2,
.bg-context-light h3,
.bg-context-light h4 {
    color: var(--brand-navy) !important;
}

.bg-context-dark .card-title,
.bg-context-dark .page-title,
.bg-context-dark .section-title,
.bg-context-dark h1,
.bg-context-dark h2,
.bg-context-dark h3,
.bg-context-dark h4 {
    color: white !important;
}

/* Icon Integration - Apply context to common icons */
.bg-context-light .card-icon svg,
.bg-context-light .benefit-icon svg,
.bg-context-light .hero-circle-icon svg {
    color: white !important;
}

.bg-context-light .card-icon {
    background-color: var(--brand-blue) !important;
}

.bg-context-dark .card-icon svg,
.bg-context-dark .benefit-icon svg,
.bg-context-dark .hero-circle-icon svg {
    color: white !important;
}

.bg-context-dark .card-icon {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Standalone Icons - No background, use brand colors */
.icon-standalone {
    color: var(--brand-blue) !important;
    background: none !important;
}

.bg-context-dark .icon-standalone {
    color: white !important;
}

/* Gradient Backgrounds Auto-Apply Dark Context */
.cta-gradient,
.hero-cta-section,
.sponsors-section,
.sponsor-hero,
.form-header,
.initiative-header,
.meeting-contact-card,
[style*="linear-gradient"][style*="var(--brand-navy)"],
[style*="linear-gradient"][style*="var(--brand-blue)"] {
    --text-primary: white;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --icon-color: white;
    --icon-bg-color: rgba(255, 255, 255, 0.2);
    --icon-text-color: white;
}

/* Solid Brand Color Backgrounds */
.bg-brand-navy,
.bg-brand-blue,
[style*="background-color: var(--brand-navy)"],
[style*="background-color: var(--brand-blue)"],
[style*="background: var(--brand-navy)"],
[style*="background: var(--brand-blue)"] {
    --text-primary: white;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --icon-color: white;
    --icon-bg-color: rgba(255, 255, 255, 0.2);
    --icon-text-color: white;
}

/* Light Backgrounds */
.bg-white,
.bg-gray-50,
.bg-gray-100,
[style*="background-color: white"],
[style*="background-color: #fff"],
[style*="background: white"],
[style*="background: #fff"] {
    --text-primary: var(--brand-navy);
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --icon-color: var(--brand-blue);
    --icon-bg-color: var(--brand-blue);
    --icon-text-color: white;
}

/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
    .bg-context-light {
        --text-primary: #000000;
        --text-secondary: #333333;
        --icon-color: #000000;
    }
    
    .bg-context-dark {
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --icon-color: #ffffff;
    }
}

