/* ==========================================
   The Good Kitchen - Modern Dark Theme
   Color Palette from Logo:
   - Green: #4a7c3f (leaves/nature)
   - Gold/Orange: #e8973f (hands/warmth)
   - Navy Blue: #1e3a5c (cityscape)
   - Teal: #1a3a4a (background)
   - Logo Blue: #579cc3
   ========================================== */

/* === Root Variables === */
:root {
  /* Logo Colors */
  --green: #4a7c3f;
  --green-light: #5d9a4c;
  --green-dark: #3d6834;
  --gold: #e8973f;
  --gold-light: #f5a94d;
  --gold-dark: #d4842e;
  --navy: #1e3a5c;
  --navy-light: #2c4a6e;
  --navy-dark: #152a42;
  --teal: #1a3a4a;
  --teal-light: #245566;
  --teal-dark: #0f252f;

  /* Primary Theme Colors */
  --primary-color: #e8973f;
  --secondary-color: #4a7c3f;
  --accent-color: #5d9a4c;

  /* Solid Colors (no gradients) */
  --btn-primary-bg: #e8973f;
  --btn-secondary-bg: #4a7c3f;
  --hero-bg: #0a1520;

  /* Dark Theme Base */
  --bg-primary: #0a1520;
  --bg-secondary: #0f1f2e;
  --bg-tertiary: #152a3d;
  --card-bg: #1a3344;
  --card-bg-hover: #1e3a4a;

  /* Text Colors */
  --text-primary: #f0f4f8;
  --text-secondary: #a8b8c8;
  --text-muted: #9bb819;

  /* Border & Shadow */
  --border-color: #2a4a5a;
  --border-light: #3a5a6a;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow-gold: 0 0 30px rgba(232, 151, 63, 0.3);
  --shadow-glow-green: 0 0 30px rgba(74, 124, 63, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy support */
  --dark-color: var(--text-primary);
  --light-color: var(--bg-secondary);
  --text-dark: var(--text-primary);
  --text-light: var(--text-secondary);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* === Selection Highlight === */
::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

/* === Scrollbar Styling === */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* === Navigation === */
#mainNav {
  background: rgba(10, 21, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* padding: 1rem 0; */
  transition: var(--transition);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(74, 124, 63, 0.2);
}

#mainNav.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 21, 32, 0.98);
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
  color: #fff !important;
  font-size: 1.4rem;
  transition: var(--transition);
}

#mainNav.scrolled .navbar-brand {
  font-size: 1.2rem;
  gap: 0.7rem;
}

#logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
  border: 2px solid var(--green);
  box-shadow: 0 0 20px rgba(74, 124, 63, 0.4);
  background-color: #ebeff1;
}

#mainNav.scrolled #logo-img {
  width: 60px;
  height: 60px;
}

.navbar-brand:hover #logo-img {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(232, 151, 63, 0.5);
  border-color: var(--gold);
}

.brand-text {
  font-family: "Georgia", serif;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--gold);
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  position: relative;
  transition: var(--transition);
  border-radius: 8px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
  background: rgba(232, 151, 63, 0.1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.btn-donate {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.7rem 2rem !important;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 1rem;
  box-shadow: 0 4px 20px rgba(232, 151, 63, 0.4);
  transition: var(--transition);
  border: none;
}

.btn-donate:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(232, 151, 63, 0.5);
  background: var(--gold-light);
  color: var(--navy-dark) !important;
}

.navbar-toggler {
  border: 2px solid var(--gold);
  padding: 0.5rem;
  border-radius: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e8973f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === Hero Section === */
.hero-section {
  position: relative;
  background: var(--bg-primary);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 21, 32, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-family: "Playfair Display", serif;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  border: none;
  color: var(--navy-dark);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 151, 63, 0.4);
  background: var(--gold-light);
}

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

.btn-outline-light:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 124, 63, 0.3);
}

.hero-stats {
  padding: 2rem 0;
  border-top: 1px solid rgba(74, 124, 63, 0.3);
  margin-top: 1rem;
}

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

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

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator a {
  color: var(--gold);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

/* === Section Styles === */
section {
  padding: 6rem 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(74, 124, 63, 0.3);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* === Mission Section === */
.mission-section {
  background: var(--bg-secondary);
  position: relative;
}

.mission-cards {
  display: grid;
  gap: 1.5rem;
}

.mission-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  border-color: var(--green);
  background: var(--card-bg-hover);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--green);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(74, 124, 63, 0.3);
  transition: var(--transition);
}

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

.mission-icon i {
  font-size: 2rem;
  color: #fff;
}

.mission-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.mission-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* === Impact Section === */
.impact-section {
  background: var(--bg-primary);
  position: relative;
}

