/* ============================================================
   RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ADD THIS RULE - Restrict X-axis overflow */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #D9EDF5;
  color: #05111F;
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

/* ADD THIS - Prevent any element from causing overflow */
img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

/* ADD THIS - Ensure containers don't overflow */
.container,
.hero,
.section,
.footer-inner,
.header-inner {
  max-width: 100%;
  overflow-x: hidden;
}

/* ADD THIS - Hide any horizontal scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #D9EDF5;
}

::-webkit-scrollbar-thumb {
  background: #D18252;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b86d3f;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #D18252 #D9EDF5;
}

/* ============================================================
   HEADER - ENHANCED
   ============================================================ */

.site-header {
  background-color: rgba(217, 237, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(5, 17, 31, 0.04);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(209, 130, 82, 0.08);
  transition: all 0.3s ease;
}

/* Shrink header on scroll */
.site-header.scrolled {
  padding: 10px 0;
  background-color: rgba(217, 237, 245, 0.98);
  box-shadow: 0 4px 40px rgba(5, 17, 31, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo Area */
.logo-area {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
}

.logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-link:hover .logo-image {
  transform: scale(1.05) rotate(-2deg);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #05111F;
  transition: color 0.3s ease;
}

.logo-text span {
  color: #D18252;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #05111F;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  padding: 4px 0;
}

/* Underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: #D18252;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
  color: #D18252;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #D18252;
}

.nav-link.active::after {
  width: 100%;
}

/* Special Donate Button */
.nav-link.donate-link {
  background: #D18252;
  color: #F5E1C3;
  padding: 8px 24px;
  border-radius: 60px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(209, 130, 82, 0.2);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link.donate-link::after {
  display: none;
}

.nav-link.donate-link:hover {
  background: #b86d3f;
  color: #F5E1C3;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(209, 130, 82, 0.3);
}

/* Hamburger Menu (Mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 28px;
  height: 2.5px;
  background: #05111F;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  transform-origin: center;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HEADER - MOBILE RESPONSIVE (at the bottom of CSS file)
   ============================================================ */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }
  
  .main-nav {
    display: none !important;
    width: 100%;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0 20px;
    border-top: 1px solid rgba(5, 17, 31, 0.06);
    margin-top: 12px;
  }
  
  .main-nav.open {
    display: flex !important;
  }
  
  .nav-link {
    font-size: 1.05rem;
    padding: 10px 12px;
    width: 100%;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover {
    background: rgba(209, 130, 82, 0.06);
  }
  
  .nav-link.donate-link {
    background: #D18252;
    color: #F5E1C3;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
  }
  
  .nav-link.donate-link:hover {
    background: #b86d3f;
    transform: none;
  }
  
  .logo-image {
    width: 56px;
    height: 56px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .site-header {
    padding: 12px 0;
  }
  
  .site-header.scrolled {
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 48px;
    height: 48px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-link {
    gap: 10px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
  
  .nav-link.donate-link {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   SECTION SLIDE ANIMATIONS (Base)
   ============================================================ */
.section {
  padding: 80px 0 70px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1),
              transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Child elements animations */
.section .slide-child,
.section .two-col > *,
.section .mission-card,
.section .project-card,
.section .partners-grid,
.section .contact-wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section.in-view .slide-child,
.section.in-view .two-col > *,
.section.in-view .mission-card,
.section.in-view .project-card,
.section.in-view .partners-grid,
.section.in-view .contact-wrap {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.section.in-view .slide-child:nth-child(1),
.section.in-view .two-col > *:nth-child(1) {
  transition-delay: 0.1s;
}

.section.in-view .slide-child:nth-child(2),
.section.in-view .two-col > *:nth-child(2) {
  transition-delay: 0.2s;
}

.section.in-view .slide-child:nth-child(3),
.section.in-view .two-col > *:nth-child(3) {
  transition-delay: 0.3s;
}

.section.in-view .slide-child:nth-child(4),
.section.in-view .two-col > *:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, rgba(217, 237, 245, 0.85), rgba(245, 225, 195, 0.4)),
              url('../images/background1.avif');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 80px 60px;
  margin-top: 20px;
  box-shadow: 0 12px 40px rgba(5, 17, 31, 0.06);
  transition: background-position-y 0.1s ease-out;
  will-change: background-position-y;
  position: relative;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  color: #05111F;
  opacity: 0;
  animation: heroEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero h1 span {
  color: #D18252;
}

.hero .tagline {
  font-size: 1.3rem;
  margin: 20px 0 12px;
  max-width: 600px;
  color: #1e3a4b;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: heroEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.hero .tagline i {
  color: #D18252;
  margin-right: 8px;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 30px;
  color: #1e3a4b;
  opacity: 0;
  animation: heroEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.hero .btn-group {
  opacity: 0;
  animation: heroEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}


@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollIndicator {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.3;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
  background: transparent;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

/* Button ripple effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover::after {
  width: 300%;
  height: 300%;
}

.btn-solid {
  background: #D18252;
  color: #F5E1C3;
  border-color: #D18252;
  box-shadow: 0 8px 20px rgba(209, 130, 82, 0.25);
}

.btn-solid:hover {
  background: #b86d3f;
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(209, 130, 82, 0.35);
}

.btn-outline {
  background: transparent;
  color: #05111F;
  border-color: #05111F;
}

.btn-outline:hover {
  background: #05111F;
  color: #F5E1C3;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(5, 17, 31, 0.15);
}

/* ============================================================
   TWO COLUMN LAYOUT (About)
   ============================================================ */
.two-col {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.two-col > * {
  flex: 1 1 300px;
}

/* Spacing between the two about sections */
.about-intro {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid rgba(209, 130, 82, 0.15);
}

.about-situation {
  margin-top: 20px;
}

/* ============================================================
   ABOUT SECTION (Part 1 - Original)
   ============================================================ */
.img-placeholder {
  background: #F5E1C3;
  border-radius: 28px;
  padding: 40px 20px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #05111F;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(5, 17, 31, 0.04);
  border: 1px solid rgba(209, 130, 82, 0.1);
}

.img-placeholder i {
  font-size: 4rem;
  color: #D18252;
  margin-bottom: 8px;
}

.img-label {
  display: block;
  margin-top: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #05111F;
}

.section-title span {
  color: #D18252;
}

.text-block p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: #1e3a4b;
}

/* ============================================================
   ABOUT SECTION (Part 2 - 100% ACCURATE)
   ============================================================ */

/* About Image */
.about-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(5, 17, 31, 0.08);
  min-height: 320px;
  background: #F5E1C3;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image:hover .about-img {
  transform: scale(1.03);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(5, 17, 31, 0.7));
}

.stat-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #05111F;
}

/* Text Block Enhancements */
.text-block .subtitle {
  font-size: 1.1rem;
  color: #D18252;
  font-weight: 500;
  margin-top: -12px;
  margin-bottom: 20px;
}

/* Full statistics highlight */
.stat-highlight {
  background: rgba(245, 225, 195, 0.4);
  padding: 20px 24px;
  border-radius: 16px;
  margin: 20px 0;
  border-left: 4px solid #D18252;
}

.stat-highlight .stat-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #05111F;
  margin: 0;
}

.stat-highlight .stat-intro strong {
  color: #D18252;
}

.stat-fact {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e3a4b;
  padding: 12px 0 8px;
  margin: 0;
}

.stat-fact strong {
  color: #D18252;
}

/* Study Box - EXACT TEXT */
.study-box {
  background: #F5E1C3;
  padding: 20px 24px;
  border-radius: 16px;
  margin: 16px 0 20px;
  border: 1px solid rgba(209, 130, 82, 0.15);
}

.study-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #05111F;
  margin: 0;
}

.study-text strong {
  color: #D18252;
}

.study-citation {
  font-size: 0.9rem;
  color: #6b7a88;
  font-style: italic;
}

/* Health Impact - EXACT TEXT */
.health-impact {
  background: rgba(217, 237, 245, 0.5);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid #D18252;
  font-size: 1.05rem;
  margin: 16px 0 24px;
  color: #05111F;
  line-height: 1.7;
}

.health-impact strong {
  color: #D18252;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .about-intro {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  
  .about-image {
    min-height: 240px;
  }
  
  .about-img {
    min-height: 240px;
  }
  
  .stat-highlight .stat-intro {
    font-size: 0.95rem;
  }
  
  .stat-fact {
    font-size: 0.95rem;
  }
  
  .study-text {
    font-size: 0.95rem;
  }
  
  .health-impact {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stat-highlight {
    padding: 16px;
  }
  
  .study-box {
    padding: 16px;
  }
  
  .health-impact {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stat-highlight .stat-intro {
    font-size: 0.9rem;
  }
  
  .stat-fact {
    font-size: 0.9rem;
  }
  
  .study-text {
    font-size: 0.9rem;
  }
}
/* ============================================================
   PARTNER LINK
   ============================================================ */

.partner-link {
  color: #D18252;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
  border-bottom: 2px solid rgba(209, 130, 82, 0.2);
  padding-bottom: 1px;
}

.partner-link:hover {
  color: #b86d3f;
  border-bottom-color: #D18252;
}

.partner-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D18252;
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-link:hover::after {
  width: 100%;
}





/* ============================================================
   MISSION / OUR SOLUTION
   ============================================================ */

.mission-wrapper {
  background: linear-gradient(145deg, #F5E1C3, #e8d0b0);
  padding: 50px 44px;
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(5, 17, 31, 0.04);
  border: 1px solid rgba(209, 130, 82, 0.1);
  position: relative;
  overflow: hidden;
}

/* Decorative accent */
.mission-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: rgba(209, 130, 82, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.mission-wrapper::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(217, 237, 245, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.mission-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.mission-header .section-title {
  margin-bottom: 0;
}

/* MISSION STATEMENT - PRESERVED WORD FOR WORD */
.mission-statement {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 28px 32px;
  border-radius: 20px;
  margin-bottom: 36px;
  border-left: 4px solid #D18252;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(5, 17, 31, 0.04);
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #05111F;
  margin: 0;
}

.mission-text strong {
  color: #D18252;
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.mission-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 32px 28px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(5, 17, 31, 0.04);
}

.mission-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(5, 17, 31, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.mission-icon-wrapper {
  width: 72px;
  height: 72px;
  background: #D18252;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 20px rgba(209, 130, 82, 0.25);
}

.mission-card:hover .mission-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.mission-icon-wrapper i {
  font-size: 1.8rem;
  color: #F5E1C3;
}

.mission-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #05111F;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1e3a4b;
  margin: 0;
}

/* Mission CTA Buttons */
.mission-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.mission-cta .btn {
  min-width: 180px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .mission-wrapper {
    padding: 36px 24px;
  }
  
  .mission-statement {
    padding: 20px;
  }
  
  .mission-text {
    font-size: 1.05rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-cta .btn {
    min-width: 140px;
  }
  
  .mission-wrapper::before,
  .mission-wrapper::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .mission-wrapper {
    padding: 28px 16px;
  }
  
  .mission-statement {
    padding: 16px;
  }
  
  .mission-text {
    font-size: 0.95rem;
  }
  
  .mission-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .mission-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .mission-card {
    padding: 24px 20px;
  }
  
  .mission-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .mission-icon-wrapper i {
    font-size: 1.5rem;
  }
}

/* ============================================================
   PROJECT DETAILS - ENHANCED
   ============================================================ */

.project-wrapper {
  padding: 10px 0;
}

/* Project Header */
.project-header {
  text-align: center;
  margin-bottom: 50px;
}

.project-tag {
  display: inline-block;
  background: rgba(209, 130, 82, 0.1);
  color: #D18252;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 60px;
  margin-bottom: 12px;
}

.project-header .section-title {
  margin-bottom: 8px;
}

.project-subtitle {
  font-size: 1.1rem;
  color: #1e3a4b;
  opacity: 0.8;
  font-weight: 400;
}

/* Project Cards Grid */
.project-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Project Cards */
.project-card {
  background: #FFFFFF;
  padding: 36px 32px;
  border-radius: 28px;
  box-shadow: 0 8px 30px rgba(5, 17, 31, 0.04);
  border: 1px solid rgba(209, 130, 82, 0.08);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D18252, #F5E1C3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 17, 31, 0.1);
}

/* Full width cards on specific breakpoints */
.project-card.card-why,
.project-card.card-about {
  grid-column: span 1;
}

.project-card.card-danger,
.project-card.card-solution {
  grid-column: span 1;
}

/* Card Number */
.project-card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(209, 130, 82, 0.06);
  line-height: 1;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* Card Icon */
.project-card-icon {
  width: 56px;
  height: 56px;
  background: #F5E1C3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.4s ease;
  position: relative;
  z-index: 1;
}

.project-card:hover .project-card-icon {
  transform: scale(1.08) rotate(-4deg);
  background: #D18252;
}

.project-card-icon i {
  font-size: 1.6rem;
  color: #D18252;
  transition: color 0.4s ease;
}

.project-card:hover .project-card-icon i {
  color: #F5E1C3;
}

/* Card Title */
.project-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #05111F;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

/* Card Content */
.project-card-content {
  position: relative;
  z-index: 1;
}

.project-card-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #1e3a4b;
  margin-bottom: 14px;
}

.project-card-content p:last-child {
  margin-bottom: 0;
}

.project-card-content strong {
  color: #D18252;
  font-weight: 600;
}

/* Highlight Text */
.highlight-text {
  background: rgba(245, 225, 195, 0.25);
  padding: 16px 20px;
  border-radius: 14px;
  border-left: 4px solid #D18252;
  margin-top: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.highlight-text i {
  color: #D18252;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-text span {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1e3a4b;
}

/* Stat Highlight in Card */
.stat-highlight-card {
  background: rgba(217, 237, 245, 0.4);
  padding: 20px 24px;
  border-radius: 16px;
  margin: 16px 0;
  border: 1px solid rgba(209, 130, 82, 0.08);
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 4px 0;
}

.stat-row .stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #D18252;
  line-height: 1.2;
  min-width: 120px;
}

.stat-row .stat-label {
  font-size: 0.95rem;
  color: #1e3a4b;
}

/* Danger Card */
.card-danger {
  border-left: 4px solid #D18252;
  background: linear-gradient(135deg, #FFFFFF, rgba(217, 237, 245, 0.08));
}

.danger-text {
  background: rgba(209, 130, 82, 0.06);
  padding: 16px 20px;
  border-radius: 14px;
  border-left: 4px solid #D18252;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.danger-text i {
  color: #D18252;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.danger-text span {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1e3a4b;
}

/* Solution Card */
.card-solution {
  background: linear-gradient(135deg, #FFFFFF, rgba(245, 225, 195, 0.1));
  border: 2px solid rgba(209, 130, 82, 0.12);
}

.goal-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #05111F;
  padding: 8px 0;
  line-height: 1.8;
}

.goal-text strong {
  display: block;
  font-size: 1.6rem;
  color: #D18252;
  margin-top: 4px;
}

.goal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D18252;
  color: #F5E1C3;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(209, 130, 82, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(209, 130, 82, 0.4);
}

.goal-badge i {
  font-size: 1.1rem;
}

/* ============================================================
   PROJECT DETAILS - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .project-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .project-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .project-card {
    padding: 28px 24px;
  }
  
  .project-card-number {
    font-size: 2.8rem;
    top: 12px;
    right: 16px;
  }
  
  .project-card-title {
    font-size: 1.2rem;
  }
  
  .project-card-content p {
    font-size: 0.95rem;
  }
  
  .stat-row .stat-number {
    font-size: 1.4rem;
    min-width: 100px;
  }
  
  .stat-highlight-card {
    padding: 16px 20px;
  }
  
  .project-header .section-title {
    font-size: 1.8rem;
  }
  
  .project-subtitle {
    font-size: 1rem;
  }
  
  .goal-text {
    font-size: 1rem;
  }
  
  .goal-text strong {
    font-size: 1.4rem;
  }
  
  .goal-badge {
    font-size: 0.9rem;
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .project-card {
    padding: 20px 16px;
  }
  
  .project-card-number {
    font-size: 2.2rem;
    top: 10px;
    right: 12px;
  }
  
  .project-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .project-card-icon i {
    font-size: 1.3rem;
  }
  
  .project-card-title {
    font-size: 1.1rem;
  }
  
  .project-card-content p {
    font-size: 0.9rem;
  }
  
  .stat-row {
    flex-direction: column;
    gap: 2px;
    padding: 6px 0;
  }
  
  .stat-row .stat-number {
    font-size: 1.3rem;
    min-width: auto;
  }
  
  .stat-row .stat-label {
    font-size: 0.85rem;
  }
  
  .stat-highlight-card {
    padding: 14px 16px;
  }
  
  .highlight-text {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .highlight-text span {
    font-size: 0.9rem;
  }
  
  .danger-text {
    padding: 12px 16px;
  }
  
  .danger-text span {
    font-size: 0.9rem;
  }
  
  .goal-text {
    font-size: 0.95rem;
  }
  
  .goal-text strong {
    font-size: 1.2rem;
  }
  
  .goal-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}




/* ============================================================
   OUR SOLUTION
   ============================================================ */

.solution-wrapper {
  padding: 20px 0 10px;
}

/* Section Header */
.solution-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.solution-header .section-title {
  margin-bottom: 16px;
}

.solution-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1e3a4b;
  margin-bottom: 16px;
}

.solution-intro .partner-link {
  color: #D18252;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(209, 130, 82, 0.3);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.solution-intro .partner-link:hover {
  color: #b86d3f;
  border-bottom-color: #D18252;
}

.solution-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #05111F;
  margin-top: 8px;
}

/* Solution Grid - 3 columns */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

/* Solution Card */
.solution-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(5, 17, 31, 0.06);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(209, 130, 82, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(5, 17, 31, 0.12);
}

/* Solution Image */
.solution-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.solution-card:hover .solution-img {
  transform: scale(1.05);
}

.solution-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5, 17, 31, 0.1) 0%, rgba(5, 17, 31, 0.4) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  flex-direction: column;
}

.solution-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 20px rgba(5, 17, 31, 0.3);
  letter-spacing: -0.02em;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Inter', sans-serif;
}

/* Solution Content */
.solution-content {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #05111F;
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #D18252;
  margin-bottom: 12px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.solution-card:hover .solution-title::before {
  width: 60px;
}

.solution-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1e3a4b;
  margin-bottom: 12px;
}

.solution-description:last-child {
  margin-bottom: 0;
}

.solution-description strong {
  color: #D18252;
  font-weight: 600;
}

/* ============================================================
   SOLUTION - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .solution-image {
    height: 200px;
  }
  
  .solution-header .section-title {
    font-size: 1.8rem;
  }
  
  .solution-intro {
    font-size: 1rem;
    padding: 0 4px;
  }
  
  .solution-subtitle {
    font-size: 1.1rem;
  }
  
  .solution-content {
    padding: 22px 20px 26px;
  }
  
  .solution-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .solution-image {
    height: 180px;
  }
  
  .solution-title {
    font-size: 1.1rem;
  }
  
  .solution-description {
    font-size: 0.9rem;
  }
  
  .solution-content {
    padding: 18px 16px 22px;
  }
}




/* ============================================================
   PARTNERS - ENHANCED
   ============================================================ */

.partners-wrapper {
  padding: 10px 0;
}

/* Partners Header */
.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-tag {
  display: inline-block;
  background: rgba(209, 130, 82, 0.1);
  color: #D18252;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 60px;
  margin-bottom: 12px;
}

.partners-header .section-title {
  margin-bottom: 8px;
}

.partners-subtitle {
  font-size: 1.05rem;
  color: #1e3a4b;
  opacity: 0.8;
  font-weight: 400;
}

/* Slider Container */
.partners-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

/* Slider */
.partners-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  gap: 24px;
}

/* Partner Slide */
.partner-slide {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  padding: 4px;
}

/* Partner Card */
.partner-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
  border-radius: 28px;
  box-shadow: 0 8px 30px rgba(5, 17, 31, 0.04);
  border: 1px solid rgba(209, 130, 82, 0.08);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D18252, #F5E1C3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 17, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

/* Partner Icon */
.partner-icon-wrapper {
  width: 72px;
  height: 72px;
  background: #F5E1C3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.4s ease;
}

.partner-card:hover .partner-icon-wrapper {
  transform: scale(1.08) rotate(-4deg);
  background: #D18252;
}

.partner-icon-wrapper i {
  font-size: 2rem;
  color: #D18252;
  transition: color 0.4s ease;
}

.partner-card:hover .partner-icon-wrapper i {
  color: #F5E1C3;
}

/* Partner Info */
.partner-info {
  flex: 1;
}

.partner-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #05111F;
  margin-bottom: 4px;
}

.partner-role {
  font-size: 0.9rem;
  color: #D18252;
  font-weight: 500;
  margin-bottom: 8px;
}

.partner-tag-partner {
  display: inline-block;
  font-size: 0.8rem;
  color: #1e3a4b;
  opacity: 0.7;
  background: rgba(217, 237, 245, 0.4);
  padding: 4px 14px;
  border-radius: 60px;
  margin-top: 4px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D18252;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
  transition: gap 0.3s ease;
}

.partner-link:hover {
  gap: 12px;
}

.partner-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.partner-link:hover i {
  transform: translateX(4px);
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(209, 130, 82, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(5, 17, 31, 0.06);
}

.slider-btn:hover {
  background: #D18252;
  border-color: #D18252;
  box-shadow: 0 8px 24px rgba(209, 130, 82, 0.25);
}

.slider-btn:hover i {
  color: #F5E1C3;
}

.slider-btn i {
  color: #05111F;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.slider-btn.slider-prev {
  left: 0;
}

.slider-btn.slider-next {
  right: 0;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(209, 130, 82, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(209, 130, 82, 0.4);
}

.slider-dot.active {
  background: #D18252;
  width: 32px;
  border-radius: 6px;
}

/* ============================================================
   PARTNERS - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .partner-slide {
    min-width: calc(50% - 12px);
  }
  
  .partners-slider-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .partner-slide {
    min-width: calc(100% - 0px);
  }
  
  .partners-slider-container {
    padding: 0 36px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .slider-btn i {
    font-size: 1rem;
  }
  
  .partner-card {
    padding: 24px 20px;
  }
  
  .partner-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .partner-icon-wrapper i {
    font-size: 1.6rem;
  }
  
  .partner-name {
    font-size: 1.05rem;
  }
  
  .partners-header .section-title {
    font-size: 1.8rem;
  }
  
  .partners-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .partners-slider-container {
    padding: 0 28px;
  }
  
  .slider-btn {
    width: 30px;
    height: 30px;
  }
  
  .slider-btn i {
    font-size: 0.8rem;
  }
  
  .partner-card {
    padding: 20px 16px;
  }
  
  .partner-icon-wrapper {
    width: 52px;
    height: 52px;
  }
  
  .partner-icon-wrapper i {
    font-size: 1.3rem;
  }
  
  .partner-name {
    font-size: 0.95rem;
  }
  
  .partner-role {
    font-size: 0.8rem;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-dot.active {
    width: 24px;
  }
}





/* ============================================================
   DONATE SECTION
   ============================================================ */

.donate-wrapper {
  padding: 10px 0;
}

.donate-background {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(217, 237, 245, 0.95), rgba(245, 225, 195, 0.9)),
              url('../images/donate-bg.avif');
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 50px;
  box-shadow: 0 12px 40px rgba(5, 17, 31, 0.06);
}

.donate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 17, 31, 0.15), rgba(5, 17, 31, 0.05));
  pointer-events: none;
  z-index: 1;
}

.donate-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Donate Header */
.donate-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #D18252;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 60px;
  margin-bottom: 12px;
  border: 1px solid rgba(209, 130, 82, 0.15);
}

