:root {
    --primary: #0c0788;
    --primary-dark: #120770;
    --cream: #fefad3;
    --peach: #fdd2b9;
    --dark: #211c1b;
    --soft-shadow: 0 30px 50px -20px rgba(12, 7, 136, 0.25);
    --card-radius: 2.5rem;
    --text-soft: #b9b7d4;
    --text-lighter: #cfcde8;
    --social-hover: #ffffff;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.navbar-header {
  padding-top: 6px;
  padding-bottom: 6px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(18, 7, 112, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar-logo {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.navbar-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}

.navbar-logo-text strong {
  color: #120770;
  font-size: 22px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 rgba(253, 210, 185, 0.5);
  white-space: nowrap;
  transition: font-size 0.15s ease;
}

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}

.navbar-contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}

.navbar-contact-box:hover {
  transform: translateY(-2px);
}

.navbar-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fefad3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c0788;
  font-size: 24px;
  box-shadow: 0 6px 12px rgba(12, 7, 136, 0.08), inset 0 -2px 0 #fdd2b9;
  border: 1px solid #fdd2b9;
  transition: background 0.2s, color 0.2s;
}

.navbar-contact-box:hover .navbar-contact-icon {
  background: #fdd2b9;
  color: #120770;
}

.navbar-contact-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #120770;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.navbar-contact-box p {
  color: #211c1b;
  opacity: 0.8;
  font-size: 15px;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.3;
}

.navbar-contact-box p a {
  color: inherit;
  text-decoration: none;
}

.navbar-donate-btn {
  width: 170px;
  height: 54px;
  background: #0c0788;
  color: #fefad3;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 18px -6px rgba(12, 7, 136, 0.35);
  border: 1px solid #fdd2b9;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.navbar-donate-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 210, 185, 0.3), transparent);
  transition: left 0.5s ease;
}

.navbar-donate-btn:hover {
  background: #120770;
  transform: translateY(-2px);
  box-shadow: 0 16px 22px -8px rgba(12, 7, 136, 0.5);
  border-color: #fefad3;
}

.navbar-donate-btn:hover::after {
  left: 100%;
}

@media screen and (max-width: 768px) {
  .navbar-container {
    padding: 0 8px;
  }

  .navbar-header {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .navbar-content {
    flex-wrap: nowrap;
  }

  .navbar-logo {
    min-width: 0;
    overflow: hidden;
    gap: 6px;
  }

  .navbar-logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .navbar-logo-image {
    width: 64px;
    height: 64px;
  }

  .navbar-logo-text strong {
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
  }

  .navbar-contact-box {
    display: none;
  }

  .navbar-contact {
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  .navbar-donate-btn {
    width: 120px;
    height: 46px;
    font-size: 12px;
    padding: 0 4px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 420px) {
  .navbar-logo-image {
    width: 54px;
    height: 54px;
  }

  .navbar-logo-text strong {
    font-size: 16px;
  }

  .navbar-donate-btn {
    width: 110px;
    height: 42px;
    font-size: 12px;
  }
}

@media screen and (max-width: 340px) {
  .navbar-logo-image {
    width: 48px;
    height: 48px;
  }

  .navbar-donate-btn {
    width: 100px;
    height: 38px;
    font-size: 10px;
  }
}

.footer {
    position: relative;
    color: var(--text-soft);
    background-color: transparent;
    background-image: url('../../images/map-dots-bg.jpg');
    background-repeat: repeat;
    background-position: center;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 30, 0.8);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1.3fr 1.3fr 1.2fr;
    gap: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--cream);
    box-shadow: 0 12px 24px -8px rgba(12, 7, 136, 0.7);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-logo-title {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.footer-about-text {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-lighter);
    max-width: 320px;
    margin-bottom: 1.6rem;
}

.footer-headline {
    color: var(--peach);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.footer-heading-line {
    width: 2.6rem;
    height: 2px;
    background: linear-gradient(90deg, var(--peach), var(--primary));
    margin-bottom: 2rem;
    border-radius: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-item i {
    width: 1.2rem;
    color: var(--peach);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-lighter);
}

.footer-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-phone-numbers p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--text-lighter);
}

.footer-follow-text {
    max-width: 280px;
    margin-bottom: 1.6rem;
    color: var(--text-lighter);
    font-size: 0.96rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.footer-social-link {
    color: var(--peach);
    font-size: 1.5rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(253, 210, 185, 0.2);
}

.footer-social-link:hover {
    border-color: var(--peach);
    transform: translateY(-4px);
}

.footer-donate-wrapper {
    margin-top: 0.5rem;
}

.footer-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.85rem 2rem;
    background: var(--peach);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 3rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 22px -10px rgba(253, 210, 185, 0.5);
    border: 1px solid transparent;
    width: fit-content;
}

.footer-donate-btn:hover {
    background: #ffffff;
    color: var(--primary);
    transform: scale(1.02) translateY(-3px);
    border-color: var(--peach);
}

.footer-copyright {
    position: relative;
    z-index: 3;
    background: #0f0d24;
    border-top: 1px solid rgba(253, 210, 185, 0.12);
}

.footer-copyright-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.footer-copyright-text {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.footer-copyright-brand {
    color: var(--peach);
    font-weight: 500;
}

.footer-designer-credit {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.footer-designer-link {
    color: var(--peach);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.footer-designer-link:hover {
    color: #ffffff;
}

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2.5rem;
        padding: 3rem 2rem 3.5rem;
    }

    .footer-copyright-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem 3rem;
    }

    .footer-logo {
        margin-bottom: 1.8rem;
    }

    .footer-about-text {
        max-width: 100%;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-donate-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-copyright-text {
        font-size: 0.85rem;
    }

    .footer-copyright-container {
        padding: 1.5rem 1.2rem;
    }

    .footer-copyright-divider {
      display: none;
    }
}