.impact-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.impact-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
  border-color: var(--gold);
  background: var(--card-bg-hover);
}

.impact-icon {
  width: 85px;
  height: 85px;
  background: var(--gold);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(232, 151, 63, 0.35);
  transition: var(--transition);
}

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

.impact-icon i {
  font-size: 2.5rem;
  color: var(--navy-dark);
}

.impact-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.impact-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === Get Involved Section === */
.get-involved-section {
  background: var(--bg-secondary);
}

.involve-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.involve-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  border-color: var(--green);
}

.involve-icon {
  width: 100px;
  height: 100px;
  background: var(--green);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 35px rgba(74, 124, 63, 0.35);
  transition: var(--transition);
}

.involve-card:hover .involve-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 45px rgba(74, 124, 63, 0.45);
}

.involve-icon i {
  font-size: 3rem;
  color: #fff;
}

.involve-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.involve-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.involve-card .btn {
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
}

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

.btn-outline-primary:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(232, 151, 63, 0.35);
}

/* === CTA Section === */
.cta-section {
  background: var(--navy);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Playfair Display", serif;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.cta-section .btn-light {
  background: #fff;
  color: var(--navy-dark);
  font-weight: 700;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}

.cta-section .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* === Footer === */
.footer {
  background: var(--navy-dark);
  color: var(--text-secondary);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 0 20px rgba(74, 124, 63, 0.3);
  background-color: white;
}

.footer-brand h4 {
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer h5 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border-radius: 12px;
  margin-right: 0.5rem;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(232, 151, 63, 0.3);
  border-color: transparent;
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-form .form-control {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: #f7fbff;
  padding: 0.9rem 1.2rem;
  border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
  color: #b7c7d6;
}

.newsletter-form .form-control:focus {
  background: var(--card-bg-hover);
  border-color: var(--gold);
  color: var(--text-primary);
  box-shadow: none;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 0.9rem 1.5rem;
  background: var(--gold);
  border: none;
}

.newsletter-form .btn:hover {
  box-shadow: 0 5px 20px rgba(232, 151, 63, 0.4);
}

.footer hr {
  border-color: var(--border-color);
  margin: 2rem 0;
}

.footer-link {
  color: var(--text-muted);
  transition: var(--transition);
}

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

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 151, 63, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(232, 151, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 151, 63, 0);
  }
}

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

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

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(232, 151, 63, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(232, 151, 63, 0.7);
  }
}

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

/* === Responsive Design === */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 1.5rem 0;
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .btn-donate {
    margin-left: 0 !important;
    margin-top: 1rem;
    display: block;
    text-align: center;
  }

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

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

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

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  section {
    padding: 4rem 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .impact-number {
    font-size: 2.5rem;
  }

  .involve-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  #logo-img {
    width: 45px;
    height: 45px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

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

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

  .stat-item {
    margin-bottom: 1.5rem;
  }
}

/* === About Page Styles === */
.page-header {
  background: var(--bg-primary);
  color: #fff;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-title .highlight {
  color: var(--gold);
}

.min-vh-5 {
  min-height: 5vh;
}

.small {
  color: magenta;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: "Playfair Display", serif;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.story-section {
  background: var(--bg-secondary);
}

.stat-box {
  background: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
  border-color: var(--gold);
}

.stat-box .stat-icon {
  width: 65px;
  height: 65px;
  background: var(--gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(232, 151, 63, 0.3);
}

.stat-box .stat-icon i {
  font-size: 1.8rem;
  color: var(--navy-dark);
}

.stat-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.values-section {
  background: var(--bg-primary);
}

.value-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  border-color: var(--green);
}

.value-icon {
  width: 85px;
  height: 85px;
  background: var(--green);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(74, 124, 63, 0.35);
  transition: var(--transition);
}

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

.value-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.8;
}

.team-section {
  background: var(--bg-secondary);
}

.team-card {
  background: var(--card-bg);
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
  border-color: var(--gold);
}

.team-avatar {
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 35px rgba(232, 151, 63, 0.35);
  transition: var(--transition);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-avatar i {
  font-size: 4rem;
  color: var(--navy-dark);
}

.team-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* === Contact Page Styles === */
.contact-hero {
  background: var(--bg-primary);
  color: #fff;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-info-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
}

.contact-info-card .icon {
  width: 65px;
  height: 65px;
  background: var(--gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(232, 151, 63, 0.3);
}

.contact-info-card .icon i {
  font-size: 1.8rem;
  color: var(--navy-dark);
}

.contact-info-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-info-card p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-info-card a {
  color: var(--gold);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--gold-light);
}

.contact-form-section {
  background: var(--bg-secondary);
}

.form-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-control,
.form-select {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background: var(--bg-tertiary);
  color: #f7fbff;
  caret-color: #f5a94d;
  transition: var(--transition);
}

.form-control::placeholder,
.form-select::placeholder,
textarea.form-control::placeholder {
  color: #b7c7d6;
}

.stripe-card-element {
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background: var(--bg-tertiary);
  transition: var(--transition);
}

.stripe-card-element.StripeElement--focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 151, 63, 0.15);
  background: var(--card-bg);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 151, 63, 0.15);
  background: var(--card-bg);
  color: #f7fbff;
  caret-color: #f5a94d;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.donate-option {
  position: relative;
}

