/* ===================================
   Udayani Social Action Forum - Styles
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Primary Colors - Green (Growth, Hope, Environment) */
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-300: #6ee7b7;
  --primary-400: #34d399;
  --primary-500: #10b981;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-900: #064e3b;

  /* Secondary Colors - Slate */
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;

  /* Accent Colors - Gold/Yellow (Dawn/Sun - "Udayani" means rising) */
  --accent-50: #fefce8;
  --accent-100: #fef9c3;
  --accent-200: #fef08a;
  --accent-300: #fde047;
  --accent-400: #facc15;
  --accent-500: #eab308;
  --accent-600: #ca8a04;
  --accent-700: #a16207;
  --accent-800: #854d0e;
  --accent-900: #713f12;

  /* Warm Colors - Orange (Energy, Action) */
  --warm-50: #fff7ed;
  --warm-100: #ffedd5;
  --warm-200: #fed7aa;
  --warm-300: #fdba74;
  --warm-400: #fb923c;
  --warm-500: #f97316;
  --warm-600: #ea580c;
  --warm-700: #c2410c;

  /* Neutral - Slate */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Shadows */
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-soft-lg: 0 10px 40px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-soft-xl: 0 20px 50px -5px rgba(0, 0, 0, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px -10px rgba(16, 185, 129, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;
}

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

* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--secondary-800);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

::selection {
  background: var(--primary-200);
  color: var(--primary-900);
}

::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--secondary-300);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-400);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Typography */
.text-display-1 {
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-display-2 {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-heading-1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

.text-heading-2 {
  font-size: 2rem;
  line-height: 1.25;
}

.text-heading-3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.text-heading-4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.text-body {
  font-size: 1rem;
  line-height: 1.75;
}

.text-body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .text-display-1 { font-size: 3rem; }
  .text-display-2 { font-size: 2.5rem; }
  .text-heading-1 { font-size: 2rem; }
}

@media (max-width: 639px) {
  .text-display-1 { font-size: 2.25rem; }
  .text-display-2 { font-size: 2rem; }
}

/* Text Gradient */
.text-gradient,
.page-header-title span {
  background: linear-gradient(to right, var(--primary-600), var(--accent-500), var(--warm-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary-600);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease-in-out;
}

ul, ol {
  list-style: none;
  padding-left: 0px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-slow);
  text-decoration: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-500);
}

.btn-primary {
  background: var(--primary-600);
  color: white;
  box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
  background: var(--secondary-800);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--secondary-900);
  box-shadow: var(--shadow-soft-lg);
  transform: translateY(-2px);
  color: white;
}

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

.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-700);
  color: var(--primary-700);
}

.btn-lg { padding: 0.75rem 1.5rem; font-size: 1.125rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.25rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  border-radius: 9999px;
}

.badge-primary { background: var(--primary-100); color: var(--primary-700); }
.badge-accent { background: var(--accent-100); color: var(--accent-700); }
.badge-secondary { background: var(--secondary-100); color: var(--secondary-700); }
.badge-warm { background: var(--warm-100); color: var(--warm-700); }
.badge-md { padding: 0.25rem 0.75rem; font-size: 0.875rem; }
.badge-lg { padding: 0.375rem 1rem; font-size: 0.875rem; }

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all var(--transition-slow);
}

.card-elevated {
  box-shadow: var(--shadow-soft-lg);
  border: none;
}

.card-bordered {
  box-shadow: none;
  border: 2px solid var(--secondary-200);
}

.card-gradient {
  background: linear-gradient(135deg, white, rgba(255, 237, 213, 0.3), rgba(254, 249, 195, 0.1));
}

.card-dark {
  background: var(--secondary-900);
  color: white;
  border: none;
}

.card-hoverable:hover {
  box-shadow: var(--shadow-soft-lg);
  transform: translateY(-4px);
  cursor: pointer;
}

.card-padding-md { padding: 1.5rem; }
.card-padding-lg { padding: 2rem; }

@media (min-width: 768px) {
  .card-padding-lg { padding: 2.5rem; }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--secondary-50);
}

.section-accent {
  background: var(--primary-50);
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

@media (min-width: 1024px) {
  .section { padding: 5rem 0; }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--secondary-600);
  font-size: 1.125rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--secondary-200);
  border-radius: 0.75rem;
  background: white;
  color: var(--secondary-900);
  transition: all var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

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

/* Grid System */
.grid {
  display: grid;
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
}

.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-slow);
}

.header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 56px;
  width: auto;
  transition: transform var(--transition-slow);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin: 0;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.875rem;
  color: var(--secondary-500);
  font-family: var(--font-sans);
}

/* Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-700);
  border-radius: 0.5rem;
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-600);
  background: var(--secondary-50);
}

.nav-buttons {
  display: none;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav-buttons {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary-700);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }

  .mega-menu.active, .primary-menu li.menu-item-has-children.active > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      /* pointer-events: auto; */
      transition: opacity .3s ease, transform .3s ease;
      max-height: calc(100vh - 88px);
      overflow-y: auto;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 24rem;
  background: white;
  box-shadow: var(--shadow-soft-xl);
  padding: 1.5rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--secondary-100);
}

.mobile-menu-close {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary-600);
}

.mobile-menu-close:hover {
  background: var(--secondary-100);
  border-radius: 0.5rem;
}

.mobile-menu-nav {
  padding: 1.5rem 0;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--secondary-700);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--primary-600);
  background: var(--primary-50);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-50), rgba(254, 249, 195, 0.5), rgba(236, 253, 245, 0.3));
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,237,213,0.3) 0%, rgba(254,215,170,0.2) 50%, rgba(253,186,116,0.1) 100%);
}

