:root {
  /* Brand colors from logo */
  --primary-blue: #156ea4;
  --primary-blue-dark: #115f90;
  --primary-blue-darker: #0e517b;
  --accent-lime: #c8d835;
  --accent-lime-light: #dce85f;

  /* Neutrals */
  --white: #ffffff;
  --bg-light: #f4f7fb;
  --bg-alt: #eff4fb;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #64748b;
  --border: #d6e2f0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(21,110,164,.08);
  --shadow-md: 0 8px 20px rgba(21,110,164,.12);
  --shadow-lg: 0 20px 40px rgba(21,110,164,.15);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px;
}

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

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

body {
  margin: 0;
  padding: 310px 0 0 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 720px at 90% -10%, rgba(200,216,53,.15), transparent 60%),
    radial-gradient(1200px 700px at 0% -15%, rgba(21,110,164,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(244,247,251,1) 60%);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

main {
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 101;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  padding: 20px 40px;
  background: 
    linear-gradient(180deg, 
      rgba(244, 247, 251, 0.95) 0%, 
      rgba(239, 244, 251, 0.90) 100%
    ),
    radial-gradient(ellipse 150% 100% at 50% 50%, rgba(21, 110, 164, 0.08), transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% 50%, rgba(200, 216, 53, 0.06), transparent 70%);
}

.logo-img {
  height: 250px;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

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

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 16px 28px;
  width: 100%;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(21, 110, 164, 0.08) 0%,
    rgba(200, 216, 53, 0.12) 50%,
    rgba(21, 110, 164, 0.08) 100%
  );
  backdrop-filter: blur(10px);
}

.site-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-lime));
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--primary-blue);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Active section styling */
.site-nav a.active {
  color: var(--primary-blue);
}

.site-nav a.active::after {
  width: 100%;
  background: var(--accent-lime);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 60px 24px 100px;
  text-align: center;
  background:
    /* Graph paper grid - small squares */
    repeating-linear-gradient(
      0deg,
      rgba(21,110,164,0.03) 0px,
      rgba(21,110,164,0.03) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(21,110,164,0.03) 0px,
      rgba(21,110,164,0.03) 1px,
      transparent 1px,
      transparent 20px
    ),
    /* Graph paper grid - larger squares */
    repeating-linear-gradient(
      0deg,
      rgba(21,110,164,0.06) 0px,
      rgba(21,110,164,0.06) 2px,
      transparent 2px,
      transparent 100px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(21,110,164,0.06) 0px,
      rgba(21,110,164,0.06) 2px,
      transparent 2px,
      transparent 100px
    ),
    /* Fading gradient overlay for grid - fades from center outward */
    radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 30%, transparent 60%),
    /* Color gradients */
    radial-gradient(1000px 600px at 50% -5%, rgba(21,110,164,.15), transparent 58%),
    radial-gradient(1100px 650px at 110% 20%, rgba(200,216,53,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(21,110,164,.08), transparent 55%),
    /* Base gradient */
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,247,251,1) 100%);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated background shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21,110,164,0.3), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200,216,53,0.35), transparent);
  bottom: -80px;
  right: -80px;
  animation-delay: 5s;
  animation-duration: 25s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21,110,164,0.25), transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
  animation-duration: 30s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 10px) scale(1.05);
  }
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

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

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(21,110,164,0.15), rgba(200,216,53,0.15));
  border: 1px solid rgba(21,110,164,0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue-dark);
  animation: slideDown 0.8s ease 0.2s both;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(21,110,164,0.12);
}

.badge-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-lime));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

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

/* Hero title */
.hero h1 {
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.tagline {
  color: var(--text-medium);
  font-size: clamp(17px, 3vw, 21px);
  margin: 0 auto 36px;
  max-width: 800px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px auto;
  padding: 32px;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(21, 110, 164, 0.15);
  box-shadow: 0 10px 40px rgba(21, 110, 164, 0.1);
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat-value {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA buttons */
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 28px 0 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:not(.primary) {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 16px rgba(21, 110, 164, 0.15);
}

.btn:not(.primary):hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(21, 110, 164, 0.25);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-lime));
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(21, 110, 164, 0.25);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(21, 110, 164, 0.35);
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--accent-lime));
}

