/* =============================================
   JMS - Jagrutha Mahila Sangatane
   Professional Website Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red:        #C0181A;
  --red-dark:   #8B0000;
  --red-light:  #e8393b;
  --blue:       #1655A2;
  --blue-light: #4a86d8;
  --white:      #ffffff;
  --off-white:  #f8f4f0;
  --cream:      #fdf6ee;
  --text-dark:  #1a1a1a;
  --text-mid:   #444;
  --text-muted: #888;
  --border:     #e0dada;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --radius:     12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--red-dark);
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.top-bar-left a:hover { color: #fff; }
.top-bar-right { display: flex; gap: 10px; }
.top-bar-right a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  transition: var(--transition);
}
.top-bar-right a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(192,24,26,0.3);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--red-dark); }
.logo-text .tagline { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.5px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--red);
  transition: var(--transition);
}
.nav-link:hover { color: var(--red); background: rgba(192,24,26,0.05); }
.nav-link:hover::after { left: 14%; right: 14%; }
.nav-link.active { color: var(--red); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-top: 3px solid var(--red-dark);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  border-bottom: 1px solid var(--border);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--red-dark);
  color: #fff;
  padding-left: 24px;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.btn-search {
  background: none; border: none; cursor: pointer;
  color: var(--text-mid); font-size: 1.1rem; padding: 6px;
  transition: var(--transition);
}
.btn-search:hover { color: var(--red); }
.btn-support {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(192,24,26,0.3);
}
.btn-support:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,24,26,0.4);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--red-dark); border-radius: 2px; transition: var(--transition); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #1a0000;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(139,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
/* Slide backgrounds using gradients as placeholders */
.slide-1 .hero-bg { background: linear-gradient(135deg, #8B0000 0%, #C0181A 40%, #1655A2 100%); }
.slide-2 .hero-bg { background: linear-gradient(135deg, #1655A2 0%, #2a7fd4 40%, #8B0000 100%); }
.slide-3 .hero-bg { background: linear-gradient(135deg, #2d1b00 0%, #C0181A 50%, #1655A2 100%); }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px;
  max-width: 640px;
  animation: heroIn 0.8s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: #fff;
  color: var(--red);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-nav {
  position: absolute; bottom: 28px; left: 80px;
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 30px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px; cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: #fff; width: 48px; }

.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff; font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* =============================================
   NEWS TICKER
   ============================================= */
.news-ticker {
  background: var(--red);
  color: #fff;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--red-dark);
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  padding: 10px 40px;
  font-size: 0.84rem;
  font-weight: 500;
}
.ticker-item::before { content: '◆ '; opacity: 0.6; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   QUICK LINKS
   ============================================= */
.quick-links { padding: 56px 0 48px; background: var(--white); }
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ql-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.ql-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ql-icon {
  width: 64px; height: 64px;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--blue);
  font-size: 1.5rem;
  transition: var(--transition);
}
.ql-item:hover .ql-icon { background: var(--blue); color: #fff; }
.ql-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  background: rgba(192,24,26,0.08);
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red-dark);
  line-height: 1.3;
}
.section-line {
  width: 56px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 12px;
}

/* =============================================
   CAMPAIGNS
   ============================================= */
.campaigns { padding: 64px 0; background: var(--cream); }
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.campaign-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.campaign-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.campaign-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.campaign-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.campaign-card:hover .campaign-img img { transform: scale(1.06); }
.campaign-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.7);
}
.campaign-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.campaign-body { padding: 20px 22px; }
.campaign-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.btn-read-more {
  display: inline-block;
  border: 1.5px solid var(--red);
  color: var(--red);
  padding: 7px 20px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-read-more:hover { background: var(--red); color: #fff; }

/* =============================================
   JMS UPDATES
   ============================================= */
.jms-updates { padding: 64px 0; background: var(--white); }
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.update-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.update-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.update-img {
  position: relative;
  height: 180px; overflow: hidden;
}
.update-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
}
.update-label {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.update-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.update-body { padding: 20px; }
.update-body p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-read-more-outline {
  display: inline-block;
  border: 1.5px solid var(--red);
  color: var(--red);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-read-more-outline:hover { background: var(--red); color: #fff; }

/* =============================================
   IMPACT STATS
   ============================================= */
.impact { padding: 64px 0; background: var(--off-white); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-icon {
  font-size: 2.4rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.impact-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.impact-card-body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #f0eaea;
  border-top: 3px solid var(--red);
}
.footer-top {
  padding: 52px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* Testimonial */
.testimonial-quote {
  font-style: italic;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  quotes: "\201C" "\201D";
}
.testimonial-quote::before { content: open-quote; color: var(--red); font-size: 1.6rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.author-title { font-size: 0.75rem; color: var(--red); }

/* Video */
.video-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1655A2, #C0181A);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.play-btn {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.3rem;
  transition: var(--transition);
}
.video-thumb:hover .play-btn { transform: scale(1.1); }
.video-title { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 12px; }
.contact-info { font-size: 0.82rem; color: var(--text-mid); line-height: 2; }
.contact-info a { color: var(--red); }

/* Support */
.support-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.btn-support-footer {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  margin-bottom: 20px;
}
.btn-support-footer:hover { background: var(--blue-light); transform: translateY(-2px); }
.social-follow-title { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover { transform: translateY(-3px) scale(1.1); }
.si-fb { background: #1877f2; }
.si-tw { background: #1da1f2; }
.si-yt { background: #ff0000; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb-inner {
  width: 100%; height: 100%;
  transition: transform 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
}
.gallery-thumb:hover .gallery-thumb-inner { transform: scale(1.1); }
.g1 { background: linear-gradient(135deg, #C0181A, #e05); }
.g2 { background: linear-gradient(135deg, #1655A2, #4a86d8); }
.g3 { background: linear-gradient(135deg, #2d7a2d, #5cb85c); }
.g4 { background: linear-gradient(135deg, #e6821a, #f0a500); }
.g5 { background: linear-gradient(135deg, #8B0000, #C0181A); }
.g6 { background: linear-gradient(135deg, #0d47a1, #1655A2); }
.g7 { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.g8 { background: linear-gradient(135deg, #006064, #00acc1); }
.g9 { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.btn-more-photos {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-more-photos:hover { background: var(--blue-light); }

/* Footer Bottom */
.footer-bottom {
  background: var(--red-dark);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.8); font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.9); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border: none; cursor: pointer;
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(192,24,26,0.4);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* Responsive basics */
@media(max-width: 992px) {
  .hero-title { font-size: 2.2rem; }
  .quick-links-grid, .campaigns-grid, .updates-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}
@media(max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .hero-content { padding: 0 40px; }
  .quick-links-grid { grid-template-columns: repeat(3, 1fr); }
  .campaigns-grid, .updates-grid, .footer-grid, .impact-grid { grid-template-columns: 1fr; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px;
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 15px;
    display: none;
  }
  .dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
    display: block;
  }
}