.hero-blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: var(--primary-200);
  opacity: 0.3;
  border-radius: 9999px;
  filter: blur(60px);
}

.hero-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: var(--accent-200);
  opacity: 0.2;
  border-radius: 9999px;
  filter: blur(60px);
}

.hero .container {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero-content {
  animation: fadeIn 0.6s ease-out;
}

.hero-images {
  position: relative;
  height: 500px;
  display: none;
}

@media (min-width: 1024px) {
  .hero-images {
    display: block;
  }
}

.hero-image {
  position: absolute;
  width: 320px;
  height: 210px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft-xl);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-image:hover {
  transform: scale(1.05) !important;
  box-shadow: var(--shadow-glow);
}

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

/*.hero-image:nth-child(1) {
  top: 0;
  left: 2rem;
  transform: rotate(2deg);
  z-index: 10;
}

.hero-image:nth-child(2) {
  top: 6rem;
  right: 0;
  transform: rotate(-3deg);
}

.hero-image:nth-child(3) {
  top: 10rem;
  left: 0;
  transform: rotate(1deg);
}*/

/* CTA Cards Grid */
.cta-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cta-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Focus Section */
.focus-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .focus-grid { grid-template-columns: 1fr 1fr; }
}

.focus-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.focus-image {
  overflow: hidden;
  border-radius: 1rem;
}

.focus-image:nth-child(1),
.focus-image:nth-child(4) {
  aspect-ratio: 4/3;
}

.focus-image:nth-child(2),
.focus-image:nth-child(3) {
  aspect-ratio: 1/1;
}

.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.focus-image:hover img {
  transform: scale(1.05);
}

/* Help Options */
.help-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.help-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.help-option span:first-child {
  font-size: 1.5rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 1;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(4px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 80rem;
  max-height: 85vh;
}

.lightbox-image {
  max-height: 75vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft-xl);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox-close:hover {
  color: white;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===================================
   Gallery Detail Page
   =================================== */

/* Hero */
.gallery-detail-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.gallery-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-600);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color var(--transition-normal);
}

.gallery-detail-back:hover {
  color: var(--primary-600);
}

.gallery-detail-hero-content {
  max-width: 48rem;
}

.gallery-detail-title {
  margin: 1rem 0 1.5rem;
}

.gallery-detail-description {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.gallery-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-500);
  font-size: 0.9375rem;
  font-weight: 500;
}

.gallery-detail-meta-item svg {
  color: var(--primary-500);
}

/* Masonry Grid */
.gallery-detail-masonry {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-detail-masonry {
    column-count: 2;
    column-gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .gallery-detail-masonry {
    column-count: 3;
    column-gap: 1.5rem;
  }
}

.gallery-detail-item {
  break-inside: avoid;
  margin: 0 0 1.5rem;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--secondary-100);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-detail-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft-lg);
}

.gallery-detail-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-detail-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0);
  transition: background var(--transition-normal);
  opacity: 0;
  visibility: hidden;
}

.gallery-detail-item:hover .gallery-detail-item-overlay {
  background: rgba(15, 23, 42, 0.55);
  opacity: 1;
  visibility: visible;
}

.gallery-detail-zoom-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.gallery-detail-item:hover .gallery-detail-zoom-icon {
  transform: scale(1);
}

.gallery-detail-item-caption {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 0 1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===================================
   Full-screen Slideshow Lightbox
   =================================== */

.gallery-slideshow {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(8px);
}

.gallery-slideshow.active {
  display: flex;
  animation: gallerySlideshowFadeIn 0.3s ease;
}

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

/* Top bar */
.gallery-slideshow-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}

.gallery-slideshow-counter {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-slideshow-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slideshow-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Stage */
.gallery-slideshow-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
  padding: 0 4rem;
}

.gallery-slideshow-image-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-slideshow-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  animation: gallerySlideFade 0.4s ease;
}

@keyframes gallerySlideFade {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-slideshow-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 1rem;
  max-width: 40rem;
  min-height: 1.5rem;
}

/* Nav arrows */
.gallery-slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  z-index: 1;
}

.gallery-slideshow-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.gallery-slideshow-nav-prev { left: 1rem; }
.gallery-slideshow-nav-next { right: 1rem; }

/* Film strip */
.gallery-slideshow-filmstrip {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.gallery-slideshow-filmstrip::-webkit-scrollbar {
  height: 4px;
}

.gallery-slideshow-filmstrip::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-slideshow-filmstrip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.gallery-slideshow-thumb {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  transition: all var(--transition-normal);
  opacity: 0.5;
}

.gallery-slideshow-thumb:hover {
  opacity: 0.85;
}

.gallery-slideshow-thumb.active {
  border-color: var(--primary-500);
  opacity: 1;
  transform: scale(1.05);
}

.gallery-slideshow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 640px) {
  .gallery-slideshow-stage {
    padding: 0 1rem;
  }

  .gallery-slideshow-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .gallery-slideshow-nav-prev { left: 0.5rem; }
  .gallery-slideshow-nav-next { right: 0.5rem; }

  .gallery-slideshow-thumb {
    width: 3.5rem;
    height: 3.5rem;
  }

  .gallery-slideshow-image {
    max-height: 55vh;
  }
}

/* Gallery detail page styles */

/* Video Grid */
.video-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  position: relative;
  aspect-ratio: 24/16;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform var(--transition-slow);
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2), transparent);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all var(--transition-slow);
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  color: var(--primary-600);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 1;
}

