:root {
  --color-mountain: #009900;             /* Dark Green (mountain shadow) */
  --color-stars: #7Cef59;                /* Mint Green (stars) */
  --color-everest: #F9e000;              /* Yellow (EVEREST text top) */
  --color-dark-bg: #1a1a1a;              /* Professional dark background */
  --color-dark-bg-alt: #2a2a2a;          /* Slightly lighter for dev sections */
  --color-light-text: #f0f0f0;           /* Soft white text */
  --color-light-text-alt: #d0d0d0;       /* Slightly dimmer text */
  --color-dark-border: #333333;          /* Dark border */
  --color-success: #28a745;              /* Standard green */
  --color-warning: #ffc107;              /* Standard yellow */
  --color-danger: #dc3545;               /* Standard red */
  --color-info: #17a2b8;                 /* Optional blue info color */

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);

  /* Extras for polish */
  --border-radius: 12px;                 /* Rounded corners */
  --transition-fast: 0.2s ease-in-out;   /* Smooth transitions */
  --font-main: 'Poppins', 'Segoe UI', sans-serif;  /* Clean modern font */
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--color-dark-bg);
  color: var(--color-light-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Elements */
.bg-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(58, 171, 226, 0.1);
  animation: float 15s infinite linear;
}

.circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 80%;
  animation-delay: 5s;
}

.circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 80%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(26, 26, 26, 0.9);
  border-bottom: 1px solid var(--color-dark-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 10px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-mountain);
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: rotate(5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.logo-main {
  font-weight: 700;
  font-size: 1.7rem;
  background: linear-gradient(to bottom, var(--color-everest) 55%, var(--color-light-text) 45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.5rem;
  color: var(--color-light-text);
  opacity: 0.8;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-everest);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--color-everest);
}

.nav-icons {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}

.nav-icon {
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-light-text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-icon:hover {
  color: var(--color-everest);
  transform: scale(1.1);
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-mountain);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.mobile-toggle.active {
  transform: rotate(90deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 999;
}

.mobile-menu-overlay.show {
  display: block;
}

.mobile-menu-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 0;
  width: 370px;
  height: 100vh;
  background: var(--color-dark-bg);
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  padding: 2rem;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  text-align: center;
  color: var(--color-mountain);
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu a {
  margin-bottom: 1.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-dark-border);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-everest);
  transform: translateX(-5px);
}

.mobile-menu-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  align-items: center;
}

.mobile-menu-icon {
  font-size: 2.0rem;
  cursor: pointer;
  color: #f0f0f0;
  transition: color 0.2s ease;
}

.mobile-menu-icon:hover {
  color: var(--color-everest);
}

/* Main Content Styles */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-everest);
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-everest);
  margin: 1rem auto;
  border-radius: 2px;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-everest);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: var(--color-light-text-alt);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: #006400;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.btn-university {
  background-color: #F9D423;
  color: #333;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.btn-secondary {
  background-color: var(--color-stars);
  color: #333;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-everest);
  color: var(--color-everest);
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

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

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.stat-item {
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  min-width: 150px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-everest);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-light-text-alt);
}

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

/* Features Section */
.features {
  background-color: var(--color-dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-dark-bg-alt);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-dark-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-everest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-everest);
  transition: transform 0.3s ease;
}

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

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--color-mountain);
}

.feature-card p {
  color: var(--color-light-text-alt);
}

/* Complaint System */
.complaint-system {
  background-color: var(--color-dark-bg);
}

.complaint-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-dark-bg-alt);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-dark-border);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.complaint-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-everest);
}

.complaint-form p {
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--color-light-text-alt);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--color-light-text);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-dark-border);
  border-radius: 8px;
  font-family: inherit;
  background-color: var(--color-dark-bg);
  color: var(--color-light-text);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-everest);
  box-shadow: 0 0 0 3px rgba(58, 171, 226, 0.2);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.8rem;
}

.status-received {
  background-color: var(--color-info);
  color: white;
}

