/* Modern Get Involved Page - Complete Redesign */

:root {
  --primary: #13678A;
  --primary-light: #1a7ba3;
  --primary-dark: #0d4d6b;
  --accent: #67a876;
  --accent-light: #7db889;
  --accent-dark: #528960;
  --background: #F9FAFB;
  --surface: #FFFFFF;
  --text: #1F2937;
  --text-light: #4B5563;
  --text-muted: #9CA3AF;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #13678A 0%, #1a7ba3 100%);
  --gradient-accent: linear-gradient(135deg, #67a876 0%, #7db889 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}



/* Modern Hero Section */
.Section-1 {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.Section-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/abs.jpg") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.Section-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(103, 168, 118, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(26, 123, 163, 0.2) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.Section-1 h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.hero-btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-lg);
}

.hero-btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Main Content Section */
.Section-2 {
  padding: 8rem 0;
  background: white;
  position: relative;
}

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

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-intro p {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Modern Card Grid */
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.involvement-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.involvement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.involvement-card:hover::before {
  transform: scaleX(1);
}

.involvement-card:nth-child(2)::before {
  background: var(--gradient-accent);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.involvement-card:nth-child(2) .card-icon {
  background: var(--gradient-accent);
}

.involvement-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.involvement-card .section-subtitle {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.involvement-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Enhanced Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
}

.feature-list li:hover {
  background: #F9FAFB;
}

.feature-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.feedback-category {
  background: #F9FAFB;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.feedback-category h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feedback-category p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: normal;
}

.feedback-category ul {
  list-style: none;
  padding: 0;
}

.feedback-category li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feedback-category li::before {
  content: "→";
  color: var(--accent);
  font-weight: bold;
}

/* Modern Buttons */
.Buttons {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.Buttons:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: var(--gradient-accent);
}

.involvement-card:nth-child(2) .Buttons {
  background: var(--gradient-accent);
}

.involvement-card:nth-child(2) .Buttons:hover {
  background: var(--gradient-primary);
}

/* Special Note Styling */
.feedback-note {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .Section-1 {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .Section-2 {
    padding: 4rem 0;
  }
  
  .involvement-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .involvement-card {
    padding: 2rem;
  }
  
  .section-intro {
    margin-bottom: 4rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .feedback-types {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feedback-category {
    padding: 1.5rem;
  }
  
  /* Hide become a beta tester section on mobile */
  .involvement-card:nth-child(3) {
    display: none !important;
  }
  
  /* Fix header font size (reduce by 10%) and add left/right padding */
  .Section-1 h1 {
    font-size: 2.7rem !important;
    padding: 0 2rem !important;
  }
  
  /* Add more left/right padding to 'join us in revolutionizing' text */
  .hero-subtitle {
    padding: 0 2rem !important;
    font-size: 1.3rem !important;
  }
  
  /* Left justify text except button and titles */
  .involvement-card p,
  .feedback-category p,
  .feedback-note {
    text-align: left !important;
  }
  
  .involvement-card h3,
  .involvement-card .section-subtitle {
    text-align: left !important;
  }
  
  /* Keep buttons centered */
  .Buttons {
    display: block !important;
    text-align: center !important;
    margin: 2rem auto !important;
    width: fit-content !important;
  }
  
  /* Left justify feedback text */
  .feedback-types .feedback-category h4,
  .feedback-types .feedback-category p,
  .feedback-types .feedback-category ul,
  .feedback-types .feedback-category li {
    text-align: left !important;
  }
  
  /* Adjust column padding for better mobile spacing */
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .involvement-card {
    padding: 1.5rem;
  }
  
  .Section-2 {
    padding: 3rem 0;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  .involvement-card h3 {
    font-size: 1.5rem;
  }
}

/* Add smooth scrolling and focus states */
html {
  scroll-behavior: smooth;
}

.Buttons:focus,
.hero-btn:focus {
  outline: 3px solid rgba(103, 168, 118, 0.5);
  outline-offset: 3px;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.involvement-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.involvement-card:nth-child(1) { animation-delay: 0.1s; }
.involvement-card:nth-child(2) { animation-delay: 0.2s; }
.involvement-card:nth-child(3) { animation-delay: 0.3s; }