/* CSS Variables */
:root {
  /* Updated theme for humanitarian organization with soft colors */
  --background: oklch(1 0 0); /* Pure white background */
  --foreground: oklch(0.145 0 0); /* Dark text for readability */
  --card: oklch(1 0 0); /* Slightly off-white for cards */
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);

  /* Primary green for hope and life */
  --primary: oklch(0.205 0 0); /* Soft green */
  --primary-foreground: oklch(0.985 0 0);

  /* Secondary blue for trust */
  --secondary: oklch(0.97 0 0); /* Soft blue */
  --secondary-foreground: oklch(0.205 0 0);

  /* Accent orange for warmth and energy */
  --accent: oklch(0.97 0 0); /* Soft orange */
  --accent-foreground: oklch(0.205 0 0);

  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.577 0.245 27.325);
  --border: oklch(0.922 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);

  /* Custom humanitarian colors */
  --hope-green: oklch(0.45 0.15 142);
  --trust-blue: oklch(0.55 0.12 220);
  --warmth-orange: oklch(0.65 0.18 45);
  --soft-gray: oklch(0.96 0 0);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-white{
  color: white!important;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

@keyframes pulse-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Gradient backgrounds */
.bg-gradient-hope {
  background: linear-gradient(135deg, var(--hope-green) 0%, var(--trust-blue) 100%);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, var(--warmth-orange) 0%, var(--hope-green) 100%);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background) 0%, var(--soft-gray) 50%, var(--background) 100%);
  padding-top: 80px; /* Add padding for fixed navbar */
}

/* @media (max-width: 768px) {
  .hero-section {
    align-items: flex-start;
    padding-top: 220px; 
  }
} */

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: var(--hope-green);
  opacity: 0.1;
}

.floating-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  animation: float 3s ease-in-out infinite;
}

.floating-2 {
  top: 10rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background: var(--trust-blue);
  animation: float 3s ease-in-out infinite 1s;
}

.floating-3 {
  bottom: 8rem;
  left: 25%;
  width: 5rem;
  height: 5rem;
  background: var(--warmth-orange);
  animation: float 3s ease-in-out infinite 2s;
}

.floating-4 {
  bottom: 5rem;
  right: 33%;
  width: 7rem;
  height: 7rem;
  background: var(--hope-green);
  opacity: 0.05;
  animation: float 3s ease-in-out infinite 0.5s;
}

/* Navigation */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--hope-green) 0%, var(--trust-blue) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--foreground);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hero-nav {
    padding: 1rem;
  }
  
  .nav-container {
    padding: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--background);
    flex-direction: column;
    justify-content: start;
    padding-top: 100px;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: var(--soft-gray);
    color: var(--hope-green);
    transform: translateX(10px);
  }
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-links {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    box-shadow: none;
  }
  
  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: transparent;
    color: var(--foreground);
    transform: none;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 0; 
  }
}


.hero-main {
  animation: fadeInUp 1s ease-out forwards;
}

.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-icon-item {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-soft 2s ease-in-out infinite;
}

.hero-icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-icon-item:nth-child(3) {
  animation-delay: 1s;
}

.hero-icon {
  width: 2rem;
  height: 2rem;
}

.hero-icon.hope-green {
  color: var(--hope-green);
}

.hero-icon.trust-blue {
  color: var(--trust-blue);
}

