:root{
  --bg: #f8fafc;          /* Light professional background */
  --card: #ffffff;        /* card background */
  --soft: #e0f2fe;        /* Soft light blue section background */
  --text: #334155;        /* Slate 700 */
  --muted: #64748b;       /* Slate 500 */
  --line: #cbd5e1;        /* Slate 300 */

  --brand: #0284c7;       /* Professional Blue (Sky 600) */
  --brand2: #0369a1;      /* Darker Blue (Sky 700) */
  --heading-color: #0c4a6e; /* Deep Blue for Headings */
  --white: #ffffff;
  --whatsapp: #25D366;    /* WhatsApp Green */
}

*{ box-sizing: border-box; }
html,body{
  margin:0;
  padding:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1100px, 92%); margin: 0 auto; }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 74, 110, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.brand__logo{
  /* Updated for Image Logo */
  width: auto;
  height: 50px; /* Adjust as needed */
  display: flex;
  align-items: center;
}

.brand__logo img {
  height: 100%;
  width: auto;
  display: block;
}

.brand__name{ font-weight: 800; font-size: 18px; line-height: 1.1; color: #ffffff; }
.brand__tagline{ font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

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

.nav__link{
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  border: 1px solid transparent;
  font-weight: 500;
}

.nav__link:hover{
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
}

.nav__link.active{
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
}

.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,.05);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  opacity: .9;
}

.hero{
  padding: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 10;
  padding-top: 40px;
  padding-bottom: 80px;
}

.badge{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,132,199,.25);
  background: rgba(2,132,199,.08);
  color: var(--brand2);
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 600;
}

h1{
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 10px 0;
  line-height: 1.15;
  color: var(--heading-color);
  font-weight: 800;
}

.lead{
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor:pointer;
  transition: all 0.2s ease;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2,132,199,0.25);
}

.btn--primary:hover{
  opacity: .95;
  box-shadow: 0 6px 20px rgba(2,132,199,0.35);
}

.btn--outline{
  border-color: var(--line);
  background: var(--white);
  color: var(--text);
}

.btn--outline:hover{
  background: var(--soft);
  border-color: var(--brand);
}

.btn--small{
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

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

.stat{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.stat__num{ font-weight: 900; font-size: 24px; color: var(--brand); }
.stat__label{ color: var(--muted); font-size: 13px; margin-top: 4px; font-weight: 600; }

.section{
  padding: 60px 0;
}

.section--soft{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head{
  margin-bottom: 24px;
}

.section__head h2{
  margin: 0 0 8px 0;
  font-size: 32px;
  color: var(--heading-color);
  font-weight: 800;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.grid{
  display:grid;
  gap: 20px;
}

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

.card{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: rgba(2,132,199,0.2);
}

.card h3 {
  color: var(--heading-color);
  margin-top: 0;
}

.hero__card .card{
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
}

.list{
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.divider{
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.cta{
  margin-top: 24px;
  border: 1px solid rgba(2,132,199,.25);
  background: linear-gradient(to right, rgba(2,132,199,.05), rgba(2,132,199,.15));
  border-radius: 20px;
  padding: 30px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
}

.cta h3 {
  color: var(--heading-color);
  margin-top: 0;
}

.page-hero{
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--soft), var(--bg));
}

.page-hero h1{
  font-size: 40px;
  margin: 0 0 8px 0;
  color: var(--heading-color);
}

.form{
  display:grid;
  gap: 16px;
}

.form label{
  display:grid;
  gap: 8px;
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 600;
}

input, textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  outline: none;
  font-size: 15px;
  transition: border-color 0.2s;
}

input:focus, textarea:focus{
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.1);
}

.info{
  display:grid;
  gap: 14px;
  color: var(--text);
  line-height: 1.6;
}

.footer{
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer__brand{
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.footer__title{
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.footer__link{
  display:block;
  color: var(--muted);
  margin: 8px 0;
  transition: color 0.2s;
}

.footer__link:hover{
  color: var(--brand);
}

.footer__bottom{
  border-top: 1px solid var(--line);
  padding-top: 16px;
  text-align: center;
}

/* Added by Jules */
.card__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
  object-fit: cover;
  height: 200px;
}

.hero__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
  display: block;
  object-fit: cover;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Slideshow */
.slideshow {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  backdrop-filter: none;
}

/* Updated hero text for dark overlay */
.hero__content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  color: var(--heading-color);
  text-shadow: none;
}

.hero .lead {
  color: var(--text);
  text-shadow: none;
  font-weight: 500;
}

.hero .badge {
  /* Default badge styles apply */
}

/* Sticky Donate Button */
.sticky-donate {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(2,132,199,0.4);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-donate:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(2,132,199,0.5);
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.sticky-whatsapp img {
  width: 36px;
  height: 36px;
  display: block;
}

/* Responsive */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__content{ margin-top: 0; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .cta{ flex-direction: column; align-items: flex-start; }
  .stats{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:flex; }
  .nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display:none;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: var(--heading-color);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
  }
  .nav.open{ display:flex; }
  .nav__link{ width: 100%; text-align: center; }
  .sticky-donate {
    bottom: 16px;
    left: 16px;
    padding: 10px 20px;
    font-size: 13px;
  }
  .sticky-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .sticky-whatsapp img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  .slideshow {
    height: 250px;
  }
}