.status-review {
  background-color: var(--color-warning);
  color: black;
}

.status-resolved {
  background-color: var(--color-success);
  color: white;
}

/* Team Members Section */
.team {
  background-color: var(--color-dark-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: var(--color-dark-bg-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--color-dark-border);
  position: relative;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.member-image {
  height: 250px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-text);
  position: relative;
  overflow: hidden;
}

.member-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

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

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-details {
  padding: 1.8rem 1.5rem;
  position: relative;
  z-index: 2;
}

.member-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-stars);
}

.member-role {
  font-size: 0.95rem;
  color: var(--color-everest);
  margin-bottom: 1rem;
  font-weight: 600;
}

.member-bio {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--color-light-text-alt);
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.member-social a {
  color: black;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  width: 48px;
  height: 48px;
  background: var(--color-stars);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.member-social a:hover {
  transform: scale(1.1);
  background: darkgreen
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* Events Section */
.events {
  background-color: var(--color-dark-bg);
}

.events-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.events-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.8rem;
  padding: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-everest) rgba(0,0,0,0.3);
  padding-bottom: 2rem;
}

.events-scroll::-webkit-scrollbar {
  height: 8px;
}

.events-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.events-scroll::-webkit-scrollbar-thumb {
  background: var(--color-everest);
  border-radius: 4px;
}

.event-card {
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--color-dark-bg-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-dark-border);
  flex-shrink: 0;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-image {
  height: 180px;
  background-color: var(--color-stars);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.event-card:hover .event-image {
  background-color: var(--color-everest);
}

.event-details {
  padding: 1.8rem;
}

.event-date {
  font-size: 0.95rem;
  color: var(--color-stars);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.event-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-mountain);
}

.event-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-light-text-alt);
}

/* Testimonials */
.testimonials {
  background-color: rgba(255,255,255,0.05);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-dark-bg-alt);
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--color-dark-border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 3.5rem;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.1;
  color: var(--color-everest);
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-stars);
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0;
  color: var(--color-mountain);
  font-size: 1.1rem;
}

.author-info p {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Mission Section */
.mission {
  background-color: var(--color-dark-bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: var(--color-dark-bg-alt);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-dark-border);
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mission-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-everest);
}

.mission-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--color-mountain);
}

.mission-card p {
  color: var(--color-light-text-alt);
}

.cac {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--font-main);
  background-color: rgba(255,255,255,0.00);
  margin-top: -30px;
}

.cac img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.cac img:hover {
  transform: scale(1.02);
}

.cac h2 {
  margin: 10px 0 5px;
  font-size: 24px;
  color: var(--color-everest);
  text-align: center;
}

.cac p {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--color-light-text-alt);
  text-align: center;
}

.cac small {
  font-size: 13px;
  color: var(--color-light-text-alt);
  text-align: center;
}

/* Contact Section */
.contact {
  background-color: rgba(255,255,255,0.05);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--color-everest);
  margin-bottom: 0.5rem;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  color: var(--color-light-text-alt);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--color-everest);
  margin-top: 0.2rem;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  margin: 0;
  color: var(--color-mountain);
  font-size: 1.1rem;
}

.contact-text p, .contact-text a {
  margin: 0.3rem 0 0;
  color: var(--color-light-text-alt);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: var(--color-everest);
}

.contact-social {
  margin-top: 1rem;
}

.contact-social h4 {
  margin-bottom: 1rem;
  color: var(--color-mountain);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  font-size: 2.5rem;
  text-align: center;
}

.social-links a {
  color: var(--color-mountain);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--color-everest);
  transform: translateY(-5px) scale(1.1);
  background: rgba(0,0,0,0.2);
}