.video-category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--primary-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.video-title {
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-duration {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Team Grid */
.teamSec .team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .teamSec .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .teamSec .team-grid { grid-template-columns: repeat(5, 1fr); }
}

.teamSec .team-card {
  text-align: center;
  padding: 0rem;
}

.teamSec .team-avatar {
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  /*background: linear-gradient(135deg, var(--primary-100), var(--primary-200));*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.teamSec .team-avatar img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft-lg);
  transition: .3s ease-in;
}

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

.teamSec .team-avatar svg {
  width: 40px;
  height: 40px;
  color: var(--primary-600);
}

.teamSec .team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-900);
  margin-bottom: 0.25rem;
  font-family: 'Inter';
  padding: 0px 15px;
}

.teamSec .team-role {
  font-weight: 500;
  color: var(--primary-600);
  margin-bottom: 15px;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-300), var(--primary-400), var(--primary-600));
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 5rem;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    padding-bottom: 3rem;
    width: 50%;
  }

  .timeline-item:nth-child(odd) {
    margin-left: auto;
    padding-left: 3rem;
  }

  .timeline-item:nth-child(even) {
    padding-right: 3rem;
    text-align: right;
  }
}

.timeline-marker {
  position: absolute;
  left: 2rem;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--primary-500);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-marker svg {
  width: 24px;
  height: 24px;
  color: white;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-marker {
    left: 0;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    left: 100%;
  }
}

.timeline-content {
  background: white;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--secondary-100);
  max-width: 28rem;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
  }
}

.timeline-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--secondary-600);
}

/* Footer */
.footer {
  background: var(--secondary-900);
  color: white;
}

.footer-main {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-main { padding: 5rem 0; }
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand p {
  color: var(--secondary-300);
  margin-top: 1.5rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--secondary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-400);
  transition: all var(--transition-normal);
}

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

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--secondary-300);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-400);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-500);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-item p,
.footer-contact-item a {
  color: var(--secondary-300);
}

.footer-contact-item a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--secondary-800);
  text-align: center;
}

.footer-bottom p {
  color: var(--secondary-400);
  font-size: 0.875rem;
}

/* Page Headers */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-50), rgba(254, 249, 195, 0.3), rgba(236, 253, 245, 0.2));
  overflow: hidden;
}

.page-header .container {
  position: relative;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .page-header .container { padding: 6rem 0; }
}

/* Contact Page */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    align-items: flex-start;
  }
  .form-grid {
    grid-column: span 2 / span 2;
  }
}

.contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 2.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

/* Contact Form 7 Styles */
.wpcf7 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

/* Labels */
.wpcf7 label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-700);
  margin-bottom: 0.5rem;
}

/* Text inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 input[type="search"],
.wpcf7 select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--secondary-200);
  border-radius: 0.75rem;
  background: white;
  color: var(--secondary-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="search"]:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Textarea */
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--secondary-200);
  border-radius: 0.75rem;
  background: white;
  color: var(--secondary-900);
  resize: vertical;
  height: 120px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1.5rem;
}

.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Select dropdown */
.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Submit button */
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: inherit;
  color: white;
  background: var(--primary-600);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  margin-top: 1.5rem;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 button[type="submit"]:active {
  transform: translateY(0);
}

/* Checkbox & Radio */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--primary-600);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.wpcf7 input[type="checkbox"] + span,
.wpcf7 input[type="radio"] + span {
  font-size: 0.875rem;
  color: var(--secondary-700);
  vertical-align: middle;
}

/* Acceptance checkbox */
.wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.wpcf7-acceptance input {
  margin-top: 0.25rem;
}

/* Validation errors (inline under fields) */
.wpcf7 .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-top: 0.375rem;
  display: block;
}

.wpcf7 .wpcf7-not-valid {
  border-color: #dc2626 !important;
}

/* Response output (success/error message box) */
.wpcf7-response-output {
  margin: 0;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  /*border: 2px solid transparent !important;*/
  text-align: center;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0 !important;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca !important;
}

.wpcf7-response-output.wpcf7-spam-blocked {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a !important;
}

/* Spinner */
.wpcf7 .ajax-loader {
  display: none;
}

/* Two-column layout for short fields */
.wpcf7 .wpcf7-form-control-wrap[data-name="your-name"],
.wpcf7 .wpcf7-form-control-wrap[data-name="your-email"],
.wpcf7 .wpcf7-form-control-wrap[data-name="your-phone"],
.wpcf7 .wpcf7-form-control-wrap[data-name="your-subject"] {
  /* CF7 wraps fields in p tags; use CSS grid on parent */
}

.wpcf7 .contact-form-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .wpcf7 .contact-form-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fallback message */
.contact-form-fallback {
  padding: 1.5rem;
  background: var(--secondary-50);
  border: 1px dashed var(--secondary-200);
  border-radius: 0.75rem;
  color: var(--secondary-600);
  font-size: 0.9375rem;
}

.icon-primary { background: var(--primary-100); color: var(--primary-600); }
.icon-accent { background: var(--accent-100); color: var(--accent-600); }
.icon-warm { background: var(--warm-100); color: var(--warm-600); }
.icon-neutral { background: var(--neutral-100); color: var(--neutral-600); }

/* Map Container */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--secondary-200);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Utilities */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-white { color: white; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.aspect-video { aspect-ratio: 16/9; }
.transition-all { transition: all var(--transition-normal); }
.transition-transform { transition: transform var(--transition-slow); }
.transition-colors { transition: color var(--transition-normal); }

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

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

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Float animations for hero images */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 7s ease-in-out 2s infinite;
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out 1s infinite;
}

/* Flex wrap on smaller screens */
@media (max-width: 639px) {
  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }

  .btn-group .btn {
    width: auto;
  }
}

/* ===================================
   Blog Styles
   =================================== */

/* Blog Listing Page */
.blog-featured {
  display: grid;
  gap: 2rem;
  background: var(--secondary-50);
  border-radius: 1.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .blog-featured {
    grid-template-columns: 1.2fr 1fr;
  }
}