.donate-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.donate-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  color: var(--text-primary);
}

.donate-option input[type="radio"]:checked + label {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 151, 63, 0.35);
}

.donate-option label:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

/* === Dark Mode Toggle === */
.theme-toggle {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 0.5rem;
}

.theme-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: rotate(20deg);
}

.theme-toggle i {
  font-size: 1.1rem;
}

/* === Scroll Progress Bar === */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gold);
  z-index: 10000;
  transition: width 0.1s ease;
  box-shadow: 0 2px 15px rgba(232, 151, 63, 0.5);
}

/* === Live Donation Tracker === */
.live-donation-tracker {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: slideInRight 0.6s ease-out;
  border: 2px solid var(--green);
  transition: var(--transition);
}

.live-donation-tracker:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  border-color: var(--gold);
}

.donation-tracker-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tracker-icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeat 1.5s infinite;
}

.tracker-icon i {
  font-size: 1.5rem;
  color: #fff;
}

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

.tracker-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.tracker-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tracker-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}

.tracker-separator {
  color: var(--text-muted);
}

.tracker-meals {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* === Chatbot === */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--green);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(74, 124, 63, 0.4);
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 45px rgba(74, 124, 63, 0.5);
}

.chatbot-toggle:active {
  transform: scale(0.95);
}

.chat-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--navy-dark);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 3px solid var(--bg-primary);
  animation: pulse 2s infinite;
}

.chatbot-container {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  height: 550px;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.4s ease-out;
  border: 1px solid var(--border-color);
}

.chatbot-container.active {
  display: flex;
}

.chatbot-header {
  background: var(--green);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chatbot-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.chatbot-title {
  flex: 1;
}

.chatbot-title h4 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.chatbot-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--bg-secondary);
}

.bot-message,
.user-message {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.3s ease-out;
}

.user-message {
  flex-direction: row-reverse;
}

p.littleshit {
  color: rgb(148, 211, 46);
}
.message-avatar {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.user-message .message-avatar {
  background: var(--gold);
  color: var(--navy-dark);
}

.message-content {
  max-width: 75%;
}

.message-content p {
  background: var(--card-bg);
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  margin: 0;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  line-height: 1.6;
}

.user-message .message-content p {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.quick-reply-btn {
  background: var(--card-bg);
  border: 2px solid var(--green);
  color: var(--green-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.quick-reply-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 63, 0.3);
}

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

.chatbot-input input {
  flex: 1;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 0.9rem 1.2rem;
  border-radius: 25px;
  outline: none;
  transition: var(--transition);
}

.chatbot-input input:focus {
  border-color: var(--green);
}

.chatbot-input button {
  background: var(--green);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chatbot-input button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 124, 63, 0.4);
}

/* === Particle Canvas === */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* === Lead Text === */
.lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* === Button Dark === */
.btn-dark {
  background: var(--card-bg);
  border: 2px solid var(--green);
  color: var(--green-light);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-dark:hover {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(74, 124, 63, 0.35);
}

/* === Accordion (FAQ) === */
.accordion {
  border: none;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--card-bg);
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
  background: var(--bg-tertiary);
  color: var(--gold);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(68%) sepia(54%) saturate(456%)
    hue-rotate(356deg) brightness(95%) contrast(89%);
}

.accordion-body {
  background: var(--card-bg);
  color: var(--text-secondary);
  padding: 1.25rem 1.5rem;
  line-height: 1.8;
}

/* === Mobile Responsiveness === */
@media (max-width: 768px) {
  .live-donation-tracker {
    top: 80px;
    right: 10px;
    padding: 0.8rem 1rem;
    border-radius: 15px;
  }

  .tracker-number {
    font-size: 1.1rem;
  }

  .tracker-meals {
    font-size: 0.8rem;
  }

  .chatbot-container {
    width: calc(100vw - 20px);
    height: calc(100vh - 120px);
    bottom: 90px;
    right: 10px;
    left: 10px;
  }

  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
  }

  .theme-toggle {
    margin: 0.5rem 0;
  }
}

/* === Utility Classes === */
.text-primary-custom {
  color: var(--gold) !important;
}

.bg-gradient-primary {
  background: var(--gold) !important;
}

.bg-gradient-secondary {
  background: var(--green) !important;
}