/* Pulse animation for primary button */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 24px rgba(21, 110, 164, 0.25);
  }
  50% {
    box-shadow: 0 8px 24px rgba(21, 110, 164, 0.4), 0 0 0 8px rgba(21, 110, 164, 0.1);
  }
  100% {
    box-shadow: 0 8px 24px rgba(21, 110, 164, 0.25);
  }
}

.hero .btn.primary {
  animation: pulse 2s ease-in-out infinite;
}

.hero .btn.primary:hover {
  animation: none;
}

/* Hero trust indicators */
.hero-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(21, 110, 164, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 110, 164, 0.15);
}

.trust-icon {
  font-size: 20px;
}

.note {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(200,216,53,.08), rgba(255,255,255,0)), var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 800;
  margin: 0 auto 24px;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-lime));
  border-radius: 2px;
}

.section > .container {
  text-align: center;
}

.section > .container > h2 {
  width: 100%;
}

.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.7;
}

.section p {
  margin: 0 auto 16px;
  color: var(--text-medium);
  line-height: 1.8;
  font-size: 16px;
  text-align: center;
  max-width: 900px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0 24px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-value {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
}

.fineprint {
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
  margin-top: 24px;
}

/* Cards Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-medium);
}

.card li {
  margin: 12px 0;
  line-height: 1.7;
}

.future-vision {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(21,110,164,.08), rgba(200,216,53,.08));
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
}

.future-vision p {
  font-size: 18px;
  margin: 0;
  color: var(--text-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(21, 110, 164, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  cursor: pointer;
  height: 420px;
  display: flex;
  flex-direction: column;
  animation: fadeInScale 0.6s ease forwards;
  opacity: 0;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(21, 110, 164, 0.25);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 110, 164, 0.1), rgba(200, 216, 53, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

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

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 110, 164, 0) 0%,
    rgba(21, 110, 164, 0.3) 50%,
    rgba(21, 110, 164, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  z-index: 2;
}

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

.gallery-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-lime));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(21, 110, 164, 0.3);
}

.gallery-caption {
  padding: 24px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.gallery-caption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-lime));
  border-radius: 2px;
}

.gallery-caption h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.gallery-item:hover .gallery-caption h3 {
  color: var(--primary-blue-dark);
}

.gallery-caption p {
  margin: 0;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-caption p::before {
  content: '📍';
  font-size: 16px;
  flex-shrink: 0;
}

/* Featured gallery items (first and every 4th item) */
.gallery-item:nth-child(4n+1) {
  grid-column: span 1;
}

@media (min-width: 769px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .gallery-item:nth-child(4n+1) {
    grid-column: span 2;
    height: 450px;
  }

  .gallery-item:nth-child(4n+1) .gallery-image-wrapper {
    height: 310px;
  }
}

@media (min-width: 1024px) {
  .gallery-item:nth-child(4n+1) {
    grid-column: span 2;
    height: 480px;
  }

  .gallery-item:nth-child(4n+1) .gallery-image-wrapper {
    height: 340px;
  }

  .gallery-item:nth-child(4n+1) .gallery-caption h3 {
    font-size: 22px;
  }

  .gallery-item:nth-child(4n+1) .gallery-caption p {
    font-size: 15px;
  }
}

/* Staggered animation for gallery items */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px !important;
}

.contact-card p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.contact-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

.donation-info {
  margin-top: 16px;
}

.donation-card {
  background: linear-gradient(135deg, rgba(21,110,164,.06), rgba(200,216,53,.06));
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.donation-card h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: left;
}

.donation-card p {
  text-align: left;
}