.blog-featured-image {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .blog-featured-image {
    height: auto;
  }
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-featured-image:hover img {
  transform: scale(1.05);
}

.blog-featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary-500);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Blog Author */
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.blog-author-avatar.large {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
}

.blog-author-name {
  display: block;
  font-weight: 600;
  color: var(--secondary-900);
  font-size: 0.875rem;
}

.blog-author-role {
  display: block;
  font-size: 0.75rem;
  color: var(--secondary-500);
}

/* Blog Filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--secondary-200);
  margin-bottom: 2rem;
}

.blog-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--secondary-200);
  background: white;
  color: var(--secondary-600);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-filter-btn:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
}

.blog-filter-btn.active {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-900);
  margin: 0.75rem 0;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--primary-600);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--secondary-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary-600);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  gap: 0.625rem;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-200);
}

.blog-pagination-btn .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--secondary-200);
  background: white;
  color: var(--secondary-700);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.blog-pagination-btn .page-numbers:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
}

.blog-pagination-btn .page-numbers.current {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

.blog-pagination-ellipsis {
  color: var(--secondary-400);
  padding: 0 0.25rem;
}

.blog-pagination-next {
  padding: 0 1.25rem;
}

/* Blog Subscribe Form */
.blog-subscribe-form {
  display: flex;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto;
}

.blog-subscribe-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--secondary-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-subscribe-form input:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

@media (max-width: 639px) {
  .blog-subscribe-form {
    flex-direction: column;
  }
}

/* ===================================
   Blog Detail Page
   =================================== */

/* Article Back Link */
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-600);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
  transition: gap 0.2s;
}

.blog-back-link:hover,
.services-section-grid .gap-3 {
  gap: 0.75rem;
}

/* Article Header */
.blog-article-header {
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .blog-article-header {
    padding: 6rem 0;
  }
}

/* Article Image */
.blog-article-image {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: -2rem;
}

.blog-article-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft-xl);
}

@media (min-width: 1024px) {
  .blog-article-image {
    margin-top: -3rem;
  }
}

/* Article Content */
.blog-article-content {
  padding: 3rem 0;
}

.blog-article-content h2 {
  font-size: 1.75rem;
  color: var(--secondary-900);
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
}

.blog-article-content ul {
  list-style-type: disc;
}

.blog-article-content h3,
.blog-article-content h4,
.blog-article-content h5,
.blog-article-content h6 {
  margin: 15px 0px;
}

.blog-article-content img {
  border-radius: 1.2rem;
}

.blog-article-content th,
.blog-article-content td {
 border: 1px solid var(--primary-300);
 padding: 2px 10px;
}

.blog-article-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
}

.blog-article-content blockquote {
  border-left: 4px solid var(--primary-500);
  background: var(--primary-50);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
}

.blog-article-content blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--secondary-800);
  margin: 0;
}

.blog-article-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary-500);
  font-style: normal;
}

/* Blog Stats */
.blog-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .blog-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-stat-card {
  background: var(--secondary-50);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.blog-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.blog-stat-label {
  font-size: 0.875rem;
  color: var(--secondary-600);
}

/* Blog Figure */
.blog-figure {
  margin: 2.5rem 0;
}

.blog-figure img {
  width: 100%;
  border-radius: 1rem;
}

.blog-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary-500);
  text-align: center;
  font-style: italic;
}

