/* ===== HHVUK Static Site - Main Stylesheet ===== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #002869;
  --crimson: #C42652;
  --rose: #D85A7F;
  --light-gray: #F0F0F0;
  --footer-pink: #C42652;
  --footer-bar: #2E4A7A;
  --gold: #C9A96E;
  --white: #ffffff;
  --dark-text: #333333;
  --light-text: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 0 60px 60px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

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

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 8px;
}

.main-nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--crimson);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  overflow: visible;
  background: var(--white);
}

.hero-top {
  padding: 30px 50px 10px;
  max-width: 48%;
  margin-left: 0;
  margin-right: auto;
  text-align: center;
}

.hero-top p {
  font-size: 24px;
  color: var(--dark-text);
  line-height: 1.4;
  border-top: 2px solid var(--crimson);
  padding-top: 15px;
}

.hero-veterans-count {
  text-align: center;
  padding: 10px 50px 25px;
  max-width: 48%;
  margin-left: 0;
  margin-right: auto;
}

.hero-veterans-count p {
  color: var(--navy);
  font-size: 26px;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.03); }
}

.hero-main {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 400px;
}

.hero-urgent {
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  z-index: 3;
  text-align: center;
  padding: 30px 40px;
  background: var(--light-gray);
  border-radius: 10px;
}

.hero-urgent p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.hero-overlay {
  background: var(--crimson);
  color: var(--white);
  padding: 35px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 45%;
  width: 48%;
  height: auto;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-overlay .btn {
  align-self: flex-start;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  width: 50%;
  right: 0;
  top: -155px;
  bottom: 5%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image .hero-tagline {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: visible;
  margin-bottom: 48px;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.03);
  filter: blur(2px);
  transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 3.5s cubic-bezier(0.4, 0, 0.2, 1),
              filter 3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 3;
}

.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.03);
  filter: blur(2px);
  z-index: 2;
}

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

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

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

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

.hero-slide.active .hero-image img {
  animation: gentleReveal 3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-slide.active .hero-tagline {
  animation: fadeIn 2s ease 1.5s both;
}

@keyframes gentleReveal {
  0% { opacity: 0; transform: scale(1.06); }
  40% { opacity: 0.6; }
  100% { opacity: 1; transform: scale(1); }
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-dark {
  background: #4A6A8A;
  color: var(--white);
  border-color: #4A6A8A;
}

.btn-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-crimson {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}

.btn-crimson:hover {
  background: #a81e42;
  border-color: #a81e42;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--light-gray);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-crimson {
  background: var(--crimson);
  color: var(--white);
}

.section-rose {
  background: var(--rose);
  color: var(--white);
}

/* ===== OUR MISSION SECTION ===== */
.mission-section {
  padding: 70px 0;
  background: var(--light-gray);
}

.mission-section .container {
  max-width: 90%;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mission-text h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--dark-text);
}

.mission-step {
  text-align: center;
}

.mission-step .step-line {
  height: 3px;
  background: var(--dark-text);
  margin-bottom: 10px;
}

.mission-step .step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.mission-step p {
  font-size: 15px;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.mission-step .step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.mission-step .step-icon svg {
  width: 100%;
  height: 100%;
}

/* ===== SOURCES OF HELP ===== */
.help-section {
  padding: 80px 0;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.help-image {
  border-radius: 5px;
  overflow: hidden;
}

.help-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.help-content h2 {
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  color: var(--crimson);
  margin-bottom: 15px;
}

.help-content > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.help-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.help-item .help-label {
  color: var(--crimson);
  font-size: 15px;
  font-weight: 500;
}

.help-item .help-contact {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}

/* ===== ABOUT CHARITY SECTION ===== */
.about-charity-section {
  padding: 70px 0;
  background: var(--crimson);
  color: var(--white);
}

.about-charity-inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
  align-items: start;
}

.about-charity-icon svg {
  width: 120px;
  height: 120px;
  fill: rgba(255,255,255,0.3);
}

.about-charity-content h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.about-charity-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-charity-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

/* ===== OUR SUCCESS / STATS ===== */
.success-section {
  padding: 70px 0;
  margin-top: 60px;
  background: var(--light-gray);
}

.success-section .container {
  max-width: 90%;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.success-text h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}

.success-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
}

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

.stat-item .stat-line {
  height: 3px;
  background: var(--navy);
  margin-bottom: 10px;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.stat-item .stat-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.stat-item .stat-icon svg {
  width: 100%;
  height: 100%;
}

/* ===== SPONSORS & QUOTES SECTION ===== */
.sponsors-section {
  padding: 70px 0;
  margin-top: 60px;
  background: var(--navy);
  color: var(--white);
}

.sponsors-section .container {
  max-width: 90%;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.sponsors-text h2 {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 20px;
}

.sponsors-text p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

.quote-item {
  border-top: 2px solid rgba(255,255,255,0.3);
  padding-top: 20px;
}

.quote-item blockquote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gold);
  margin-bottom: 12px;
}

.quote-item cite {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

/* ===== SPONSOR LOGOS CAROUSEL ===== */
.logos-section {
  padding: 50px 0;
  background: var(--white);
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.logo-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  align-items: center;
}

.logo-track .logo-item {
  flex: 0 0 calc(14.28% - 26px);
  min-width: 150px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-track .logo-item img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.05);
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #999;
  padding: 15px 10px;
  z-index: 5;
  transition: color 0.3s ease;
}

.carousel-btn:hover {
  color: var(--navy);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--navy);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-pink);
  color: var(--white);
  padding: 60px 0 0;
}

