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

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}

/* ===== Top Bar (logo + social + helpline) ===== */
.top-bar {
  background: #fff;
  border-bottom: 2px solid #e63946;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar .logo-link img {
  height: 55px;
  width: auto;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #555;
  font-size: 15px;
  transition:
    background 0.3s,
    color 0.3s;
}

.social-icons a:hover {
  background: #e63946;
  color: #fff;
}

.helpline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e63946;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.helpline svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0654c4 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* ===== Donation Section ===== */
.donation-section {
  padding: 50px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../images/landing-page-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donation-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 10px;
}

.donate-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 30px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.donate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.donate-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.donate-card p {
  color: #f1f1f1;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.donate-card .qr-img {
  width: 200px;
  height: 200px;
  margin: 10px auto;
  border-radius: 8px;
}

.btn-donate-main {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-donate-main:hover {
  background: #c5303c;
  transform: scale(1.03);
  color: #fff;
}

.btn-donate-secondary {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
  margin: 5px;
}

.btn-donate-secondary:hover {
  background: #0654c4;
  color: #fff;
}

.partner-info {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
}

/* ===== Impact Section ===== */
.impact-section {
  padding: 60px 20px;
  background: #fff;
}

.impact-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.impact-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 30px;
}

.impact-section > .container > p {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 30px;
}

.impact-list {
  list-style: none;
  padding: 0;
  counter-reset: impact-counter;
}

.impact-list li {
  counter-increment: impact-counter;
  padding: 16px 20px 16px 60px;
  position: relative;
  font-size: 1rem;
  color: #444;
  border-bottom: 1px solid #eee;
}

.impact-list li:last-child {
  border-bottom: none;
}

.impact-list li::before {
  content: counter(impact-counter);
  position: absolute;
  left: 10px;
  top: 14px;
  width: 36px;
  height: 36px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== Key Message Section ===== */
.key-message-section {
  padding: 50px 20px;
  background: #f0f4ff;
  text-align: center;
}

.key-message-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.key-message-section p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.key-message-section p strong {
  color: #0d6efd;
}

.key-message-section .cost-img {
  max-width: 500px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ===== Tax Section ===== */
.tax-section {
  padding: 30px 20px;
  background: #fff3cd;
  text-align: center;
}

.tax-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #856404;
  font-weight: 600;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.contact-section p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 8px;
}

.contact-section a {
  color: #0d6efd;
  font-weight: 600;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.site-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 50px 20px 20px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-logo-area {
  flex: 1;
  min-width: 250px;
}

.footer-logo-area img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #333;
  color: #ccc;
  font-size: 16px;
  transition:
    background 0.3s,
    color 0.3s;
}

.footer-social a:hover {
  background: #e63946;
  color: #fff;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #aaa;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-ribbon {
  flex: 0 0 auto;
  text-align: center;
}

.footer-ribbon img {
  height: 80px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

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

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar-right {
    justify-content: center;
  }

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

  .footer-social {
    justify-content: center;
  }

  .impact-section h2 {
    font-size: 1.5rem;
  }

  .key-message-section .cost-img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .helpline {
    font-size: 12px;
    padding: 5px 10px;
  }

  .top-bar .logo-link img {
    height: 40px;
  }
}