.donate-header .section-title {
  margin-bottom: 8px;
  color: #05111F;
}

/* Donate Message */
.donate-message {
  margin: 16px 0 28px;
}

.donate-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  color: #05111F;
  max-width: 700px;
}

.donate-text strong {
  color: #D18252;
  font-weight: 700;
}

/* Donate Options */
.donate-options {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(5, 17, 31, 0.06);
  margin-bottom: 24px;
}

.donate-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1e3a4b;
  margin-bottom: 20px;
}

.donate-info strong {
  color: #05111F;
  font-weight: 600;
}

.donate-email {
  color: #D18252;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(209, 130, 82, 0.25);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.donate-email:hover {
  color: #b86d3f;
  border-bottom-color: #D18252;
}

.donate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-donate {
  background: #D18252;
  color: #F5E1C3;
  border-color: #D18252;
  box-shadow: 0 8px 24px rgba(209, 130, 82, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-donate:hover {
  background: #b86d3f;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(209, 130, 82, 0.4);
}

.btn-donate i {
  font-size: 1.1rem;
}

.donate-or {
  color: #1e3a4b;
  font-weight: 500;
  opacity: 0.6;
  font-size: 0.9rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-contact i {
  font-size: 1rem;
}

/* Donate Impact */
.donate-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding-top: 8px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #1e3a4b;
}

.impact-item i {
  color: #D18252;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* ============================================================
   DONATE - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .donate-background {
    padding: 40px 28px;
    min-height: 400px;
  }
  
  .donate-text {
    font-size: 1.2rem;
  }
  
  .donate-options {
    padding: 24px 20px;
  }
  
  .donate-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .btn-donate,
  .btn-contact {
    justify-content: center;
    width: 100%;
  }
  
  .donate-or {
    text-align: center;
  }
  
  .donate-impact {
    gap: 16px;
    flex-direction: column;
  }
  
  .impact-item {
    font-size: 0.9rem;
  }
  
  .donate-header .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .donate-background {
    padding: 30px 16px;
    min-height: 340px;
  }
  
  .donate-text {
    font-size: 1.05rem;
  }
  
  .donate-options {
    padding: 18px 14px;
  }
  
  .donate-info p {
    font-size: 0.9rem;
  }
  
  .btn-donate {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
  
  .impact-item {
    font-size: 0.85rem;
  }
  
  .donate-tag {
    font-size: 0.7rem;
    padding: 4px 14px;
  }
}



/* ============================================================
   BLOG SECTION
   ============================================================ */

.blog-wrapper {
  padding: 10px 0;
}

/* Blog Header */
.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-tag {
  display: inline-block;
  background: rgba(209, 130, 82, 0.1);
  color: #D18252;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 60px;
  margin-bottom: 12px;
}

.blog-header .section-title {
  margin-bottom: 8px;
}

.blog-subtitle {
  font-size: 1.05rem;
  color: #1e3a4b;
  opacity: 0.8;
  font-weight: 400;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(5, 17, 31, 0.04);
  border: 1px solid rgba(209, 130, 82, 0.06);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:not(.coming-soon):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 17, 31, 0.08);
}

/* Blog Image */
.blog-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #F5E1C3;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:not(.coming-soon):hover .blog-img {
  transform: scale(1.05);
}

/* Blog Date Badge */
.blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(5, 17, 31, 0.08);
  min-width: 56px;
}