/* Article Footer */
.blog-article-footer {
  border-top: 1px solid var(--secondary-200);
  padding: 2rem 0;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-tag {
  padding: 0.375rem 0.875rem;
  background: var(--secondary-100);
  color: var(--secondary-700);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.blog-tag:hover {
  background: var(--primary-100);
  color: var(--primary-700);
}

.blog-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-share-buttons {
  display: flex;
  gap: 0.5rem;
}

.blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--secondary-100);
  color: var(--secondary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.blog-share-btn:hover {
  background: var(--primary-600);
  color: white;
}

/* Author Bio */
.blog-author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .blog-author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Blog Page Header Styles */
.blog-page-badge {
  margin-bottom: 1.5rem;
}

.blog-page-title {
  color: var(--secondary-900);
  margin-bottom: 1.5rem;
}

.blog-page-subtitle {
  color: var(--secondary-600);
  max-width: 48rem;
}

/* Blog Featured Content Styles */
.blog-featured-content .blog-meta {
  margin-bottom: 1rem;
}

.blog-featured-content h2 {
  font-size: 2rem;
  color: var(--secondary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-featured-content h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured-content h2 a:hover {
  color: var(--primary-600);
}

.blog-featured-content .text-body-lg {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* Blog Author Avatar Gradient */
.blog-author-avatar-gradient {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
}

/* Blog Subscribe Section */
.blog-subscribe-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  padding: 5rem 0;
}

.blog-subscribe-section .container {
  text-align: center;
}

.blog-subscribe-section h2 {
  font-size: 2.5rem;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.blog-subscribe-section .text-body-lg {
  color: var(--secondary-600);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Section Spacing */
.blog-section-top {
  padding-top: 3rem;
}

.blog-section-no-top {
  padding-top: 0;
}

/* Blog Category Badges */
.badge-community {
  background: var(--primary-100);
  color: var(--primary-700);
}

.badge-environment {
  background: var(--accent-100);
  color: var(--accent-700);
}

.badge-volunteers {
  background: var(--warm-100);
  color: var(--warm-700);
}

.badge-women {
  background: var(--primary-100);
  color: var(--primary-700);
}

/* Nav Button Outline Primary */
.btn-outline-primary {
  border-color: var(--primary-600);
  color: var(--primary-600);
}

/* Footer Brand Logo Height */
.footer-brand img {
  height: 56px;
}

/* Dark Subscribe Section */
.blog-dark-subscribe-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-800), var(--secondary-900));
  color: white;
  padding: 5rem 0;
}

.blog-dark-subscribe-section .container {
  text-align: center;
}

.blog-dark-subscribe-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-dark-subscribe-section .text-body-lg {
  color: var(--secondary-300);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-dark-subscribe-section .blog-subscribe-form input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.blog-dark-subscribe-section .blog-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Blog Featured Post Dark Button */
.blog-featured .btn-primary {
  background: var(--primary-600);
  color: white;
}

/* Container Narrow - for article content */
.container-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Menu Logo Height */
.mobile-menu-logo {
  height: 48px;
}

/* Blog Detail Additional Styles */
.blog-meta-header {
  margin: 1.5rem 0 1rem;
}

.blog-article-title {
  font-size: 3rem;
  color: var(--secondary-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.blog-article-subtitle {
  line-height: 1.75;
  margin-bottom: 2rem;
}

.blog-lead-paragraph {
  font-size: 1.25rem;
  color: var(--secondary-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-conclusion {
  font-weight: 500;
  color: var(--secondary-800);
}

.blog-share-label {
  font-weight: 500;
  color: var(--secondary-700);
}

.blog-author-section {
  background: var(--secondary-50);
}

.blog-author-bio-name {
  font-size: 1.5rem;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

.blog-author-bio-text {
  color: var(--secondary-600);
  margin-bottom: 1rem;
}

.blog-related-title {
  font-size: 2rem;
  color: var(--secondary-900);
  margin-bottom: 2rem;
  text-align: center;
}

.blog-grid-related {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .blog-article-title {
    font-size: 2rem;
  }
}

/* ===================================
   Global Utility Classes
   =================================== */

/* Page Header Styles */

.banner-content-wrap {
  max-width: 60%;
}

.page-header-badge {
  margin-bottom: 1.5rem;
}

.page-header-title {
  color: var(--secondary-900);
  margin-bottom: 1.5rem;
  margin-top: 0px;
  font-size: 4.5rem;
}

.page-header-subtitle {
  color: var(--secondary-600);
  max-width: 48rem;
  line-height: 1.75;
}

/* Section Subtitle */
.section-subtitle {
  color: var(--secondary-600);
}

/* Grid Layout Utilities */
.grid-cols-1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-gap-3rem {
  gap: 3rem;
}

.grid-align-center {
  align-items: center;
}

.grid-gap-2rem {
  gap: 2rem;
}

.grid-auto-fit {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.abtobjSec .grid-auto-fit .card-padding-md {
  padding: 2rem;
}

.vismisCont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.vismisCont .icon-box,
.vismisCont .card-title {
  margin-bottom: 0px;
}

/* Image Styles */
.img-full-width {
  width: 100%;
}

.img-rounded {
  border-radius: 1rem;
}

.img-shadow {
  box-shadow: var(--shadow-soft-xl);
}

/* Icon Box Styles */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-box-primary {
  background: var(--primary-100);
}

.icon-box-accent {
  background: var(--accent-100);
}

.icon-box-sm {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  margin-bottom: 0;
}

/* Card Content Styles */
.card-title {
  color: var(--secondary-900);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--secondary-600);
  line-height: 1.75;
}

.card-text-sm {
  color: var(--secondary-700);
  margin-bottom: 0px;
}

/* Flex Utilities */
.flex-row {
  display: flex;
  gap: 1rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Number Badge */
.number-badge {
  color: var(--primary-600);
  font-weight: 700;
}

/* About Page - Apostolic Preferences */
.about-apostolic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-apostolic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-apostolic-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-apostolic-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-apostolic-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease-in-out;
}

.about-apostolic-icon--primary {
  background: var(--primary-100);
  color: var(--primary-600);
}

.about-apostolic-icon--accent {
  background: var(--accent-100);
  color: var(--accent-600);
}

.about-apostolic-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-900);
}

.about-apostolic-description {
  font-size: 0.875rem;
  color: var(--secondary-600);
  line-height: 1.5;
}

.about-apostolic-card:hover .about-apostolic-icon {
  transform: scale(1.1);
}

/* Contact Page Styles */
.contact-section-title {
  font-size: 2rem;
  color: var(--secondary-900);
  margin-bottom: 1.5rem;
}

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

.contact-label {
  font-weight: 600;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--secondary-600);
}

.contact-link {
  color: var(--accent-600);
  font-weight: 500;
}

.contact-link-block {
  color: var(--accent-600);
  display: block;
}

.contact-info-text {
  color: var(--neutral-600);
}

/* Gallery Filter Styles */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn-active {
  background: var(--primary-600);
  color: white;
  box-shadow: var(--shadow-soft);
}

.filter-btn-inactive {
  background: var(--secondary-100);
  color: var(--secondary-700);
}

/* Hero Section Styles */
.hero-stats-border {
  padding-top: 1.5rem;
  border-top: 1px solid var(--secondary-100);
}

.hero-stat-label {
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}

.hero-stat-value {
  display: block;
  text-align: center;
}

.hero-description {
  color: var(--secondary-600);
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-users {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-user-avatars {
  display: flex;
  margin-left: -0.75rem;
}

.hero-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-user-avatar-stacked {
  margin-left: -0.75rem;
}

.hero-user-count {
  font-size: 0.875rem;
  color: var(--secondary-600);
}

.hero-user-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-900);
}

/* Service Card Styles */
.service-card {
  text-align: center;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}

.service-card-icon-primary {
  background: var(--primary-100);
}

.service-card-icon-accent {
  background: var(--accent-100);
}

.service-card-icon-warm {
  background: var(--warm-100);
}

.service-card-title {
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

.service-card-text {
  color: var(--secondary-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-card-link {
  color: var(--primary-600);
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/* Services Volunteer CTA */
.services-volunteer-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-800), var(--secondary-900));
  color: white;
  padding: 5rem 0;
}

.services-volunteer-section .container {
  position: relative;
}

.services-volunteer-badge {
  /*background: rgba(249, 115, 22, 0.2);*/
  color: #334155;
  margin-bottom: 1.5rem;
  background: #f1f5f9;
  line-height: 1.5;
  font-size: 1rem;
}

.services-volunteer-title {
  margin-bottom: 1.5rem;
}

.services-volunteer-text {
  color: var(--secondary-300);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.services-volunteer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .services-volunteer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.services-volunteer-text-2 {
  color: var(--secondary-400);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.services-volunteer-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.services-volunteer-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.services-volunteer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-volunteer-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--secondary-200);
}

.services-volunteer-list-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary-500);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Major Interventions */
.services-interventions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .services-interventions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-interventions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-intervention-card {
  padding: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.services-intervention-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-intervention-icon--primary {
  background: var(--primary-100);
  color: var(--primary-600);
}

.services-intervention-icon--accent {
  background: var(--accent-100);
  color: var(--accent-600);
}

.services-intervention-title {
  /*font-size: 1.125rem;*/
  font-weight: 500;
  color: var(--secondary-900);
}

/* Footer Brand Image */
.footer-brand img {
  height: 56px;
}

/* Video Container */
.video-container {
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

/* Page Header Subtitle - Compact */
.page-header-subtitle-compact {
  color: var(--secondary-600);
  max-width: 48rem;
}

/* Services Page Styles */

.services-section-grid {
  display: grid;
  /*grid-template-columns: 1fr;*/
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.services-badge {
  margin-bottom: 1rem;
}

.services-section-title {
  color: var(--secondary-900);
  margin-bottom: 1.5rem;
}

.services-section-text {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
}

.services-cards-grid {
  display: grid;
  gap: 1rem;
}

.services-card-row {
  display: flex;
  gap: 1rem;
}

.services-icon-box-lg {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-card-title {
  font-weight: 600;
  color: var(--secondary-900);
}

.services-card-subtitle {
  color: var(--secondary-600);
  font-size: 0.875rem;
}

.services-info-box {
  background: var(--primary-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.services-info-box-title {
  font-weight: 600;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

.services-info-box-text {
  color: var(--secondary-600);
  font-size: 0.875rem;
}

.services-img-card {
  overflow: hidden;
  padding: 0;
}

.services-img-card img {
  width: 100%;
}

.services-img-card-aspect img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Services Volunteer CTA */
.services-volunteer-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-800), var(--secondary-900));
  color: white;
  padding: 5rem 0;
}

.services-volunteer-section .container {
  position: relative;
}

/* Video CTA Section */
.video-cta-section {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
  padding: 5rem 0;
}

.video-cta-section .container {
  text-align: center;
}

.video-cta-title {
  color: white;
  margin-bottom: 1rem;
}

.video-cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.video-cta-btn {
  background: white;
  color: var(--accent-700);
}

/* Mobile Menu Footer Buttons */
.mobile-menu-buttons {
  padding-top: 1.5rem;
  border-top: 1px solid var(--secondary-100);
}

.mobile-menu-buttons .btn {
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}

.mobile-menu-buttons .btn:last-child {
  margin-bottom: 0;
}

/* Icon Box with Background - Generic */
.icon-box-bg-white-opaque {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Utility Classes */
.p-0 {
  padding: 0;
}

.emergency-phone-link {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #34d399;
}

.emergency-helper-text {
  color: var(--secondary-400);
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* Services Icon Box Background */
.services-icon-accent {
  background: var(--accent-100);
}

.services-icon-primary {
  background: var(--primary-100);
}

.services-card-bg-dark {
  background: var(--secondary-800);
  color: white;
}

/* Card Without Padding */
.card-no-padding {
  padding: 0;
}

/* Newsletter listing and detail page styles */

/* ============================================================
   Newsletter Page — CPT Archive + Single Edition Styles
   Separate stylesheet for the Newsletter page template.
   Enqueued via wp_enqueue_style in functions.php.
   ============================================================ */

/* Two-column layout: subscribe form + featured edition */
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .newsletter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Subscribe form card */
.newsletter-subscribe-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}
.newsletter-subscribe-text {
  color: var(--secondary-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.newsletter-form-grid {
  display: grid;
  gap: 1.25rem;
}

/* Featured edition card */
.newsletter-editions-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1.5rem;
}
.newsletter-featured-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.newsletter-featured-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.newsletter-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.newsletter-featured-card:hover .newsletter-featured-image img {
  transform: scale(1.05);
}
.newsletter-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-featured-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.newsletter-featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  line-height: 1.3;
}
.newsletter-featured-text {
  color: var(--secondary-600);
  line-height: 1.6;
}
.newsletter-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Year filter tabs */
.newsletter-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--secondary-200);
}
.newsletter-filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--secondary-200);
  background: white;
  color: var(--secondary-600);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.newsletter-filter-tab:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
}
.newsletter-filter-tab.is-active {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

/* Archive grid */
.newsletter-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .newsletter-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .newsletter-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Archive card */
.newsletter-archive-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.newsletter-archive-card:hover {
  transform: translateY(-4px);
}
.newsletter-archive-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.newsletter-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.newsletter-archive-card:hover .newsletter-archive-image img {
  transform: scale(1.08);
}
.newsletter-archive-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.newsletter-archive-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.newsletter-archive-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-900);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.newsletter-archive-card:hover .newsletter-archive-title {
  color: var(--primary-600);
}
.newsletter-archive-text {
  color: var(--secondary-600);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}
.newsletter-archive-actions {
  display: flex;
  /*align-items: center;*/
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--secondary-100);
}

.newsletter-archive-actions .btn-ghost {
  box-shadow: 0 0 0 2px var(--primary-500);
  color: var(--primary-600);
}

/* Card icon (shared between featured + archive) */
.newsletter-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-featured-head .newsletter-card-icon {
  width: 56px;
  height: 56px;
}
.newsletter-card-icon-primary {
  background: var(--primary-100);
  color: var(--primary-600);
}
.newsletter-card-icon-accent {
  background: var(--accent-100);
  color: var(--accent-600);
}
.newsletter-card-icon-warm {
  background: var(--warm-100);
  color: var(--warm-600);
}

/* Card badge */
.newsletter-card-badge {
  display: inline-flex;
  align-items: center;
}

/* Card link */
.newsletter-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary-600);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.newsletter-card-link:hover {
  color: var(--primary-700);
}

/* Empty state */
.newsletter-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--secondary-500);
  font-size: 1rem;
}

/* Contribute CTA */
.newsletter-contribute-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-800), var(--secondary-900));
  color: white;
  padding: 5rem 0;
  text-align: center;
  border-radius: 1.5rem;
  overflow: hidden;
}
.newsletter-contribute-badge {
  background: rgba(202, 138, 4, 0.2);
  color: rgb(253, 186, 116);
  margin-bottom: 1.5rem;
}
.newsletter-contribute-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.newsletter-contribute-text {
  color: var(--secondary-300);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   PDF Preview Modal — Custom PDF.js Viewer
   ============================================================ */
.newsletter-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.newsletter-pdf-modal.is-open {
  display: flex;
}
.newsletter-pdf-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  animation: newsletterFadeIn 0.25s ease;
}
.newsletter-pdf-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 64rem;
  height: 85vh;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: newsletterSlideUp 0.3s ease;
}

