/* ==========================================================================
   Abdus Satter Foundation - Premium Charity Web Design System
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --primary-color: #1b4332;       /* Deep warm forest green */
  --primary-hover: #0d281e;
  --secondary-color: #2d6a4f;     /* Rich medium green */
  --accent-color: #f7a81b;        /* Warm gold accent */
  --accent-hover: #e0920f;
  --text-dark: #1b201e;
  --text-light: #4f5a55;
  --bg-light: #f4f7f5;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-tag {
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-light);
  margin-top: 15px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-socials {
  display: flex;
  gap: 15px;
}

.top-socials a:hover {
  color: var(--accent-color);
}

/* Main Nav Header */
.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.75rem;
  font-family: var(--font-body);
  display: block;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

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

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

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 0;
  height: calc(85vh - 100px);
  min-height: 550px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.slide.active .slide-image {
  transform: scale(1.08);
}

.slide-content-box {
  position: relative;
  z-index: 3;
  color: var(--bg-white);
  max-width: 650px;
}

.slide-title-sub {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.slide-title-main {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
}

.slide-desc {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease 0.6s;
}

.slide-btn {
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.8s ease 0.8s;
}

/* Active transitions */
.slide.active .slide-title-sub,
.slide.active .slide-title-main,
.slide.active .slide-desc,
.slide.active .slide-btn {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 25px;
}

.about-highlights {
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(45, 106, 79, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.highlight-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ==========================================================================
   Statistics Counter Section
   ========================================================================== */
.stats-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Activities / Programs Cards
   ========================================================================== */
.activities-section {
  background-color: var(--bg-light);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.activity-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(27, 67, 50, 0.1), 0 10px 10px -5px rgba(27, 67, 50, 0.04);
  border-color: rgba(247, 168, 27, 0.3);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.activity-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.card-link:hover {
  color: var(--accent-color);
}

/* ==========================================================================
   Volunteer CTA Callout
   ========================================================================== */
.cta-section {
  background-image: linear-gradient(135deg, rgba(27, 67, 50, 0.95), rgba(45, 106, 79, 0.9)), url('assets/images/hero-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--bg-white);
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ==========================================================================
   Testimonial & Review Section
   ========================================================================== */
.testimonial-section {
  background-color: var(--bg-white);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.testimonial-wrapper {
  position: relative;
  width: 100%;
}

.testimonial-slide {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  border: 3px solid var(--accent-color);
  object-fit: cover;
}

.client-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
}

.client-quote::before, .client-quote::after {
  content: '"';
  font-size: 1.8rem;
  color: var(--accent-color);
  font-family: var(--font-heading);
  line-height: 0;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.client-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-nav-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* ==========================================================================
   Image Gallery Section
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(27, 67, 50, 0.9) 0%, rgba(27, 67, 50, 0.4) 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.gallery-title {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* ==========================================================================
   Lightbox Modal Styles
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-box {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border: 3px solid #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 20px;
}

.lightbox-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.lightbox-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* ==========================================================================
   Contact Form Styles
   ========================================================================== */
.contact-section-wrapper {
  background-color: var(--bg-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
}

.contact-info-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  display: flex;
  gap: 15px;
}

.info-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-card-content h5 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.info-card-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-panel {
  background-color: var(--bg-light);
  padding: 45px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.form-control {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

textarea.form-control {
  resize: vertical;
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-status.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-hover);
  color: var(--bg-white);
  padding: 80px 0 30px 0;
  border-top: 5px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-widget-logo img {
  height: 55px;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.8rem;
  color: var(--accent-color);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact-item span {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Tablets & Small Laptops (992px to 1199px) */
@media (max-width: 1199px) {
  .section-title { font-size: 2.2rem; }
  .slide-title-main { font-size: 3rem; }
  .about-grid { gap: 40px; }
  .activities-grid { gap: 20px; }
  .gallery-item { height: 240px; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 30px; }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  
  /* Navbar */
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 25px;
    transition: left 0.4s ease-in-out;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }

  .nav-cta {
    width: 100%;
    margin-top: 15px;
  }
  
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Menu Toggle Active State Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Grid Resets */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .top-bar { display: none; } /* Hide top-bar on mobile */
  .section-title { font-size: 1.8rem; }
  
  /* Hero Slider */
  .hero-section { height: 75vh; }
  .slide-title-main { font-size: 2.2rem; }
  .slide-desc { font-size: 1rem; }
  
  /* Elements */
  .about-badge {
    position: static;
    margin-top: 20px;
    border-radius: var(--border-radius);
    padding: 15px;
  }
  .badge-number { font-size: 1.8rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .contact-form-panel { padding: 25px; }

  .cta-box h2 { font-size: 2rem; }
  .cta-btns { flex-direction: column; gap: 10px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

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

/* ==========================================================================
   Scroll Reveal Styles
   ========================================================================== */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   FAQ Accordion Styles
   ========================================================================== */
.faq-accordion {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  user-select: none;
  transition: var(--transition-smooth);
}

.faq-header:hover {
  background-color: rgba(45, 106, 79, 0.05);
  color: var(--secondary-color);
}

.faq-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  padding: 0 25px;
  color: var(--text-light);
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-item.active .faq-content {
  padding: 0 25px 25px 25px;
  max-height: 300px;
}

/* ==========================================================================
   Donation Support Section Styles
   ========================================================================== */
.donation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.donation-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.donation-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(247, 168, 27, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.donation-card.bkash .donation-icon-wrapper {
  background-color: rgba(229, 26, 97, 0.08);
  color: #e51a61;
}

.donation-card.nagad .donation-icon-wrapper {
  background-color: rgba(242, 98, 34, 0.08);
  color: #f26222;
}

.donation-method-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.donation-number-box {
  background-color: var(--bg-light);
  border: 1px dashed var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 10px 15px;
  margin: 15px 0;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.copy-btn {
  background: transparent;
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.copy-btn:hover {
  color: var(--accent-color);
  transform: scale(1.15);
}

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 15px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid var(--accent-color);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .donation-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .donation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .toast-notification {
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: center;
  }
}

/* Extra Small Mobile (iPhone SE/5, Small Viewports) */
@media (max-width: 400px) {
  .logo-text span {
    display: none;
  }
  .logo-img {
    height: 40px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
}

/* Hero Slider mobile responsive text clamps */
@media (max-width: 480px) {
  .slide-title-main {
    font-size: 1.8rem;
  }
  .slide-desc {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-section {
    height: 65vh;
  }
}

/* ==========================================================================
   Chairman Name Highlight Style
   ========================================================================== */
.chairman-highlight {
  color: var(--accent-color);
  font-weight: 800;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 1px;
  display: inline;
}