.contact-map {
  height: 100%;
  min-height: 300px;
  background-color: rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-text);
  border: 1px solid var(--color-dark-border);
  transition: all 0.3s ease;
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Donation CTA */
.donation-cta {
  background-color: var(--color-mountain);
  color: white;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.donation-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.donation-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.donation-cta h2 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.donation-cta p {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Account Details Styles */
.account-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

.account-details.show {
  max-height: 1000px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(58, 171, 226, 0.3);
}

.account-details h3 {
  color: var(--color-everest);
  margin-bottom: 1rem;
  text-align: center;
}

.bank-name {
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: var(--color-light-text-alt);
}

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

.account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(58, 171, 226, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.account-item:hover {
  background: rgba(58, 171, 226, 0.3);
  transform: translateY(-2px);
}

.account-info {
  display: flex;
  flex-direction: column;
}

.currency {
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.account-number {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--color-light-text);
}

.copy-btn {
  background: none;
  border: none;
  color: var(--color-everest);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: scale(1.1);
}

.copy-btn:hover::after {
  content: "Copy";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-light-text);
  color: var(--color-dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Footer */
footer {
  background-color: var(--color-dark-bg-alt);
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  height: 230px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-mountain);
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: rotate(5deg) scale(1.05);
}

.footer-logo p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.footer-social a {
  color: white;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
  background: rgba(255,255,255,0.2);
}

.footer-links h3 {
  color: var(--color-everest);
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-everest);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.2s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-everest);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-everest);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-newsletter input {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: rgba(255,255,255,0.1);
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  outline: none;
  background-color: rgba(255,255,255,0.2);
}

.footer-newsletter input::placeholder {
  color: #666;
}

.footer-newsletter button {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-everest);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: var(--color-stars);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
  font-size: 0.9rem;
  position: relative;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  opacity: 1;
  color: var(--color-everest);
}

/* Chat System */
.chat-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark-bg);
  z-index: 1001;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

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

.chat-header {
  padding: 1.5rem;
  background: var(--color-mountain);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.chat-header h1, .chat-header h3 {
  margin: 0;
  color: white;
}

.chat-close {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-close:hover {
  transform: rotate(90deg);
}

.chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  margin-bottom: 0.5rem;
  max-width: 80%;
  padding: 1rem;
  border-radius: 12px;
  word-wrap: break-word;
  animation: fadeIn 0.3s ease;
  position: relative;
}

.message-user {
  background-color: var(--color-everest);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.message-other {
  background-color: rgba(255,255,255,0.1);
  border-bottom-left-radius: 4px;
  margin-right: auto;
}

.message-sender {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.message-time {
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: right;
  margin-top: 0.5rem;
}

.chat-input {
  display: flex;
  padding: 1.5rem;
  border-top: 1px solid var(--color-dark-border);
  background: var(--color-dark-bg);
}

.chat-input input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--color-dark-border);
  border-radius: 8px;
  margin-right: 0.8rem;
  background-color: var(--color-dark-bg);
  color: var(--color-light-text);
  font-size: 1rem;
  transition: border 0.3s ease;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--color-everest);
  box-shadow: 0 0 0 3px rgba(58, 171, 226, 0.2);
}

.chat-input button {
  padding: 1rem 1.8rem;
  background-color: var(--color-mountain);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.chat-input button:hover {
  background-color: var(--color-everest);
  transform: translateY(-2px);
}

/* Login Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1002;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--color-dark-bg-alt);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

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

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

.modal-header h2 {
  color: var(--color-everest);
  margin-bottom: 0.5rem;
}

.modal-header p {
  opacity: 0.8;
  color: var(--color-light-text-alt);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-light-text);
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-everest);
}

.form-footer {
  text-align: center;
  margin-top: 2rem;
}

.form-footer p {
  margin-bottom: 0.5rem;
  color: var(--color-light-text-alt);
}

.form-footer a {
  color: var(--color-everest);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.form-footer a:hover {
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-map {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
    height: 70px;
  }
  
  nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
  }

  .mobile-menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .complaint-form,
  .modal-content {
    padding: 1.5rem;
  }
  
  .event-card {
    min-width: 260px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    width: 100%;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.fa-spinner {
  margin-right: 8px;
}

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

.fa-spin {
  animation: fa-spin 1s infinite linear;
}