/* Header with title + external actions */
.newsletter-pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--secondary-200);
  flex-shrink: 0;
}
.newsletter-pdf-modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-900);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsletter-pdf-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.newsletter-pdf-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.newsletter-pdf-modal-btn-primary {
  background: var(--primary-600);
  color: white;
}
.newsletter-pdf-modal-btn-primary:hover {
  background: var(--primary-700);
}
.newsletter-pdf-modal-btn-ghost {
  background: transparent;
  color: var(--secondary-600);
}
.newsletter-pdf-modal-btn-ghost:hover {
  background: var(--secondary-100);
  color: var(--secondary-900);
}

/* Custom PDF viewer toolbar */
.newsletter-pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--secondary-50);
  border-bottom: 1px solid var(--secondary-200);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.newsletter-pdf-toolbar-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.newsletter-pdf-toolbar-divider {
  width: 1px;
  height: 24px;
  background: var(--secondary-200);
  margin: 0 0.25rem;
}
.newsletter-pdf-toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.375rem;
  border: none;
  background: transparent;
  color: var(--secondary-600);
  cursor: pointer;
  transition: all 0.15s ease;
}
.newsletter-pdf-toolbar-btn:hover {
  background: var(--secondary-200);
  color: var(--secondary-900);
}
.newsletter-pdf-toolbar-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.newsletter-pdf-toolbar-btn:disabled:hover {
  background: transparent;
  color: var(--secondary-600);
}
.newsletter-pdf-page-info {
  font-size: 0.8125rem;
  color: var(--secondary-600);
  font-weight: 500;
  min-width: 70px;
  text-align: center;
  user-select: none;
}
.newsletter-pdf-zoom-label {
  font-size: 0.8125rem;
  color: var(--secondary-600);
  font-weight: 500;
  min-width: 48px;
  text-align: center;
  user-select: none;
}

