@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: rgba(0, 0, 0, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --accent: #ffffff;
  --accent-hover: #f0f0f0;
  --accent-light: rgba(255, 255, 255, 0.1);
  --accent-glow: rgba(255, 255, 255, 0.3);
  --glass-bg: rgba(0, 0, 0, 0.4);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-strong-bg: rgba(0, 0, 0, 0.8);
  --glass-strong-border: rgba(255, 255, 255, 0.3);
  --error: #ef4444;
  --success: #10b981;
  --purple-deep: #4c1d95;
  --purple-medium: #6d28d9;
  --purple-light: #a855f7;
  --purple-glow: rgba(139, 92, 246, 0.4);
}

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

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  color: var(--text-primary);
  position: relative;
  min-height: 100vh;
  background-color: #000000;
}

/* Background - Full Color Layer (Hidden) */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('steampunk-bg.png') center/cover no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -4;
}

/* Background - Greyscale Layer with Circle Cutout (Interactive) */
.bg-image-grey {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('steampunk-bg.png') center/cover no-repeat;
  background-position: center center;
  background-size: cover;
  filter: grayscale(1);
  z-index: -3;
  /* Initial position - will be overridden by JavaScript */
  mask: radial-gradient(circle at 50% 30%, transparent 200px, black 250px);
  -webkit-mask: radial-gradient(circle at 50% 30%, transparent 200px, black 250px);
  transition: mask 0.1s ease-out, -webkit-mask 0.1s ease-out;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 20%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0.85) 80%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: -2;
}

/* Animated background elements */
.bg-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  blur: 3xl;
}

.bg-element-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.06) 100%);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.bg-element-2 {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.06) 0%, rgba(76, 29, 149, 0.08) 100%);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite 2s;
}

.bg-element-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.04) 0%, rgba(139, 92, 246, 0.06) 100%);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite 4s;
}

/* Grid pattern overlay */
.grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDMpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
  z-index: -1;
}

/* Utility Classes */
.text-glow {
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    4px 4px 8px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(139, 92, 246, 0.4);
}

.logo-glow {
  filter: 
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 24px rgba(139, 92, 246, 0.4));
  mix-blend-mode: screen;
}

.glass {
  backdrop-filter: blur(80px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.glass-strong {
  backdrop-filter: blur(100px);
  background: var(--glass-strong-bg);
  border: 1px solid var(--glass-strong-border);
}

/* Container - Three Column Layout */
.container {
  position: relative;
  z-index: 10;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
}

/* Background space */
.background-space {
  height: auto;
  min-height: 40vh;
  padding: 4rem 0;
}

/* Hero Section - Mobile First */
.hero-section {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  text-align: center;
}

/* Hero Left - Logo */
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  position: relative;
}

.hero-logo-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-logo:hover .hero-logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(107, 114, 128, 0.5));
}

/* Hero Right - Content */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  padding: 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d1d5db 30%, #9ca3af 70%, #6b7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(107, 114, 128, 0.3));
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #d1d5db;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(209, 213, 219, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease;
  min-width: 80px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #9ca3af;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px rgba(156, 163, 175, 0.3);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Three Column Container - Mobile First */
.three-column-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Column - Profile & Social (33%) */
.left-column {
  grid-column: 1;
}

/* Right Side - Mobile First (Single Column) */
.right-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch; /* Equal height cards */
}

