﻿:root {
  --bg: #081018;
  --surface: #0d1826;
  --surface-soft: #122033;
  --text: #ecf4ff;
  --muted: #9ab0c6;
  --accent: #ff8f3f;
  --accent-2: #2ed3a7;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #ffffff;
  color: #081018;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 20%, rgba(46, 211, 167, 0.2), transparent 35%),
    radial-gradient(circle at 88% 0%, rgba(255, 143, 63, 0.3), transparent 35%),
    linear-gradient(140deg, #050b12 0%, #081018 40%, #101c2d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.light-mode {
  --text: #0f172a;
  --muted: #334155;
  --line: rgba(15, 23, 42, 0.18);
  --accent: #d97706;
  --accent-2: #0f766e;
  background:
    radial-gradient(circle at 8% 20%, rgba(15, 118, 110, 0.2), transparent 35%),
    radial-gradient(circle at 88% 0%, rgba(217, 119, 6, 0.24), transparent 35%),
    linear-gradient(140deg, #f8fafc 0%, #f1f5f9 45%, #e2e8f0 100%);
}

body.light-mode .site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

body.light-mode .panel,
body.light-mode .service-card,
body.light-mode .contact,
body.light-mode .photo-card {
  background: rgba(255, 255, 255, 0.9);
}

body.light-mode input,
body.light-mode textarea,
body.light-mode select {
  background: #ffffff;
  color: #0f172a;
}

body.light-mode .donate-box {
  background: rgba(255, 255, 255, 0.9);
}

body.light-mode .donate-form input,
body.light-mode .donate-form select {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  background: rgba(5, 11, 18, 0.95);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.loader-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-toggle {
  position: static;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 11, 18, 0.9);
  color: var(--text);
  padding: 0.46rem 0.82rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
}

body.light-mode .theme-toggle {
  background: rgba(255, 255, 255, 0.95);
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  z-index: -2;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: -80px;
  background: rgba(255, 143, 63, 0.28);
}

.orb-2 {
  width: 300px;
  height: 300px;
  right: -120px;
  top: 45%;
  background: rgba(46, 211, 167, 0.18);
  animation-delay: -4s;
}

.orb-3 {
  width: 160px;
  height: 160px;
  left: 50%;
  bottom: -70px;
  background: rgba(95, 153, 255, 0.22);
  animation-delay: -8s;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 11, 18, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  max-width: 150px;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav a.active {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

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

.hero {
  padding: 4rem 0 2rem;
}

.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 2rem 0 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 143, 63, 0.2);
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 16, 24, 0.88), rgba(13, 24, 38, 0.82));
  z-index: 1;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 15s infinite;
}

.hero-banner-bg:nth-child(1) {
  animation-delay: 0s;
  background-image: url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=1920&q=80');
}

.hero-banner-bg:nth-child(2) {
  animation-delay: 5s;
  background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920&q=80');
}

.hero-banner-bg:nth-child(3) {
  animation-delay: 10s;
  background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1920&q=80');
  background-position: center 60%;
}

@keyframes slideShow {
  0% { opacity: 0; }
  6.67% { opacity: 1; }
  33.33% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-slide {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-content-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 400px;
  padding-left: 0;
}

.hero-text-box {
  max-width: 500px;
  text-align: left;
  margin-left: 0;
}

.hero-text-box h1,
.hero-text-box .hero-copy {
  white-space: normal;
  max-width: 100%;
  color: #ffffff;
}

body.light-mode .hero-banner h1,
body.light-mode .hero-banner .hero-copy {
  color: #ffffff;
}

.quick-donate {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.quick-donate h2 {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

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

.donate-card {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.donate-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: linear-gradient(130deg, rgba(255, 143, 63, 0.15), rgba(255, 143, 63, 0.05));
}

.donate-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.donate-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(46, 211, 167, 0.1), rgba(46, 211, 167, 0.02));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-2);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.stat-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .donate-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-banner {
    padding: 5rem 0 3rem;
  }
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
}

.hero h1,
.hero-banner h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  max-width: 100%;
}

#about h1 {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
}

.hero-copy {
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
  margin: 1.2rem 0 0;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--accent), #ffb067);
  color: #101014;
  text-decoration: none;
  font-weight: 700;
  padding: 0.74rem 1.25rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 143, 63, 0.28);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover,
.btn-outline:hover {
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.1);
}

.section {
  padding: 4.3rem 0;
}

.section-head {
  max-width: 60ch;
  margin-bottom: 1.6rem;
}

.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
  transition: transform 0.35s ease, border-color 0.35s ease;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 211, 167, 0.2),
    0 0 20px rgba(46, 211, 167, 0.3),
    0 0 40px rgba(255, 82, 82, 0.2),
    inset 0 0 30px rgba(46, 211, 167, 0.05);
  animation: borderGlow 3s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 143, 63, 0.6);
}


.service-card h3 {
  margin-bottom: 0.65rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.program-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.readmore-btn {
  display: inline-flex;
  margin-top: 0.85rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 18, 29, 0.7);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.member-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.member-salman {
  object-position: center 12%;
}

.member-haaiqa {
  object-position: center 18%;
}

.member-mehreen {
  object-position: center 14%;
}

.panel {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  padding: 1.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 211, 167, 0.2),
    0 0 20px rgba(46, 211, 167, 0.3),
    0 0 40px rgba(255, 82, 82, 0.2),
    inset 0 0 30px rgba(46, 211, 167, 0.05);
  animation: borderGlow 3s ease-in-out infinite;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: rgba(18, 18, 24, 0.6);
  border: 1px solid rgba(46, 211, 167, 0.5);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(30px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 211, 167, 0.2),
    0 0 20px rgba(46, 211, 167, 0.3),
    0 0 40px rgba(255, 82, 82, 0.2);
  animation: borderGlow 3s ease-in-out infinite;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--text);
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.contact-info-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin: 0 0 0.3rem 0;
  color: var(--accent-2);
  font-size: 1rem;
  font-weight: 600;
}