.blog-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #D18252;
  line-height: 1.1;
}

.blog-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1e3a4b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Content */
.blog-content {
  padding: 24px 24px 28px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-author,
.blog-read-time {
  font-size: 0.8rem;
  color: #6b7a88;
}

.blog-author i,
.blog-read-time i {
  margin-right: 4px;
  color: #D18252;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-title a {
  color: #05111F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #D18252;
}

.blog-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1e3a4b;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D18252;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 14px;
}

.blog-read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Coming Soon Cards */
.blog-card.coming-soon {
  background: rgba(255, 255, 255, 0.4);
  border: 2px dashed rgba(209, 130, 82, 0.2);
  cursor: default;
}

.blog-coming-soon-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px;
  color: #1e3a4b;
}

.blog-coming-soon-badge i {
  font-size: 2.5rem;
  color: #D18252;
  opacity: 0.3;
  margin-bottom: 12px;
}

.blog-coming-soon-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7a88;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card.coming-soon .blog-title {
  font-size: 1rem;
  color: #6b7a88;
}

.blog-card.coming-soon .blog-excerpt {
  color: #6b7a88;
  -webkit-line-clamp: 2;
}

/* ============================================================
   BLOG - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 20px 20px 24px;
  }
  
  .blog-title {
    font-size: 1.05rem;
  }
  
  .blog-header .section-title {
    font-size: 1.8rem;
  }
  
  .blog-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .blog-image {
    height: 180px;
  }
  
  .blog-date {
    padding: 6px 12px;
    min-width: 48px;
  }
  
  .blog-day {
    font-size: 1.2rem;
  }
  
  .blog-month {
    font-size: 0.65rem;
  }
  
  .blog-content {
    padding: 16px 16px 20px;
  }
  
  .blog-title {
    font-size: 0.95rem;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
  }
  
  .blog-meta {
    font-size: 0.75rem;
    gap: 12px;
  }
}




/* ============================================================
   CONTACT - ENHANCED
   ============================================================ */