.hero-icon.warmth-orange {
  color: var(--warmth-orange);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-main {
  color: var(--foreground);
}

.title-gradient {
  background: linear-gradient(90deg, var(--hope-green) 0%, var(--trust-blue) 50%, var(--warmth-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hope-green) 0%, var(--trust-blue) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

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

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--muted-foreground);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: var(--muted-foreground);
  border-radius: 0.125rem;
  animation: pulse-soft 2s ease-in-out infinite;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Section */
.about-section {
  padding: 2rem 0; 
  background: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  animation: slideInLeft 1s ease-out forwards;
}

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

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-card, .vision-card {
  padding: 1.5rem;
  border-left: 4px solid;
  border-radius: 0.5rem;
  background: var(--soft-gray);
}

.mission-card {
  border-left-color: var(--hope-green);
  background: rgba(69, 139, 116, 0.05);
}

.vision-card {
  border-left-color: var(--trust-blue);
  background: rgba(69, 139, 116, 0.05);
}

.card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.hope-green {
  background: rgba(69, 139, 116, 0.2);
  color: var(--hope-green);
}

.card-icon.trust-blue {
  background: rgba(69, 139, 116, 0.2);
  color: var(--trust-blue);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.objectives {
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

.objectives-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.objectives-description {
  color: var(--muted-foreground);
}

.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.objective-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.objective-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.objective-card .card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.objective-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.2) 100%);
  transition: transform 0.3s ease;
}

.objective-card:hover .objective-icon {
  transform: scale(1.1);
}

.objective-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.objective-card:hover .objective-title {
  color: var(--hope-green);
}

.objective-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Activities Section */
.activities-section {
  padding: 2rem 0;
  background: var(--soft-gray);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.activity-card {
  background: var(--background);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-card-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.activity-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.activity-icon.hope-green {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.1) 100%);
  color: var(--hope-green);
}

.activity-icon.trust-blue {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.1) 100%);
  color: var(--trust-blue);
}

.activity-icon.warmth-orange {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.1) 100%);
  color: var(--warmth-orange);
}

.activity-card:hover .activity-icon {
  transform: scale(1.1) rotate(5deg);
}

.activity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  line-height: 1.3;
}

.activity-card-content {
  padding: 1.5rem 2rem;
}

.activity-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.activity-programs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  cursor: pointer;
}

.program-item:hover {
  background: var(--soft-gray);
  padding-left: 0.5rem;
}

.program-item .program-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.program-item:hover .program-icon {
  color: var(--hope-green);
}

.program-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.program-item:hover span {
  color: var(--foreground);
}

.activity-card-footer {
  padding: 1rem 2rem 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, var(--soft-gray) 0%, transparent 100%);
}

.learn-more-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--hope-green) 0%, var(--trust-blue) 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.learn-more-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;
}

.learn-more-btn:hover::before {
  left: 100%;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Activities */
@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .activity-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .activity-card-content {
    padding: 1rem 1.5rem;
  }
  
  .activity-card-footer {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .activity-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .activity-card-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .activity-icon {
    width: 3rem;
    height: 3rem;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

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

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

  .tabs-nav {
    grid-template-columns: repeat(5, 1fr);
  }

  .activity-overview {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

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

/* Structure Section */
.structure-section {
  padding: 2rem 0;
  background: var(--background);
}

.org-chart {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.org-levels {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.org-level {
  display: flex;
  justify-content: center;
}

.org-card {
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  border-radius: 0.5rem;
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.org-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.org-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.org-icon.hope-green {
  background: rgba(69, 139, 116, 0.2);
  color: var(--hope-green);
}

.org-icon.trust-blue {
  background: rgba(69, 139, 116, 0.2);
  color: var(--trust-blue);
}

.org-icon.warmth-orange {
  background: rgba(69, 139, 116, 0.2);
  color: var(--warmth-orange);
}

.org-card:hover .org-icon {
  transform: scale(1.1);
}

.org-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.org-card:hover .org-title {
  color: var(--hope-green);
}

.org-members {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.org-members.hope-green {
  background: rgba(69, 139, 116, 0.1);
  color: var(--hope-green);
}

.org-members.trust-blue {
  background: rgba(69, 139, 116, 0.1);
  color: var(--trust-blue);
}

.org-members.warmth-orange {
  background: rgba(69, 139, 116, 0.1);
  color: var(--warmth-orange);
}

.org-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.org-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--muted-foreground);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--hope-green);
  opacity: 1;
}

.key-functions {
  margin-top: 5rem;
}

.functions-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.functions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.function-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.5rem;
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.function-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.function-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.function-icon.hope-green {
  background: rgba(69, 139, 116, 0.2);
}

.function-icon.trust-blue {
  background: rgba(69, 139, 116, 0.2);
}

.function-icon.warmth-orange {
  background: rgba(69, 139, 116, 0.2);
}

.function-card:hover .function-icon {
  transform: scale(1.1);
}

.function-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.function-card:hover .function-title {
  color: var(--hope-green);
}

.function-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Coverage Section */
.coverage-section {
  background: var(--soft-gray);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Regions List */
.regions-container {
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.regions-card {
  padding: 2rem;
  background: var(--background);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.regions-title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.regions-description {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.region-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.region-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--muted-foreground);
  transition: all 0.3s ease;
}

.region-item.capital::before {
  background: var(--hope-green);
}

.region-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--hope-green);
}

.region-item:hover::before {
  background: var(--hope-green);
  width: 6px;
}

.region-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.region-icon.hope-green {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.1) 100%);
  color: var(--hope-green);
}

.region-icon.trust-blue {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.1) 100%);
  color: var(--trust-blue);
}

.region-icon.warmth-orange {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.2) 0%, rgba(69, 139, 116, 0.1) 100%);
  color: var(--warmth-orange);
}

