:root {
  --green: #0f6b3a;
  --green-dark: #073f25;
  --green-soft: #e8f5ee;
  --gold: #d9a441;
  --cream: #fffaf0;
  --text: #263238;
  --muted: #667085;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(7, 63, 37, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f8f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.top-info,
.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 107, 58, 0.12);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 240px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 30% 30%, #4caf75, var(--green-dark));
  box-shadow: 0 12px 28px rgba(15, 107, 58, 0.24);
  font-weight: 800;
  font-size: 22px;
}

.brand h1 {
  font-size: 18px;
  line-height: 1.15;
  color: var(--green-dark);
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.6px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 22px;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  color: #1d3b2b;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--gold);
  color: #241600;
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    linear-gradient(120deg, rgba(7, 63, 37, 0.92), rgba(15, 107, 58, 0.8)),
    url('https://web.archive.org/web/20260125115635im_/https%3A//www.muradiyevakfi.com/wp-content/uploads/2022/07/BANNER11.png') center/cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: clamp(35px, 5vw, 64px);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #221600;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 23px;
  margin-bottom: 16px;
}

.quick-list {
  display: grid;
  gap: 12px;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 13px;
}

.quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(217, 164, 65, 0.9);
  color: #211300;
  display: grid;
  place-items: center;
  font-weight: 900;
}

section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 38px;
}

.section-title span {
  display: inline-block;
  color: var(--green);
  background: var(--green-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-image {
  min-height: 390px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(15, 107, 58, 0.05), rgba(217, 164, 65, 0.3)),
    url('https://web.archive.org/web/20260125115635im_/https%3A//www.muradiyevakfi.com/wp-content/uploads/2022/07/BANNER6.png') center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: "1978";
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 42px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 18px;
}

.about-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-content h3 {
  font-size: 30px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.about-content p {
  color: #4b5563;
  margin-bottom: 14px;
}

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

.stat {
  background: var(--green-soft);
  padding: 18px;
  border-radius: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--green-dark);
  font-size: 25px;
}

.stat small {
  color: var(--muted);
  font-weight: 700;
}

.institutions {
  background: var(--cream);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 107, 58, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 107, 58, 0.17);
}

.card-media {
  height: 190px;
  display: block;
  color: var(--white);
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(140deg, var(--green), var(--green-dark));
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media .fallback-letter {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--green), var(--green-dark));
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  color: var(--green-dark);
  font-size: 21px;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.card-body a {
  color: var(--green);
  font-weight: 800;
}

.archive-banners {
  background: #111;
  padding: 0;
}

.banner-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 26px 0;
}

.archive-banner {
  min-height: 210px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.banner-one {
  background-image: url('https://web.archive.org/web/20260125115635im_/https%3A//www.muradiyevakfi.com/wp-content/uploads/2022/07/BANNER6.png');
}

.banner-two {
  background-image: url('https://web.archive.org/web/20260125115635im_/https%3A//www.muradiyevakfi.com/wp-content/uploads/2022/07/BANNER11.png');
}

.archive-banner a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--gold);
  color: #211300;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.detail-section {
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.detail-box {
  background: #f7f8f5;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(15, 107, 58, 0.1);
}

.detail-box h3 {
  color: var(--green-dark);
  font-size: 24px;
  margin-bottom: 12px;
}

.detail-box p,
.detail-box li {
  color: #4b5563;
  margin-bottom: 9px;
}

.detail-box ul {
  padding-left: 20px;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.bank-card {
  background: var(--white);
  border: 1px solid rgba(15, 107, 58, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.bank-card strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 7px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.activity {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(15, 107, 58, 0.1);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}

.activity b {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  margin-bottom: 8px;
}

.activity p {
  color: var(--muted);
  font-size: 14px;
}

.donation {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 58px 0;
}

.donation-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.donation h2 {
  font-size: clamp(27px, 4vw, 42px);
  margin-bottom: 10px;
}

.donation p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 700px;
}

.contact {
  background: #f7f8f5;
}

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

.contact-card,
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card h3,
.form-card h3 {
  color: var(--green-dark);
  font-size: 24px;
  margin-bottom: 18px;
}

.contact-row {
  padding: 14px 0;
  border-bottom: 1px solid #eef0ed;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-row span {
  color: var(--muted);
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid #d8ded9;
  border-radius: 14px;
  padding: 13px 14px;
  margin-bottom: 12px;
  font: inherit;
  outline: none;
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  background: #062b1a;
  color: rgba(255, 255, 255, 0.84);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 30;
}

@media (max-width: 920px) {
  .nav-inner,
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    align-items: flex-start;
    padding: 16px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 22px;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 4px;
    gap: 12px;
  }

  .nav-menu.is-open {
    display: flex;
  }

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

  .activities-grid,
  .banner-stack,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar-inner,
  .top-info,
  .top-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    padding: 48px 0;
  }

  .cards,
  .activities-grid,
  .stats,
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-card,
  .form-card {
    padding: 22px;
  }
}
