/* Liquid Glass Design System */
:root {
  /* Color Palette from Reference Image */
  --primary: #4f46e5; /* Deep blue/purple for headings */
  --primary-light: #6366f1;
  --secondary: #ec4899; /* Pink for gradients */
  --secondary-light: #f472b6;
  --accent-blue: #3b82f6; /* Light blue */
  --accent-cyan: #06b6d4; /* Cyan */
  --accent-green: #10b981; /* Vibrant green */
  --accent-purple: #8b5cf6; /* Light purple */
  --accent-pink: #f472b6; /* Light pink */
  
  /* Background Colors */
  --bg-primary: #ffffff; /* White background */
  --bg-secondary: #f8fafc; /* Very light grey */
  --bg-dark: #1e293b; /* Dark blue/black for footer */
  
  /* Text Colors */
  --text-primary: #1e293b; /* Dark grey for body text */
  --text-secondary: #64748b; /* Medium grey for subtitles */
  --text-light: #94a3b8; /* Light grey for secondary text */
  
  /* Glass & Liquid Effects */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --liquid-blur: blur(10px);
  --liquid-border: 1px solid rgba(255, 255, 255, 0.3);
  
  /* Enhanced Shadows */
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-liquid: 0 4px 20px rgba(0, 0, 0, 0.08);
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 16px;
  --radius-liquid: 20px;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem; /* Added for new spacing */
}

/* Base Styles with Liquid Glass */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  padding-top: 120px; /* Account for fixed header */
}

/* Responsive body padding for mobile */
@media (max-width: 768px) {
  body {
    padding-top: 100px; /* Slightly less padding on mobile */
  }
}

/* Liquid Glass Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

/* Main content wrapper to ensure proper spacing */
main, .main-content {
  padding-top: 0; /* Remove any existing padding-top */
  min-height: calc(100vh - 120px); /* Account for header height */
}

/* Liquid Glass Sections */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Ensure first section has extra top padding for fixed header */
.section:first-of-type {
  padding-top: calc(var(--space-2xl) + 2rem);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  border-radius: var(--radius-liquid);
  box-shadow: var(--shadow-liquid);
  z-index: -1;
}

/* Liquid Glass Cards */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  box-shadow: var(--shadow-liquid);
  position: relative;
  overflow: hidden;
  transition: none;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.4s ease; /* Reduced from 0.6s to 0.4s */
  opacity: 0;
}

.card:hover::before {
  opacity: 1;
  animation: liquidShine 1.5s ease-in-out;
}

@keyframes liquidShine {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

.card:hover {
  transform: none;
  box-shadow: none;
}

/* Liquid Glass Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-medium);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: none;
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  color: var(--text-primary);
}

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

.btn:hover::before {
  left: 100%;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: white;
  box-shadow: var(--shadow-medium);
}

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

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

/* Liquid Glass Navigation */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border-bottom: var(--liquid-border);
  padding: var(--space-md) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px; /* Increased max-width to accommodate all navigation items */
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.navbar-logo {
  width: 160px; /* Increased from 40px to 160px (4x larger) */
  height: 160px; /* Increased from 40px to 160px (4x larger) */
}

.navbar-brand .logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.navbar-brand .main-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.navbar-brand .tagline {
  font-size: 0.7rem; /* Reduced from text-xs (0.75rem) to 0.7rem */
  color: var(--text-secondary);
  line-height: 1.2;
  font-weight: 400;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap; /* Prevent wrapping of navigation items */
  overflow: visible; /* Allow content to be visible */
  width: auto; /* Let width adjust to content */
  min-width: max-content; /* Ensure minimum width fits all items */
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-small);
  white-space: nowrap; /* Prevent text wrapping */
  line-height: 1; /* Ensure single line height */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

/* Ensure navigation items with longer text fit properly */
.nav-link {
  min-width: max-content; /* Ensure minimum width to fit content */
  text-align: center;
}

/* Ensure navigation fits on medium screens */
@media (min-width: 769px) and (max-width: 1200px) {
  .navbar-nav {
    gap: var(--space-md); /* Reduce gap on medium screens */
  }
  
  .nav-link {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.9rem; /* Slightly smaller font on medium screens */
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-small);
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .navbar {
    padding: var(--space-sm) 0; /* Reduce padding on mobile */
  }
  
  .navbar-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .navbar-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--liquid-blur);
    border: var(--liquid-border);
    border-top: none;
    padding: var(--space-md);
    gap: var(--space-sm);
  }
}