/* Canvas scroll area */
.newsletter-pdf-modal-body {
  flex: 1;
  overflow: auto;
  position: relative;
  background: var(--secondary-100);
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.newsletter-pdf-canvas-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.newsletter-pdf-canvas {
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: white;
}

/* Loading + error states */
.newsletter-pdf-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--secondary-100);
  z-index: 5;
}
.newsletter-pdf-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--secondary-200);
  border-top-color: var(--primary-600);
  border-radius: 50%;
  animation: newsletterSpin 0.8s linear infinite;
}
.newsletter-pdf-loading-text {
  color: var(--secondary-600);
  font-size: 0.875rem;
  font-weight: 500;
}
.newsletter-pdf-modal-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;
}
.newsletter-pdf-modal-fallback.is-visible {
  display: flex;
}
.newsletter-pdf-modal-fallback-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-pdf-modal-fallback-text {
  color: var(--secondary-600);
  font-size: 1rem;
  max-width: 24rem;
}

@keyframes newsletterFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes newsletterSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes newsletterSpin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Single Edition Page
   ============================================================ */
.newsletter-single-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.newsletter-single-cover {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin: 2rem 0;
}
.newsletter-single-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsletter-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-200);
}
.newsletter-pdf-embed {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--primary-50);
  border-radius: 1rem;
}

/* Responsive */
@media (max-width: 639px) {
  .newsletter-pdf-modal {
    padding: 0;
  }
  .newsletter-pdf-modal-dialog {
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
  }
  .newsletter-contribute-title {
    font-size: 1.75rem;
  }
}

/* Toolbar background */
.df-ui-controls {
    background: #111;
    border-radius: 10px;
    padding: 10px;
}

/* Buttons */
.df-ui-btn {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
}

.df-ui-btn:hover {
    background: #c13b5f;
}

/* Page background */
.df-container {
    background: #f5f5f5;
}

/* Bookmark panel */
.df-outline-item {
    color: #333;
}

/* Loading screen */
.df-loading {
    background: #000;
}