/* Column Content - Remove Outer Boxes */
.column-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* Left Column Needs Background Box for Logo/Social */
.left-column .column-content {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(80, 80, 80, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  text-align: center;
}

.logo-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Social Icons Row */
.social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.social-icon {
  font-size: 1.5rem;
  color: white;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Font Awesome icon adjustments */
.card-icon i, .contact-icon, .call-icon, .donate-icon {
  font-size: inherit;
}

.modal-icon i {
  font-size: 3rem;
  color: var(--accent);
}

.donation-type-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

/* Contact & Booking */
.contact-booking {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 1px solid rgba(120, 120, 120, 0.5);
  border-radius: 0.75rem;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.contact-icon, .call-icon {
  font-size: 1.2rem;
}

.book-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(80, 80, 80, 0.4);
  border: 1px solid rgba(120, 120, 120, 0.5);
  border-radius: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.book-call-btn:hover {
  transform: translateY(-2px);
  background: rgba(100, 100, 100, 0.5);
  border-color: rgba(140, 140, 140, 0.7);
  box-shadow: 0 8px 20px rgba(80, 80, 80, 0.4);
}

/* Sites Grid - Mobile Width in Each Column */
.sites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: stretch; /* Make all cards equal height */
}

/* Site Cards */
.site-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(100px);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Ensure card content grows and button stays at bottom */
.site-card .card-header {
  flex-shrink: 0;
}

.site-card .card-description {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.site-card .card-features {
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.site-card .card-button {
  flex-shrink: 0;
  margin-top: auto;
}

.site-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-card:hover::before {
  opacity: 1;
}

.site-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 255, 255, 0.1);
}

/* Card Button Text Override */
.card-button {
  color: #ffffff !important;
}

.card-button span {
  color: #ffffff !important;
}

/* Brand-Specific Card Colors */
.live-streaming-card {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 165, 0, 0.12) 25%,     /* Orange */
    rgba(255, 140, 0, 0.12) 50%,     /* Dark Orange */
    rgba(255, 69, 0, 0.12) 75%,      /* Red-Orange */
    rgba(0, 0, 0, 0.9) 100%
  ) !important;
  border: 1px solid rgba(255, 140, 0, 0.6) !important;
  box-shadow: 0 8px 32px rgba(255, 100, 0, 0.3) !important;
}

.live-streaming-card:hover {
  box-shadow: 0 16px 40px rgba(255, 100, 0, 0.5) !important;
  border-color: rgba(255, 140, 0, 0.8) !important;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%,
    rgba(255, 165, 0, 0.15) 25%,     /* Orange */
    rgba(255, 140, 0, 0.15) 50%,     /* Dark Orange */
    rgba(255, 69, 0, 0.15) 75%,      /* Red-Orange */
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
}

.live-streaming-card .card-button {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.8) 0%, rgba(255, 69, 0, 0.8) 100%) !important;
  border: 1px solid rgba(255, 140, 0, 0.6) !important;
  box-shadow: 0 4px 16px rgba(255, 100, 0, 0.4) !important;
}

.live-streaming-card .card-button:hover {
  background: linear-gradient(135deg, rgba(255, 165, 0, 1) 0%, rgba(255, 69, 0, 1) 100%) !important;
  box-shadow: 0 8px 24px rgba(255, 100, 0, 0.6) !important;
}

/* Live Card Logo Styling */
.card-logo-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.live-card-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.9));
  transition: all 0.3s ease;
}

.live-streaming-card:hover .live-card-logo {
  filter: drop-shadow(2px 2px 12px rgba(255, 140, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 69, 0, 0.6));
  transform: scale(1.02);
}

/* Adjust live card header layout */
.live-streaming-card .card-header {
  flex-direction: column;
  text-align: center;
}

.live-streaming-card .card-title-section {
  width: 100%;
}

/* ===== CSS LOGOS FOR DEV AND WEB CARDS ===== */

/* Base logo styling */
.css-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin: 1rem 0;
  transition: all 0.3s ease;
  /* No shadows by default */
  filter: none;
}

/* James Music LIVE Logo */
.live-logo {
  background: linear-gradient(135deg, #ff6500 0%, #ff4500 25%, #ff1493 75%, #dc143c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.live-streaming-card:hover .live-logo {
  filter: 
    drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.9))
    drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0px 0px 1px rgba(0, 0, 0, 1))
    drop-shadow(-1px -1px 1px rgba(0, 0, 0, 0.8));
  transform: scale(1.02);
}

/* James Music DEV Logo */
.dev-logo {
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 25%, #ff6600 75%, #ff4400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.development-card:hover .dev-logo {
  filter: 
    drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.9))
    drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0px 0px 1px rgba(0, 0, 0, 1))
    drop-shadow(-1px -1px 1px rgba(0, 0, 0, 0.8));
  transform: scale(1.02);
}

/* James Music WEB Logo */
.web-logo {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 25%, #1e40af 50%, #1e3a8a 75%, #312e81 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.main-website-card:hover .web-logo {
  filter: 
    drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.9))
    drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0px 0px 1px rgba(0, 0, 0, 1))
    drop-shadow(-1px -1px 1px rgba(0, 0, 0, 0.8));
  transform: scale(1.02);
}

/* James Music ACADEMY Logo */
.academy-logo {
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 20%, #da70d6 40%, #9370db 60%, #4169e1 80%, #00bfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.academy-card:hover .academy-logo {
  filter: 
    drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.9))
    drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0px 0px 1px rgba(0, 0, 0, 1))
    drop-shadow(-1px -1px 1px rgba(0, 0, 0, 0.8));
  transform: scale(1.02);
}