/* Liquid Glass Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(79, 70, 229, 0.05) 0%, 
    rgba(236, 72, 153, 0.05) 50%, 
    rgba(59, 130, 246, 0.05) 100%);
  z-index: -1;
}

.hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  border-radius: var(--radius-liquid);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* Hero Stats Card */
.hero-stats-card {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  color: var(--text-primary);
  padding: var(--space-xl);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-liquid);
}

.hero-stats-card .w-16 {
  width: 4rem;
}

.hero-stats-card .h-16 {
  height: 4rem;
}

.hero-stats-card .mr-4 {
  margin-right: 1rem;
}

.hero-stats-card .mb-6 {
  margin-bottom: 1.5rem;
}

.hero-stats-card .mb-8 {
  margin-bottom: 2rem;
}

.hero-stats-card .mt-8 {
  margin-top: 2rem;
}

.hero-stats-card .pt-6 {
  padding-top: 1.5rem;
}

.hero-stats-card .space-y-6 > * + * {
  margin-top: 1.5rem;
}

.hero-stats-card .space-y-2 > * + * {
  margin-top: 0.5rem;
}

.hero-stats-card .grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stats-card .gap-6 {
  gap: 1.5rem;
}

.hero-stats-card .text-3xl {
  font-size: 1.875rem;
}

.hero-stats-card .text-sm {
  font-size: 0.875rem;
}

.hero-stats-card .text-xl {
  font-size: 1.25rem;
}

.hero-stats-card .text-2xl {
  font-size: 1.5rem;
}

.hero-stats-card .font-bold {
  font-weight: 700;
}

.hero-stats-card .font-semibold {
  font-weight: 600;
}

.hero-stats-card .opacity-80 {
  opacity: 0.8;
}

.hero-stats-card .opacity-90 {
  opacity: 0.9;
}

.hero-stats-card .leading-relaxed {
  line-height: 1.625;
}

.hero-stats-card .border-white\/20 {
  border-color: rgba(0, 0, 0, 0.1);
}

.hero-stats-card .bg-white\/20 {
  background-color: rgba(0, 0, 0, 0.05);
}

.hero-stats-card .rounded-2xl {
  border-radius: 1rem;
}

.hero-stats-card .rounded-full {
  border-radius: 9999px;
}

.hero-stats-card .h-3 {
  height: 0.75rem;
}

.hero-stats-card .transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hero-stats-card .duration-1000 {
  transition-duration: 1000ms;
}

/* Hero Stats Card Colors */
.hero-stats-card .text-blue-400 {
  color: #60a5fa;
}

.hero-stats-card .text-purple-400 {
  color: #a78bfa;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: var(--space-2xl);
}

.cta-card .section-title {
  color: white;
  -webkit-text-fill-color: white;
}

.cta-card .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Prayer Card */
.prayer-card {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: white;
  text-align: center;
  padding: var(--space-2xl);
}

.prayer-card .section-title {
  color: white;
  -webkit-text-fill-color: white;
}

.prayer-card .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Prayer Stats Card */
.prayer-stats-card {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: white;
  border: none;
  box-shadow: var(--shadow-strong);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
}

/* Enhanced Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

/* Enhanced Feature Cards */
.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  border-radius: var(--radius-medium);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-liquid);
  transition: none;
}