.contact-wrapper {
  padding: 10px 0;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-tag {
  display: inline-block;
  background: rgba(209, 130, 82, 0.1);
  color: #D18252;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 60px;
  margin-bottom: 12px;
}

.contact-header .section-title {
  margin-bottom: 8px;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: #1e3a4b;
  opacity: 0.8;
  font-weight: 400;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(209, 130, 82, 0.06);
  box-shadow: 0 4px 20px rgba(5, 17, 31, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(5, 17, 31, 0.06);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: #F5E1C3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: #D18252;
}

.contact-card-icon i {
  font-size: 1.3rem;
  color: #D18252;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
  color: #F5E1C3;
}

.contact-card-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7a88;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: #05111F;
  margin: 0;
  line-height: 1.4;
}

.contact-link {
  color: #05111F;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #D18252;
}

/* Contact Social */
.contact-social {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(209, 130, 82, 0.06);
}

.contact-social h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7a88;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: #F5E1C3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05111F;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #D18252;
  color: #F5E1C3;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(209, 130, 82, 0.25);
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  padding: 40px 36px;
  border-radius: 28px;
  border: 1px solid rgba(209, 130, 82, 0.08);
  box-shadow: 0 8px 30px rgba(5, 17, 31, 0.02);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #05111F;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #D18252;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(5, 17, 31, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: #05111F;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab5c0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D18252;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(209, 130, 82, 0.1);
}