.region-item:hover .region-icon {
  transform: scale(1.1) rotate(5deg);
}

.region-info {
  flex: 1;
}

.region-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.region-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.region-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: var(--soft-gray);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.region-status {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.region-status.active {
  background: rgba(69, 139, 116, 0.1);
  color: var(--hope-green);
}

.region-item.capital {
  background: linear-gradient(135deg, rgba(69, 139, 116, 0.05) 0%, rgba(69, 139, 116, 0.02) 100%);
  border-color: var(--hope-green);
}

.region-item.capital .region-name {
  color: var(--hope-green);
}

/* Responsive Design for Regions */
@media (max-width: 768px) {
  .regions-card {
    padding: 1.5rem;
  }
  
  .region-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .region-info {
    order: 2;
  }
  
  .region-status {
    order: 3;
  }
  
  .region-stats {
    justify-content: center;
  }
}

/* Organization Profile Section */
.organization-profile-section {
  padding: 5rem 0;
  background: var(--background);
}

.organization-profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-card {
  background: var(--soft-gray);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--hope-green);
}

.profile-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.profile-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1.1rem;
}

.vision-card {
  background: linear-gradient(135deg, var(--hope-green) 0%, var(--trust-blue) 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vision-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.objectives-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.objectives-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--soft-gray);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.objective-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.objective-number {
  width: 2rem;
  height: 2rem;
  background: var(--hope-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.objective-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.structure-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.structure-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.structure-section {
  background: var(--soft-gray);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.structure-section-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.structure-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.structure-list li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.structure-list li:last-child {
  border-bottom: none;
}

.branch-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.coverage-card {
  background: linear-gradient(135deg, var(--warmth-orange) 0%, var(--hope-green) 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coverage-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.coverage-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.coverage-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Organization Profile */
@media (max-width: 768px) {
  .organization-profile {
    gap: 1.5rem;
  }
  
  .profile-card,
  .vision-card,
  .objectives-card,
  .structure-card,
  .coverage-card {
    padding: 1.5rem;
  }
  
  .structure-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .objective-item {
    flex-direction: column;
    text-align: center;
  }
  
  .objective-number {
    align-self: center;
  }
}

.coverage-details {
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.stats-card {
  padding: 1.5rem;
  background: var(--background);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.stats-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.region-details {
  min-height: 200px;
}

.region-placeholder {
  padding: 1.5rem;
  background: var(--background);
  border: 2px dashed var(--muted-foreground);
  border-radius: 0.5rem;
  text-align: center;
  opacity: 0.3;
}

.placeholder-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: var(--muted-foreground);
}

.placeholder-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Carousel Section */
.carousel-section {
  padding: 2rem 0;
  background: var(--soft-gray);
}

.carousel-container {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 32rem;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  height: 100%;
  /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
    /* الانتقال عبر opacity بشكل سلس */
    transition: opacity 1s ease-in-out;
}

.carousel-item {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.carousel-item.active {
  opacity: 1;
  display: block;
}

.carousel-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-image img {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-item.active .carousel-overlay {
  opacity: 1;
}

.carousel-content {
  color: white;
  max-width: 32rem;
}

.carousel-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.carousel-description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-nav i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--hope-green);
}

/* Dots Indicator */
.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
  .carousel-wrapper {
    height: 24rem;
  }
  
  .carousel-title {
    font-size: 1.5rem;
  }
  
  .carousel-description {
    font-size: 1rem;
  }
  
  .carousel-overlay {
    padding: 1.5rem;
  }
  
  .carousel-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .carousel-prev {
    left: 0.5rem;
  }
  
  .carousel-next {
    right: 0.5rem;
  }
  
  .carousel-nav i {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    height: 20rem;
  }
  
  .carousel-title {
    font-size: 1.25rem;
  }
  
  .carousel-description {
    font-size: 0.875rem;
  }
  
  .carousel-overlay {
    padding: 1rem;
  }
}

/* Achievements Section */
.achievements-section {
  padding: 5rem 0;
  background: var(--background);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.achievement-card {
  padding: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.achievement-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.achievement-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.achievement-icon.hope-green {
  background: rgba(69, 139, 116, 0.2);
  color: var(--hope-green);
}

.achievement-icon.trust-blue {
  background: rgba(69, 139, 116, 0.2);
  color: var(--trust-blue);
}

.achievement-icon.warmth-orange {
  background: rgba(69, 139, 116, 0.2);
  color: var(--warmth-orange);
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
}

.achievement-number {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.achievement-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.timeline-section {
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.timeline-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 100%;
  background: linear-gradient(to bottom, var(--hope-green) 0%, var(--trust-blue) 50%, var(--warmth-orange) 100%);
  border-radius: 0.125rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-content {
  width: 50%;
  padding: 1.5rem;
  background: var(--background);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeline-content:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.timeline-year.hope-green {
  color: var(--hope-green);
}

.timeline-year.trust-blue {
  color: var(--trust-blue);
}

.timeline-year.warmth-orange {
  color: var(--warmth-orange);
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.timeline-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.timeline-dot {
  position: relative;
  z-index: 10;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--background);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-dot.hope-green {
  background: var(--hope-green);
}

.timeline-dot.trust-blue {
  background: var(--trust-blue);
}

.timeline-dot.warmth-orange {
  background: var(--warmth-orange);
}

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-cta {
  background: linear-gradient(90deg, var(--hope-green) 0%, var(--trust-blue) 50%, var(--warmth-orange) 100%);
  padding: 2rem 0;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-icon {
  margin-bottom: 1.5rem;
}

.cta-icon .heart-icon {
  width: 4rem;
  height: 4rem;
  color: white;
  animation: pulse-soft 2s ease-in-out infinite;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-white {
  background: white;
  color: var(--hope-green);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-main {
  padding: 4rem 0;
}

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

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--background);
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--hope-green);
  color: white;
}

.footer-links {
  grid-column: span 1;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--background);
}

.footer-contact {
  grid-column: span 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-icon.hope-green {
  color: var(--hope-green);
}

.contact-icon.trust-blue {
  color: var(--trust-blue);
}

.contact-icon.warmth-orange {
  color: var(--warmth-orange);
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.emergency-contact {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}

.emergency-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--background);
  margin-bottom: 0.5rem;
}

.emergency-number {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--background);
}

/* Responsive Design for larger screens */
@media (min-width: 768px) {
  .functions-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coverage-grid {
    grid-template-columns: 2fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom-content {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: right;
  }

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