.feature-card:hover {
  transform: none;
  box-shadow: none;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card li {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.feature-card .text-left {
  text-align: left;
}

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

.feature-card .mt-4 {
  margin-top: 1rem;
}

.feature-card .mt-6 {
  margin-top: 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

/* Enhanced Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  border-radius: var(--radius-medium);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-liquid);
  transition: none;
}

.stat-card:hover {
  transform: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: block;
}

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

/* Enhanced Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Liquid Glass Newsletter */
.newsletter {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  border-radius: var(--radius-large);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-liquid);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: var(--space-lg) auto 0;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-md);
  border: var(--liquid-border);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--liquid-blur);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.newsletter-button {
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: var(--radius-medium);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  transform: none;
  box-shadow: none;
}

/* Liquid Glass Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h3 {
  color: var(--accent-blue);
  margin-bottom: var(--space-md);
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-section a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* Liquid Glass Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.shadow-custom {
  box-shadow: var(--shadow-liquid);
}

.rounded-custom {
  border-radius: var(--radius-liquid);
}

.transition-smooth {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Reduced from 0.6s to 0.4s */
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
}

.hover-lift:hover {
  transform: none;
  box-shadow: none;
}

.hover-scale:hover {
  transform: none;
}

.hover-glow:hover {
  box-shadow: none;
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Spacing Utilities */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }

/* Text Utilities */
.text-center { text-align: center; }
.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; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-800 { color: #1f2937; }
.text-blue-600 { color: #2563eb; }
.text-primary { color: var(--primary); }
.text-white { color: white; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }

/* Grid Utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Responsive Utilities */
.hidden { display: none; }
.md\:flex { display: none; }
.md\:hidden { display: block; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:mt-0 { margin-top: 0; }
}

/* Block Utilities */
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-50 { z-index: 50; }
.z-1000 { z-index: 1000; }

/* Border and Background Utilities */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white { border-color: white; }
.border-gray-300 { border-color: #d1d5db; }
.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-800 { background-color: #1f2937; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-green-500 { background-color: #10b981; }
.bg-purple-500 { background-color: #8b5cf6; }
.bg-orange-500 { background-color: #f59e0b; }
.bg-red-500 { background-color: #ef4444; }

/* Opacity Utilities */
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-75 { opacity: 0.75; }

/* Transform Utilities */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; }
.translate-y-0 { --tw-translate-y: 0px; }
.scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }

/* Animation Utilities */
.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* Liquid Glass Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  border: var(--liquid-border);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--liquid-blur);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Liquid Glass Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Liquid Glass Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
}

/* Liquid Glass Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: liquidShine 1.5s ease-in-out infinite;
}

/* Liquid Glass Success States */
.success {
  background: linear-gradient(135deg, var(--accent-green), #34d399);
  color: white;
}

/* Liquid Glass Error States */
.error {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

/* Liquid Glass Warning States */
.warning {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

/* Hero Stats Card Progress Bars */
.hero-stats-card .progress-container {
  margin-bottom: 1.5rem;
}

.hero-stats-card .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.hero-stats-card .progress-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.hero-stats-card .progress-percentage {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.hero-stats-card .progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}

.hero-stats-card .progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  position: relative;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stats-card .progress-indicator {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Specific progress bar widths */
.hero-stats-card .progress-95 .progress-fill {
  width: 95%;
}

.hero-stats-card .progress-88 .progress-fill {
  width: 88%;
}

.hero-stats-card .progress-92 .progress-fill {
  width: 92%;
}

/* Enhanced progress bar animations */
.hero-stats-card .progress-fill {
  animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-width);
  }
}

/* Progress bar hover effects */
.hero-stats-card .progress-container:hover .progress-fill {
  filter: none;
  box-shadow: none;
}

.hero-stats-card .progress-container:hover .progress-indicator {
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Impact Section - Redesigned */
.impact {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="50" cy="50" r="40" fill="url(%23g)"/></svg>') repeat;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: none; }
  50% { transform: none; }
}

.impact .section-header {
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.impact .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #f3e8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.impact .section-subtitle {
  font-size: 1.25rem;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Impact Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* Redesigned Stat Cards - Smaller Size */
.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-lg);
  border-radius: 20px;
  text-align: center;
  transition: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.4s ease-out; /* Reduced from 0.6s to 0.4s */
}

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

.stat-card:hover {
  transform: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced Stat Icon - Smaller Size */
.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: none;
}

.stat-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::after {
  opacity: 0;
}

.stat-icon i {
  font-size: 1.8rem;
  color: white;
  z-index: 1;
  position: relative;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 0% 50%; }
}

/* Enhanced Stat Number with Animation - Smaller Size */
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  display: inline-block;
}

/* Counter Animation */
.stat-number.animate {
  animation: numberPulse 0.6s ease-out;
}

@keyframes numberPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced Stat Title - Smaller Size */
.stat-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Stat Description - Smaller Size */
.stat-description {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* Scroll-triggered animations */
.stat-card.scroll-animate {
  animation: cardSlideUp 0.8s ease-out forwards;
}

@keyframes cardSlideUp {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Design - Ensure single line on larger screens */
@media (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .stat-card {
    padding: var(--space-md);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
  }
  
  .stat-card {
    padding: var(--space-sm);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-title {
    font-size: 1rem;
  }
  
  .stat-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .stat-card {
    padding: var(--space-lg);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-icon {
    width: 80px;
    height: 80px;
  }
  
  .stat-icon i {
    font-size: 2rem;
  }
  
  .impact .section-title {
    font-size: 2.5rem;
  }
}

/* Donation Cards Styling */
.donation-card {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-blur);
  border: var(--liquid-border);
  padding: var(--space-2xl);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-liquid);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.donation-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.donation-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.donation-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.donation-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

/* Bank Details Styling */
.bank-details {
  margin-bottom: var(--space-xl);
}

.bank-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.detail-item .label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-item .value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Donation Instructions */
.donation-instructions {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.instruction-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.info-icon {
  font-size: 1.25rem;
  color: var(--primary);
}

.donation-instructions h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.donation-instructions p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.donation-instructions strong {
  color: var(--primary);
}

/* PassionLife Section */
.passionlife-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.passionlife-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.passionlife-btn {
  width: 100%;
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  padding: var(--space-md) var(--space-lg);
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: var(--space-md);
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
}

.security-note i {
  color: var(--success);
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .donation-card {
    padding: var(--space-lg);
  }
  
  .donation-header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .donation-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Online Donation Options */
.online-donation-options {
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
}

.online-donation-options h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.payment-method {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.method-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-weight: 600;
  color: var(--text-primary);
}

.method-header i {
  color: var(--primary);
  font-size: 1.125rem;
}





/* Payment Gateway Section */
.gateway-section {
  text-align: center;
}

.gateway-btn {
  width: 100%;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.gateway-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.gateway-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Amount Input Styling */
.amount-input {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.amount-input label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.amount-input input {
  width: 100%;
  max-width: 200px;
  padding: var(--space-md);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.amount-input input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Payment Security Badges */
.payment-security {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-sm);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 500;
}

.badge i {
  font-size: 0.875rem;
}

/* Alert Messages */
.alert-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  animation: slideInRight 0.3s ease;
}

.alert-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
}

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

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary);
}

.alert-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.alert-close:hover {
  opacity: 1;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .alert-message {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Traditional Banking Section */
.traditional-banking {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
}

.traditional-banking h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.traditional-banking .method-description {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* Success Message */
.success-message {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-sm);
  text-align: center;
  color: var(--success);
  font-weight: 500;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .online-donation-options {
    padding: var(--space-md);
  }
  
  .payment-method {
    padding: var(--space-sm);
  }
  
  .upi-id {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .qr-placeholder {
    width: 100px;
    height: 100px;
  }
  
  .qr-placeholder i {
    font-size: 1.5rem;
  }
}



/* UPI to Bank Account Section */
.upi-bank-details {
  text-align: center;
}

.upi-bank-details .method-description {
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.quick-bank-transfer {
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.transfer-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

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

.step span:last-child {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

/* Expanded Bank Details for UPI */
.upi-bank-details-expanded {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: white;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  text-align: left;
}

.bank-details-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.bank-details-header h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
}

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

.upi-instructions {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.instruction-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-sm);
}

.instruction-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.instruction-item span {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Secondary Button Styling */
.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--primary);
}

.btn-medium {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* Responsive Design for UPI Section */
@media (max-width: 768px) {
  .transfer-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .step span:last-child {
    font-size: 0.7rem;
  }
  
  .upi-bank-details-expanded {
    padding: var(--space-md);
  }
  
  .instruction-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
}