.bank-details {
  margin: 24px 0;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.bank-details h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.bank-table {
  width: 100%;
  border-collapse: collapse;
}

.bank-table tr {
  border-bottom: 1px solid var(--border);
}

.bank-table tr:last-child {
  border-bottom: none;
}

.bank-table td {
  padding: 12px 8px;
  font-size: 15px;
}

.bank-table td:first-child {
  color: var(--text-medium);
  width: 40%;
}

.bank-table td:last-child {
  color: var(--text-dark);
  font-weight: 500;
}

.donation-note {
  font-size: 14px;
  color: var(--text-medium);
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid var(--accent-lime);
}

.donation-note a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.donation-card .btn {
  margin: 16px auto 0;
  display: block;
  width: 100%;
  max-width: 320px;
}

.legal-note {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  margin-top: 40px;
  font-style: italic;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  padding: 32px 0;
  background: linear-gradient(135deg, rgba(21,110,164,.08), rgba(200,216,53,.12));
  border-top: 1px solid var(--border);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-medium);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-item {
    height: 400px;
  }

  .gallery-image-wrapper {
    height: 260px;
  }

  .gallery-item:nth-child(4n+1) {
    grid-column: span 1;
    height: 400px;
  }

  .gallery-item:nth-child(4n+1) .gallery-image-wrapper {
    height: 260px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  body {
    padding-top: 250px;
  }

  .site-header {
    padding: 0;
    gap: 0;
  }

  .site-nav {
    padding: 12px 20px;
  }

  .logo {
    width: 100%;
    padding: 15px 30px;
  }

  .logo-img {
    height: 200px;
  }

  /* Mobile: Hide all nav links except active one */
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    display: none;
  }

  .site-nav a.active {
    display: block;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
  }

  .site-nav a.active::after {
    width: 100%;
    background: var(--accent-lime);
  }

  /* Hide hamburger menu completely */
  .mobile-menu-toggle {
    display: none;
  }

  .hero {
    padding: 40px 20px 80px;
    min-height: auto;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 36px;
  }

  .tagline {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    margin: 32px auto;
  }

  .hero-stat {
    padding: 16px 0;
    border-bottom: 1px solid rgba(21, 110, 164, 0.1);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .hero-stat-value {
    font-size: 36px;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 0;
  }

  .hero-shape {
    filter: blur(40px);
  }

  .shape-1 {
    width: 300px;
    height: 300px;
  }

  .shape-2 {
    width: 250px;
    height: 250px;
  }

  .shape-3 {
    width: 200px;
    height: 200px;
  }

  .container {
    padding: 0 20px;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .stat {
    padding: 24px 16px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-item img {
    height: 260px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .donation-card {
    padding: 28px 24px;
  }

  .bank-table td {
    padding: 10px 4px;
    font-size: 14px;
  }

  .bank-table td:first-child {
    width: 35%;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 230px;
  }

  .logo {
    width: 100%;
    padding: 10px 20px;
  }

  .logo-img {
    height: 180px;
  }

  .site-header {
    padding: 0;
    gap: 0;
  }

  .site-nav {
    padding: 10px 16px;
  }

  .hero {
    padding: 30px 16px 60px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-title {
    font-size: 32px;
  }

  .tagline {
    font-size: 15px;
  }

  .hero-stats {
    padding: 20px;
    margin: 28px auto;
    gap: 20px;
  }

  .hero-stat-value {
    font-size: 32px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
  }

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

  .card {
    padding: 24px;
  }

  .section h2 {
    font-size: 28px;
  }

  .section-intro {
    font-size: 16px;
  }

  .donation-card h3 {
    font-size: 24px;
  }

  .gallery-item {
    height: 380px;
  }

  .gallery-image-wrapper {
    height: 240px;
  }

  .gallery-caption {
    padding: 20px;
  }

  .gallery-caption h3 {
    font-size: 17px;
  }

  .gallery-caption p {
    font-size: 13px;
  }

  .gallery-badge {
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    font-size: 11px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gallery-item {
    opacity: 1;
    animation: none;
  }

  .hero-shape {
    animation: none;
  }

  .hero .btn.primary {
    animation: none;
  }

  .hero-content,
  .hero-badge,
  .hero-subtitle,
  .hero-title,
  .tagline,
  .hero-stats,
  .cta-row,
  .hero-trust-indicators {
    animation: none;
    opacity: 1;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .mobile-menu-toggle,
  .cta-row,
  .site-footer {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }
}