/* Newsletter listing and detail page styles */

/* ============================================================
   FCRA Page
   ============================================================ */
.fcra-list {
  /*max-width: 48rem;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 60px;
}

.fcra-list:last-child {
  margin-bottom: 0px;
}

.fcra-title-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 65%;
  margin: auto;
  text-align: center;
  flex-direction: column;
}

.fcra-list-item {
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--secondary-200);
  background: var(--white);
  transition: all 0.2s ease;
}

.fcra-list-item:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-soft);
  background: var(--secondary-50);
}

.fcra-list-text {
  font-size: 2rem;
  font-weight: 500;
  color: var(--secondary-800);
  line-height: 1.5;
}

.contrib-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--secondary-200);
  padding: 1.25rem 1.5rem;
  margin-bottom: 10px;
}

.contrib-list > * {
  flex: auto;
  text-align: center;
}

.contrib-name {
  max-width: 50%;
  text-align: left;
}

/* ============================================================
   Annual Reports Page
   ============================================================ */
.reports-grid .dflip-books {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.reports-grid .df-posts>.df-popup-thumb {
  width: 100%;
}

.pageMain .df-posts>.df-popup-thumb {
  width: calc(33% - 30px);
  margin-top: 0px !important;
}

.report-cta {
  /*max-width: 48rem;*/
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0px;
}
.report-cta-icon {
  margin: 0 auto 1.5rem;
}
.report-cta-title {
  margin-bottom: 1rem;
}
.report-cta-text {
  color: var(--secondary-300);
  margin-bottom: 2rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
.report-cta-btn {
  border-color: white;
  color: white;
}
.report-cta-btn:hover {
  background: white;
  color: var(--secondary-900);
}

/* Teams page styles */

/* Team Grid */

@media (min-width: 640px) {
  .team-grid.exec-team { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid.exec-team { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 40px;
  height: 40px;
  color: var(--primary-600);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-900);
  margin-bottom: 0.25rem;
}

.team-role {
  font-weight: 500;
  color: var(--primary-600);
}

/* Team Initials */
.team-initials {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-600);
  font-family: var(--font-display);
}

/* Core Team Grid */
.core-team-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .core-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .core-team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .core-team-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Team Stats */
.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--secondary-50), rgba(236, 253, 245, 0.3));
  border: 1px solid var(--secondary-100);
}

.team-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 0.75rem;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-600);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.team-stat-label {
  font-size: 0.8125rem;
  color: var(--secondary-600);
  font-weight: 500;
}

/* Team CTA */
.team-cta-card {
  max-width: 75%;
  margin: 0 auto;
}

.team-cta-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-cta-title {
  margin-bottom: 0.75rem;
}

.team-cta-text {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.team-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.team-cta-address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--secondary-500);
}

.team-cta-address svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Donation page styles start */

.donation_types {
    padding: 5rem 0px;
}

.donation_type_tabs {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.donation-tabs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  flex: 0 0 auto;
  width: 25%;
}

.don-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    /*border: 2px solid rgba(231, 84, 128, 0.2);*/
    /*background: white;*/
    background: var(--primary-100);
    color: rgb(75, 85, 99);
    border-radius: 1.5rem;
    padding: 15px 0px;
}

.don-btn.active {
  background: var(--primary-900);
  color: white;
}

.donation-card {
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
    border: 1px solid rgba(231, 84, 128, 0.15);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-soft);
    display: none;
}

.donation-card.active {
     display: block;
}

.bankInfo {
    max-width: 70%;
}

.bankDet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0px;
    border-bottom: 1px solid rgba(231, 84, 128, 0.1);
}

.bankDet span {
    min-width: 140px;
    font-size: 0.85rem;
    color: rgb(156, 163, 175);
    font-weight: 500;
    padding-top: 1px;
}

.bankDet p.ac_numb {
    font-family: "Courier New", monospace;
    font-weight: 600;
    color: rgb(45, 45, 45);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.bankDet p {
    margin-bottom: 0px;
}

.donation_cont .don_title {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(45, 45, 45);
    margin-bottom: 0.4rem;
}

.donation_cont ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px 60px;
    flex-wrap: wrap;
}

.donation_cont ul li {
    position: relative;
    padding-left: 30px;
    /*margin-bottom: 10px;*/
}

.donation_cont ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c53d62;
    font-weight: 500;
}

.donation_cont .ctaArea {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px dashed rgba(231, 84, 128, 0.3);
}

.donation_cont .ctaArea .ctaBtn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgb(231, 84, 128), rgb(193, 59, 95));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: rgba(231, 84, 128, 0.3) 0px 4px 16px;
}

.faqSec {
    background: rgb(249, 250, 251);
    padding: 5rem 0px;
}

.faqCont {
    max-width: 60%;
    margin: auto;
}

.faqItem {
    background: white;
    /*border: 1px solid rgba(231, 84, 128, 0.3);*/
    border: 1px solid rgb(229, 231, 235);
    border-radius: 0.875rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
    box-shadow: rgba(231, 84, 128, 0.08) 0px 4px 16px
}

.faqItem.active {
    border: 1px solid rgba(231, 84, 128, 0.3);
}

.faqQues {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faqQues h5 {
  font-size: 18px;
}

.faqQues h6,
.faqAns p {
    margin-bottom: 0px;
}

.faqQues span {
    font-size: 20px;
    transition: .3s ease-in-out;
}

.faqItem.active .faqQues span {
    transform: rotate(45deg);
}

.faqAns {
    padding: 1rem 1.5rem 1.25rem;
    color: rgb(75, 85, 99);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(231, 84, 128, 0.1);
    transition: .5s ease-in-out;
    display: none;
}

.faqItem.active .faqAns {
    display: block;
}

/* Donation page styles end */