/* Logo text styling - Single Word */
.logo-text-single {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Adjust card headers for logo cards */
.development-card .card-header,
.main-website-card .card-header,
.academy-card .card-header {
  flex-direction: column;
  text-align: center;
}

.development-card .card-title-section,
.main-website-card .card-title-section,
.academy-card .card-title-section {
  width: 100%;
}

/* Mobile responsive logos */
@media (max-width: 768px) {
  /* Adjust hero section for mobile */
  .hero-section {
    min-height: 30vh;
    padding: 1rem;
    padding-bottom: 3rem;
  }
  
  .background-space {
    min-height: 25vh;
    padding: 2rem 0;
  }
  
  .css-logo {
    font-size: 2.2rem;
    filter: 
      drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.9))
      drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.7))
      drop-shadow(0px 0px 1px rgba(0, 0, 0, 1));
  }
  
  .logo-text-single {
    font-size: 2.2rem;
  }

  /* Standardize mobile spacing */
  .three-column-container {
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .column-content {
    padding: 1.5rem;
  }
  
  .left-column .column-content {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
  }

  /* Mobile card order: LIVE, ACADEMY, DEV, WEB */
  .right-side {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: stretch; /* Make all cards equal height on mobile too */
  }
  
  /* Remove ALL container spacing on mobile only */
  .middle-column,
  .right-column {
    display: contents;
    margin: 0;
    padding: 0;
  }
  
  .right-side .middle-column .column-content,
  .right-side .right-column .column-content {
    display: contents;
    margin: 0;
    padding: 0;
  }
  
  .right-side .sites-grid {
    display: contents;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  
  
  .right-side .site-card {
    padding: 1.5rem;
    margin: 0;
  }
  
  .live-streaming-card {
    order: 1;
  }
  
  .academy-card {
    order: 2;
  }
  
  .development-card {
    order: 3;
  }
  
  .main-website-card {
    order: 4;
  }
}

@media (max-width: 480px) {
  .css-logo {
    font-size: 1.8rem;
    filter: 
      drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.9))
      drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6))
      drop-shadow(0px 0px 1px rgba(0, 0, 0, 1));
  }
  
  .logo-text-single {
    font-size: 1.8rem;
  }
}

.academy-card {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 20, 147, 0.08) 20%,     /* Deep Pink */
    rgba(218, 112, 214, 0.08) 40%,    /* Orchid */
    rgba(147, 112, 219, 0.08) 60%,    /* Medium Purple */
    rgba(65, 105, 225, 0.08) 80%,     /* Royal Blue */
    rgba(0, 0, 0, 0.9) 100%
  ) !important;
  border: 1px solid rgba(255, 105, 180, 0.6) !important;
  box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3) !important;
}

.academy-card:hover {
  box-shadow: 0 16px 40px rgba(255, 105, 180, 0.5) !important;
  border-color: rgba(255, 105, 180, 0.8) !important;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(255, 20, 147, 0.12) 20%,
    rgba(218, 112, 214, 0.12) 40%,
    rgba(147, 112, 219, 0.12) 60%,
    rgba(65, 105, 225, 0.12) 80%,
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
}

.academy-card .card-button {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.8) 0%, rgba(65, 105, 225, 0.8) 100%) !important;
  border: 1px solid rgba(255, 105, 180, 0.6) !important;
  box-shadow: 0 4px 16px rgba(255, 105, 180, 0.4) !important;
}

.academy-card .card-button:hover {
  background: linear-gradient(135deg, rgba(255, 105, 180, 1) 0%, rgba(65, 105, 225, 1) 100%) !important;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.6) !important;
}

.links-card {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(50, 205, 50, 0.08) 30%,      /* Lime Green */
    rgba(0, 255, 127, 0.08) 70%,      /* Spring Green */
    rgba(0, 0, 0, 0.9) 100%
  ) !important;
  border: 1px solid rgba(50, 205, 50, 0.6) !important;
  box-shadow: 0 8px 32px rgba(50, 205, 50, 0.3) !important;
}

.links-card:hover {
  box-shadow: 0 16px 40px rgba(50, 205, 50, 0.5) !important;
  border-color: rgba(50, 205, 50, 0.8) !important;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(50, 205, 50, 0.12) 30%,
    rgba(0, 255, 127, 0.12) 70%,
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
}

.links-card .card-button {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.8) 0%, rgba(0, 255, 127, 0.8) 100%) !important;
  border: 1px solid rgba(50, 205, 50, 0.6) !important;
  box-shadow: 0 4px 16px rgba(50, 205, 50, 0.4) !important;
}