.site-footer .container {
  max-width: 90%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo img {
  height: 160px;
  margin-bottom: 25px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-contact h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-contact a {
  color: var(--white);
  font-size: 15px;
  display: block;
  margin-bottom: 15px;
}

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

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--white);
  color: var(--footer-pink);
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: fill 0.3s ease;
}

.social-icons a:hover svg {
  fill: var(--footer-pink);
}

.footer-info p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-bottom {
  background: var(--footer-bar);
  padding: 15px 0;
  text-align: right;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== VIDEO EMBED ===== */
.video-header {
  padding: 0;
  background: #000;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ===== LEGAL PAGES ===== */
.legal-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 35px 0 12px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.legal-content ul {
  list-style: disc;
  margin: 0 0 20px 25px;
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: var(--dark-text);
}

.legal-content a {
  color: var(--crimson);
  font-weight: 600;
}

.legal-updated {
  font-style: italic;
  color: #888;
  margin-bottom: 25px;
}

/* ===== PAGE HEADER (SUBPAGES) ===== */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-header p {
  font-size: 17px;
  max-width: 700px;
  margin: 15px auto 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 70px 0;
  text-align: center;
}

.about-intro h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-intro .subtitle {
  font-size: 20px;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 25px;
}

.about-intro p {
  max-width: 800px;
  margin: 0 auto 15px;
  font-size: 16px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

.team-member {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ===== EVENTS PAGE ===== */
.event-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.event-card-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 350px;
}

.event-image {
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 35px 40px;
}

.event-badge {
  display: inline-block;
  background: var(--crimson);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.event-content h3 {
  font-size: 28px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 10px;
}

.event-meta {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.event-content .quote {
  font-style: italic;
  color: var(--crimson);
  border-left: 3px solid var(--crimson);
  padding-left: 15px;
  margin: 15px 0;
}

/* ===== PROJECTS PAGE ===== */
.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  margin-bottom: 35px;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-card-inner {
  display: grid;
  grid-template-columns: 350px 1fr;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.project-content {
  padding: 30px 35px;
}

.project-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.project-content h3 {
  font-size: 26px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.project-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
  padding: 70px 0;
  background: var(--light-gray);
}

.testimonials-section h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--crimson);
}

.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 0;
}

.contact-urgent {
  text-align: center;
  padding: 40px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 50px;
}

.contact-urgent p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.contact-form-wrapper h3 {
  text-align: center;
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--crimson);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

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

/* ===== DONATE PAGE ===== */
.donate-intro {
  text-align: center;
  padding: 50px 0;
  background: var(--light-gray);
}

.donate-intro h2 {
  font-size: 32px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 10px;
}

.donate-intro p {
  font-size: 17px;
  color: var(--crimson);
  font-weight: 600;
}

.donate-methods {
  padding: 60px 0;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.donate-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 35px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.donate-card:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.donate-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 15px;
}

.donate-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.donate-card .bank-details {
  background: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 15px;
}

.donate-card .bank-details strong {
  color: var(--navy);
}

.sms-box {
  background: var(--navy);
  color: var(--white);
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
}

.sms-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.sms-box .sms-code {
  font-size: 28px;
  font-weight: 900;
  margin: 15px 0;
  letter-spacing: 1px;
}

.sms-box p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.5;
}

/* ===== SHOP PAGE ===== */
.shop-coming-soon {
  text-align: center;
  padding: 80px 0;
}

.shop-coming-soon img {
  max-width: 200px;
  margin: 0 auto 30px;
}

.shop-coming-soon h2 {
  font-size: 28px;
  color: var(--navy);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mission-grid,
  .success-grid,
  .sponsors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  body {
    padding: 0 20px 40px;
  }

  .hero-section,
  .mission-section,
  .help-section,
  .about-charity-section,
  .success-section,
  .sponsors-section,
  .logos-section,
  .site-footer {
    margin-top: 30px;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
  }

  .hero-slider {
    display: contents;
  }

  .hero-urgent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    order: -2;
    margin-bottom: 30px;
  }

  .hero-top {
    max-width: 100%;
    padding: 20px 15px 10px;
    order: -1;
  }

  .hero-veterans-count {
    max-width: 100%;
    padding: 10px 15px 45px;
    order: 0;
  }

  .hero-veterans-count p {
    border-bottom: 2px solid var(--crimson);
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .hero-overlay {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    order: 1;
    margin-bottom: 40px;
  }

  .hero-slide {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transition: none;
    order: 2;
    aspect-ratio: 900 / 473;
    overflow: hidden;
  }

  .hero-slide:not(.active) {
    display: none;
  }

  .slider-dots {
    order: 3;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    right: auto;
    bottom: auto;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .event-card-inner,
  .project-card-inner {
    grid-template-columns: 1fr;
  }

  .event-image,
  .project-image {
    max-height: 300px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 5px;
  }

  .main-nav a {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }

  .hero-overlay {
    padding: 40px 30px;
  }

  .mission-grid,
  .success-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

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

  .about-charity-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .page-header h1 {
    font-size: 32px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .help-content h2 {
    font-size: 36px;
  }

  .logo-track .logo-item {
    flex: 0 0 calc(33.33% - 20px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 50px 0;
  }

  .hero-overlay h1 {
    font-size: 26px;
  }

  .mission-text h2,
  .success-text h2 {
    font-size: 36px;
  }

  .logo-track .logo-item {
    flex: 0 0 calc(50% - 15px);
  }
}