.form-group textarea {
  border-radius: 12px;
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 60px;
  background: #D18252;
  color: #F5E1C3;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(209, 130, 82, 0.25);
}

.btn-submit:hover {
  background: #b86d3f;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(209, 130, 82, 0.35);
}

.btn-submit i {
  font-size: 1.1rem;
}

/* Success/Error Messages */
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 16px;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #1a8a4a;
}

.form-message.error {
  display: block;
  background: rgba(209, 130, 82, 0.1);
  border: 1px solid rgba(209, 130, 82, 0.3);
  color: #b86d3f;
}

.form-message i {
  margin-right: 8px;
}

/* ============================================================
   CONTACT - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .contact-card {
    flex: 1 1 200px;
  }
  
  .contact-social {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  
  .contact-card {
    flex: 1 1 auto;
  }
  
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  
  .contact-header .section-title {
    font-size: 1.8rem;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 20px 16px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  
  .btn-submit {
    font-size: 0.95rem;
    padding: 14px 24px;
  }
  
  .contact-card {
    padding: 18px 20px;
  }
  
  .contact-card-icon {
    width: 42px;
    height: 42px;
  }
  
  .contact-card-icon i {
    font-size: 1.1rem;
  }
}

/* ============================================================
   FOOTER - ENHANCED
   ============================================================ */