.links-card .card-button:hover {
  background: linear-gradient(135deg, rgba(50, 205, 50, 1) 0%, rgba(0, 255, 127, 1) 100%) !important;
  box-shadow: 0 8px 24px rgba(50, 205, 50, 0.6) !important;
}

.main-website-card {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(59, 130, 246, 0.10) 30%,      /* Blue */
    rgba(30, 64, 175, 0.10) 70%,       /* Dark Blue */
    rgba(0, 0, 0, 0.9) 100%
  ) !important;
  border: 1px solid rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3) !important;
}

.main-website-card:hover {
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5) !important;
  border-color: rgba(59, 130, 246, 0.8) !important;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(59, 130, 246, 0.15) 30%,
    rgba(30, 64, 175, 0.15) 70%,
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
}

.main-website-card .card-button {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(30, 64, 175, 0.8) 100%) !important;
  border: 1px solid rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4) !important;
}

.main-website-card .card-button:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 1) 0%, rgba(30, 64, 175, 1) 100%) !important;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.6) !important;
}

.development-card {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 255, 0, 0.08) 25%,         /* Green */
    rgba(255, 165, 0, 0.08) 75%,       /* Orange */
    rgba(0, 0, 0, 0.9) 100%
  ) !important;
  border: 1px solid rgba(0, 255, 127, 0.6) !important;
  box-shadow: 0 8px 32px rgba(0, 255, 127, 0.3) !important;
}

.development-card:hover {
  box-shadow: 0 16px 40px rgba(0, 255, 127, 0.5) !important;
  border-color: rgba(0, 255, 127, 0.8) !important;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 255, 0, 0.12) 25%,
    rgba(255, 165, 0, 0.12) 75%,
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
}

.development-card .card-button {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.8) 0%, rgba(255, 165, 0, 0.8) 100%) !important;
  border: 1px solid rgba(0, 255, 127, 0.6) !important;
  box-shadow: 0 4px 16px rgba(0, 255, 127, 0.4) !important;
}

.development-card .card-button:hover {
  background: linear-gradient(135deg, rgba(0, 255, 127, 1) 0%, rgba(255, 165, 0, 1) 100%) !important;
  box-shadow: 0 8px 24px rgba(0, 255, 127, 0.6) !important;
}

.production-card {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 215, 0, 0.08) 30%,      /* Gold */
    rgba(255, 193, 7, 0.08) 70%,      /* Amber */
    rgba(0, 0, 0, 0.9) 100%
  ) !important;
  border: 1px solid rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3) !important;
}

.production-card:hover {
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.5) !important;
  border-color: rgba(255, 215, 0, 0.8) !important;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(255, 215, 0, 0.12) 30%,
    rgba(255, 193, 7, 0.12) 70%,
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
}

.production-card .card-button {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8) 0%, rgba(255, 193, 7, 0.8) 100%) !important;
  border: 1px solid rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4) !important;
}

.production-card .card-button:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 193, 7, 1) 100%) !important;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6) !important;
}

.featured-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.3);
  position: relative;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  border-radius: 1rem;
  pointer-events: none;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 0.5rem;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 10px var(--purple-glow);
  position: relative;
  flex-shrink: 0;
}

.live-icon {
  animation: pulse-live 2s ease-in-out infinite;
}

.live-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.card-title-section {
  flex: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 16px rgba(0, 0, 0, 0.7);
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.6);
}

/* Card Content */
.card-description {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.875rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.4);
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Card Buttons */
.card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  transition: left 0.5s ease;
}

.card-button:hover::before {
  left: 100%;
}

.card-button:hover {
  background: #ffffff;
  color: #ffffff !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.primary-button {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #ffffff !important;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.primary-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.coming-soon {
  background: rgba(156, 163, 175, 0.1);
  border-color: rgba(156, 163, 175, 0.3);
  color: #9ca3af;
  cursor: not-allowed;
}

.coming-soon:hover {
  background: rgba(156, 163, 175, 0.2);
  border-color: rgba(156, 163, 175, 0.4);
  color: #d1d5db;
  transform: none;
  cursor: pointer;
}

/* Copyright at Bottom */
.copyright {
  padding: 3rem 1rem 2rem;
  text-align: center;
}

.copyright-text {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  text-align: center;
}

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