.contact-info-item p {
  margin: 0.2rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  padding: 1rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff8f3f, #ffb067, #2ed3a7, #26c9a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 6px rgba(255, 143, 63, 0.6)) drop-shadow(-2px -2px 4px rgba(46, 211, 167, 0.6)) drop-shadow(0 0 10px rgba(255, 200, 100, 0.4));
}

.contact-info-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-info-card p {
  margin: 0.3rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-info-card a {
  color: var(--accent-2);
  text-decoration: none;
}

.contact-form-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(18, 18, 24, 0.4);
  border: 1px solid rgba(46, 211, 167, 0.5);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 211, 167, 0.2),
    0 0 20px rgba(46, 211, 167, 0.3),
    0 0 40px rgba(255, 82, 82, 0.2),
    inset 0 0 30px rgba(46, 211, 167, 0.05);
  animation: borderGlow 3s ease-in-out infinite;
}

.contact-form-box h3 {
  text-align: center;
  color: var(--accent);
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.contact-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.3rem;
  align-items: start;
  border: 1px solid rgba(46, 211, 167, 0.5);
  border-radius: 22px;
  padding: 1.4rem;
  background: rgba(18, 18, 24, 0.4);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 211, 167, 0.2),
    0 0 20px rgba(46, 211, 167, 0.3),
    0 0 40px rgba(255, 82, 82, 0.2),
    inset 0 0 30px rgba(46, 211, 167, 0.05);
  animation: borderGlow 3s ease-in-out infinite;
}

.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

label {
  font-size: 0.86rem;
  color: var(--muted);
}

input,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  color: var(--text);
  background: rgba(7, 14, 24, 0.66);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(46, 211, 167, 0.5);
  outline-offset: 1px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.impact-grid h3 {
  color: var(--accent);
}

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

.contact-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-images {
    grid-template-columns: 1fr;
  }
}

.donation-table-wrap {
  overflow-x: auto;
}

.donation-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
}

.donation-table th,
.donation-table td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
}

.donation-table th {
  color: var(--text);
  width: 35%;
  font-weight: 700;
}

.donation-table td {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

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

@media (max-width: 900px) {
  .logo {
    max-width: 110px;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .service-grid,
  .photo-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 11, 18, 0.9);
  margin-top: 1.2rem;
}

.footer-wrap {
  padding: 0.8rem 0 0.9rem;
  text-align: center;
}

.footer-wrap p {
  margin: 0.1rem 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.88rem;
}

.footer-wrap a,
.contact-link-line a {
  color: var(--accent-2);
  text-decoration: none;
}

.footer-wrap a:hover,
.contact-link-line a:hover {
  text-decoration: underline;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.16rem 0.48rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-links a::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: rgba(46, 211, 167, 0.16);
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 700;
}

.social-links a[href*="facebook"]::before {
  content: "f";
}

.social-links a[href*="instagram"]::before {
  content: "ig";
}

.social-links a[href*="youtube"]::before {
  content: "▶";
}

.actions-spaced {
  margin-top: 1rem;
}

.donate-box {
  position: absolute;
  right: 140px;
  top: 46%;
  transform: translateY(-50%);
  background: rgba(18, 18, 24, 0.4);
  border: 1px solid rgba(46, 211, 167, 0.5);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 211, 167, 0.2),
    0 0 20px rgba(46, 211, 167, 0.3),
    0 0 40px rgba(255, 82, 82, 0.2),
    inset 0 0 30px rgba(46, 211, 167, 0.05);
  z-index: 10;
  max-width: 360px;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(46, 211, 167, 0.2),
      0 0 20px rgba(46, 211, 167, 0.3),
      0 0 40px rgba(255, 82, 82, 0.2),
      inset 0 0 30px rgba(46, 211, 167, 0.05);
  }
  50% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(46, 211, 167, 0.5),
      0 0 30px rgba(46, 211, 167, 0.6),
      0 0 60px rgba(255, 82, 82, 0.4),
      inset 0 0 40px rgba(46, 211, 167, 0.1);
  }
}

.donate-box.hide {
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  pointer-events: none;
}

.donate-box h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.donate-box p {
  color: var(--accent-2);
  font-size: 0.85rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

.donate-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.donate-form input,
.donate-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.donate-form input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.donate-form input:focus,
.donate-form select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 143, 63, 0.1);
}

.donate-form input[type="number"]::-webkit-inner-spin-button,
.donate-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.donate-form input[type="number"] {
  -moz-appearance: textfield;
}

.donate-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239ab0c6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.donate-form select option {
  color: #000000;
  background: #ffffff;
}

.donate-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .donate-box {
    display: none;
  }
}

.donate-box h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.donate-box p {
  color: var(--accent-2);
  font-size: 0.85rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

.donate-box .btn {
  width: 100%;
  background: linear-gradient(115deg, var(--accent), #ffb067);
  color: #101014;
}

.donate-box .btn:hover {
  background: linear-gradient(115deg, #ff7a1f, var(--accent));
  transform: translateY(-2px);
}