.site-footer {
  background: #05111F;
  color: #D9EDF5;
  padding: 60px 0 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Decorative accent */
.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(209, 130, 82, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

/* Footer Inner */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(217, 237, 245, 0.08);
  position: relative;
  z-index: 1;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer-brand {
  gap: 6px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-logo-image {
  width: 72px;  /* Increased from 56px */
  height: 72px; /* Increased from 56px */
  object-fit: contain;
  border-radius: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-logo-link:hover .footer-logo-image {
  transform: scale(1.08) rotate(-2deg);
}

.footer-col .logo-text {
  color: #F5E1C3;
  font-size: 1.4rem; /* Increased from 1.2rem */
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-col .logo-text span {
  color: #D18252;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #D9EDF5;
  opacity: 0.8;
  margin: 2px 0 4px;
}

.footer-description {
  font-size: 0.85rem;
  color: #D9EDF5;
  opacity: 0.6;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

/* Quick Links */
.footer-links h4,
.footer-connect h4 {
  color: #F5E1C3;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #D9EDF5;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-block;
  position: relative;
}

.footer-menu a::before {
  content: '›';
  color: #D18252;
  margin-right: 6px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  opacity: 1;
  color: #D18252;
  transform: translateX(4px);
}

.footer-menu a:hover::before {
  opacity: 1;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(217, 237, 245, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D9EDF5;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  border: 1px solid rgba(217, 237, 245, 0.06);
}

.footer-social a:hover {
  background: #D18252;
  color: #F5E1C3;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(209, 130, 82, 0.3);
  border-color: #D18252;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.85rem;
  color: #D9EDF5;
  opacity: 0.6;
  margin: 0 0 8px;
}

.footer-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(217, 237, 245, 0.15);
  border-radius: 60px;
  background: rgba(217, 237, 245, 0.06);
  color: #D9EDF5;
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  min-width: 0;
}

.footer-form input::placeholder {
  color: rgba(217, 237, 245, 0.3);
}

.footer-form input:focus {
  outline: none;
  border-color: #D18252;
  background: rgba(217, 237, 245, 0.08);
}

.footer-form button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #D18252;
  color: #F5E1C3;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-form button:hover {
  background: #b86d3f;
  transform: translateX(2px);
  box-shadow: 0 4px 16px rgba(209, 130, 82, 0.3);
}

.footer-form button i {
  font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(217, 237, 245, 0.06);
  font-size: 0.85rem;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
}

.footer-brand-name {
  color: #D18252;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-bottom-links a {
  color: #D9EDF5;
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: #D18252;
}

.footer-divider {
  color: rgba(217, 237, 245, 0.2);
}

/* ============================================================
   FOOTER - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-logo-image {
    width: 60px;
    height: 60px;
  }
  
  .footer-col .logo-text {
    font-size: 1.2rem;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .footer-bottom-links {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-logo-image {
    width: 52px;
    height: 52px;
  }
  
  .footer-col .logo-text {
    font-size: 1.1rem;
  }
  
  .footer-form {
    flex-direction: row;
  }
  
  .footer-form input {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .footer-form button {
    width: 40px;
    height: 40px;
  }
  
  .footer-form button i {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    font-size: 0.75rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.75rem;
  }
}

/* ============================================================
   WHATSAPP CHAT BUTTON (Footer)
   ============================================================ */
.whatsapp-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.whatsapp-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-chat i {
  font-size: 2.2rem;
  color: white;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-chat.pulse {
  animation: pulse-whatsapp 2s infinite;
}

@media (max-width: 640px) {
  .whatsapp-chat {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  
  .whatsapp-chat i {
    font-size: 1.8rem;
  }
}



/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(5, 17, 31, 0.05);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero::after {
    display: none;
  }

  .section {
    padding: 50px 0;
  }

  .two-col {
    gap: 30px;
  }

  .section.in-view .slide-child:nth-child(2),
  .section.in-view .two-col > *:nth-child(2) {
    transition-delay: 0.15s;
  }

  .section.in-view .slide-child:nth-child(3),
  .section.in-view .two-col > *:nth-child(3) {
    transition-delay: 0.25s;
  }
}

@media (max-width: 640px) {
  .whatsapp-chat {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-chat i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
  }
}




/* ============================================================
   SECTION SCROLL OFFSET (with CSS Variable)
   ============================================================ */

:root {
  --header-height: 90px; /* Adjust based on your header height */
}

.section {
  scroll-margin-top: var(--header-height);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  :root {
    --header-height: 80px; /* Smaller header on mobile */
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px; /* Even smaller on very small screens */
  }
}