.modal-body p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes pulse-live {
  0%, 100% {
    box-shadow: 0 2px 10px var(--purple-glow);
  }
  50% {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.6);
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.5);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Tablet and up - Progressive Enhancement */
@media (min-width: 768px) {
  /* Hero - Side by side layout */
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }
  
  .hero-logo-image {
    width: 250px;
    height: 250px;
  }
  
  .hero-content {
    padding: 0;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.8px;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    justify-content: flex-start;
    gap: 2rem;
  }
  
  /* Three Column Layout */
  .three-column-container {
    padding: 2rem 1rem;
  }
  
  .column-content {
    max-width: 420px;
    padding: 0;
  }
  
  .left-column .column-content {
    padding: 2rem 1.5rem;
  }
  
  .logo-image {
    width: 120px;
    height: 120px;
  }
  
  .logo-subtitle {
    font-size: 0.9rem;
  }
  
  .social-row {
    gap: 1rem;
  }
  
  .social-icon-link {
    width: 3rem;
    height: 3rem;
  }
  
  .social-icon {
    font-size: 1.5rem;
    color: white;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
}

/* Large tablets and small desktops */
@media (min-width: 1024px) {
  .three-column-container {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
  
  .right-side {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  /* Force all cards to have minimum height */
  .site-card {
    min-height: 400px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .hero-logo-image {
    width: 300px;
    height: 300px;
  }
}

/* Donation Page Styles */
.donation-section {
  min-height: 50vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
}

.donation-container {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.donation-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.donation-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donation-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.donation-form-container {
  padding: 2rem;
  border-radius: 1.5rem;
}

.donation-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Donation Type Buttons */
.donation-type-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.donation-type-btn {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.donation-type-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.donation-type-btn.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.donation-type-icon {
  font-size: 1.5rem;
}

/* Amount Buttons */
.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amount-btn {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-1px);
}

.amount-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

/* Custom Amount */
.custom-amount {
  margin-top: 1rem;
}

.custom-amount-label {
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.custom-amount-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  z-index: 1;
}

.custom-amount-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.custom-amount-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Card Element */
.card-element {
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.card-element:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.card-errors {
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

/* Donor Info */
.donor-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.donor-input, .donor-message {
  padding: 0.75rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.donor-input:focus, .donor-message:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.donor-input::placeholder, .donor-message::placeholder {
  color: var(--text-secondary);
}

.donor-message {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 80px;
}

/* Submit Button */
.donate-submit-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  color: white;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.donate-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn-loader {
  display: none;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Back Link */
.back-to-main {
  text-align: center;
  margin-top: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--accent);
  transform: translateX(-4px);
}

/* Donate Button in Left Column */
.donate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(120, 120, 120, 0.5);
  cursor: pointer;
  width: 100%;
}

.donate-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #7d8ba1 0%, #5a6374 100%);
  box-shadow: 0 8px 24px rgba(107, 114, 128, 0.4);
}

.donate-icon {
  font-size: 1.1rem;
}

/* Success Modal Enhancements */
.modal-close-btn {
  background: var(--accent);
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  color: white;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.modal-close-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .donation-title {
    font-size: 1.5rem;
  }
  
  .donation-logo {
    width: 100px;
    height: 100px;
  }
  
  .donation-form-container {
    padding: 1.5rem;
  }
  
  .donation-type-buttons {
    grid-template-columns: 1fr;
  }
  
  .amount-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .donor-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Modal Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

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

/* Validation Styles */
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  display: none;
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
  animation: slideDown 0.2s ease;
}

/* Message Display */
.message-display {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

.message-display.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.message-display.error-display {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Button Loading State */
.btn-loader {
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #000000;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}


/* Donate Modal Styles */
.donate-modal-content {
  text-align: center;
}

.donate-header {
  margin-bottom: 2rem;
}

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

.donate-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.donate-amounts {
  margin-bottom: 2rem;
}

.amounts-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amount-option {
  padding: 0.75rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-option:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-1px);
}

.amount-option.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
  color: #000;
}

.amount-option.custom {
  grid-column: span 3;
}

.custom-amount-section {
  margin-top: 1rem;
  text-align: left;
}

.custom-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  z-index: 1;
}

.custom-amount-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.custom-amount-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.donate-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.donate-now-btn,
.view-full-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-now-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #000;
}

.donate-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.view-full-page-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-full-page-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Responsive donate modal */
@media (max-width: 768px) {
  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amount-option.custom {
    grid-column: span 2;
  }
  
  .donate-actions {
    gap: 0.75rem;
  }
  
  .donate-now-btn,
  .view-full-page-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}