/* ==============================
   ROOT
================================ */

:root {
  --primary: #ec7c17;
  --primary-dark: #c85e00;
  --secondary: #683319;
  --dark: #26150c;
  --green: #4f702e;

  --cream: #fff8ec;
  --light: #fffdf8;
  --white: #ffffff;

  --text: #503d32;
  --muted: #806e62;

  --border: #eadfce;

  --shadow:
    0 20px 50px
    rgba(67, 37, 16, 0.1);

  --radius: 24px;
}


/* ==============================
   RESET
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Noto Sans Devanagari",
    "Poppins",
    sans-serif;

  background: var(--light);

  color: var(--text);

  line-height: 1.7;

  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 91%);
  margin: auto;
}


/* ==============================
   HEADER
================================ */

.header {
  position: fixed;

  width: 100%;

  top: 0;
  left: 0;

  z-index: 1000;

  background:
    rgba(255, 253, 248, 0.96);

  backdrop-filter: blur(16px);

  border-bottom:
    1px solid
    rgba(100, 60, 30, 0.08);

  transition: 0.25s;
}

.nav {
  min-height: 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.brand {
  display: flex;

  align-items: center;

  gap: 11px;
}


/* ==============================
   LOGO
================================ */

.logo-circle {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;
}

.logo-image {
  background: #ffffff;

  border:
    2px solid
    rgba(236, 124, 23, 0.18);

  padding: 3px;

  overflow: hidden;

  box-shadow:
    0 8px 22px
    rgba(105, 55, 20, 0.1);
}

.logo-image img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  border-radius: 50%;
}

.brand-text {
  display: flex;

  flex-direction: column;

  line-height: 1.2;
}

.brand-text strong {
  color: var(--secondary);

  font-size: 16px;
}

.brand-text span {
  font-size: 12px;

  color: var(--primary-dark);

  margin-top: 4px;
}


/* ==============================
   NAVIGATION
================================ */

.nav-links {
  display: flex;

  align-items: center;

  gap: 27px;
}

.nav-links > a {
  font-size: 14px;

  font-weight: 600;

  transition: 0.25s;
}

.nav-links > a:hover {
  color: var(--primary);
}

.nav-donate {
  padding: 12px 19px;

  border-radius: 50px;

  background: var(--primary);

  color: white !important;

  box-shadow:
    0 10px 25px
    rgba(237, 123, 19, 0.25);
}

.menu-btn {
  display: none;

  width: 42px;

  height: 42px;

  border: 0;

  background: transparent;
}

.menu-btn span {
  width: 25px;

  height: 2px;

  display: block;

  margin: 5px auto;

  background: var(--secondary);

  transition: 0.25s;
}


/* ==============================
   HERO
================================ */

.hero {
  position: relative;

  min-height: 730px;

  display: flex;

  align-items: center;

  padding-top: 120px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(255, 182, 76, 0.25),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #fff8e9,
      #fffdf9 45%,
      #fef2dc
    );
}

.hero::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -120px;

  top: 100px;

  border-radius: 50%;

  border:
    70px solid
    rgba(237, 123, 19, 0.05);
}

.hero-content {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.25fr 0.75fr;

  gap: 70px;

  align-items: center;
}

.eyebrow {
  display: inline-block;

  padding: 8px 14px;

  border-radius: 50px;

  color: var(--green);

  background:
    rgba(83, 117, 41, 0.11);

  font-size: 14px;

  font-weight: 700;

  margin-bottom: 20px;
}

.hero h1 {
  font-size:
    clamp(40px, 5vw, 67px);

  line-height: 1.17;

  color: var(--dark);

  margin-bottom: 20px;

  letter-spacing: -1.8px;
}

.hero h1 span,
.section-heading h2 span,
.about-content h2 span {
  color: var(--primary);
}

.hero-text > p {
  max-width: 660px;

  font-size: 18px;

  color: var(--muted);

  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 39px;
}


/* ==============================
   BUTTONS
================================ */

.btn {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  min-height: 52px;

  padding: 0 23px;

  border-radius: 50px;

  border: 0;

  font-weight: 700;

  transition: 0.25s;
}

.btn:hover {
  transform:
    translateY(-2px);
}

.btn-primary {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--primary),
      #f89a2d
    );

  box-shadow:
    0 12px 25px
    rgba(237, 123, 19, 0.26);
}

.btn-light {
  color: var(--secondary);

  background: var(--white);

  border:
    1px solid
    var(--border);
}

.btn-white {
  color: var(--primary-dark);

  background: white;

  min-width: 180px;
}

.btn-whatsapp {
  background: #25d366;

  color: white;

  margin-top: 15px;
}

.full-btn {
  width: 100%;
}


/* ==============================
   HERO TRUST
================================ */

.hero-trust {
  display: flex;

  gap: 35px;

  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;

  flex-direction: column;
}

.hero-trust strong {
  font-size: 20px;

  color: var(--secondary);
}

.hero-trust span {
  font-size: 12px;

  color: var(--muted);
}


/* ==============================
   HERO CARD
================================ */

.hero-card {
  padding: 38px;

  border-radius: 35px;

  text-align: center;

  background:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 35px 90px
    rgba(84, 42, 9, 0.13);

  border:
    1px solid
    rgba(255, 255, 255, 0.9);
}

.hero-card-logo {
  width: 105px;

  height: 105px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: white;

  padding: 5px;

  box-shadow:
    0 10px 30px
    rgba(73, 40, 20, 0.12);
}

.hero-card-logo img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  border-radius: 50%;
}

.small-heading {
  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.hero-card h2 {
  color: var(--secondary);

  margin: 7px 0 12px;

  font-size: 26px;

  line-height: 1.4;
}

.hero-card > p:not(.small-heading) {
  color: var(--muted);

  margin-bottom: 22px;
}


/* ==============================
   QUICK DONATION
================================ */

.quick-donation {
  margin-top: -47px;

  position: relative;

  z-index: 10;
}

.quick-box {
  padding: 25px 28px;

  border-radius: 26px;

  background: var(--white);

  box-shadow: var(--shadow);

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 30px;
}

.quick-heading {
  display: flex;

  align-items: center;

  gap: 12px;
}

.quick-heading > span {
  font-size: 28px;
}

.quick-heading p {
  color: var(--muted);

  font-size: 12px;
}

.quick-heading h3 {
  color: var(--secondary);
}

.quick-amounts {
  display: flex;

  gap: 8px;

  flex-wrap: wrap;
}

.quick-amounts button {
  border:
    1px solid var(--border);

  background: var(--cream);

  color: var(--secondary);

  border-radius: 10px;

  min-width: 70px;

  padding: 9px 11px;

  font-weight: 700;

  transition: 0.2s;
}

.quick-amounts button:hover,
.quick-amounts button.active {
  background: var(--primary);

  color: white;

  border-color: var(--primary);
}


/* ==============================
   GENERAL SECTION
================================ */

.section {
  padding: 105px 0;
}

.section-tag {
  display: inline-block;

  font-size: 13px;

  padding: 7px 13px;

  border-radius: 50px;

  color: var(--primary-dark);

  background: #fff0db;

  font-weight: 800;

  margin-bottom: 14px;
}

.section-heading {
  max-width: 710px;

  margin: 0 auto 50px;

  text-align: center;
}

.section-heading h2,
.about-content h2 {
  font-size:
    clamp(32px, 4vw, 45px);

  line-height: 1.3;

  color: var(--dark);

  margin-bottom: 15px;
}

.section-heading > p {
  color: var(--muted);
}


/* ==============================
   ABOUT
================================ */

.about {
  background: var(--light);
}

.about-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  align-items: center;

  gap: 80px;
}

.about-image {
  position: relative;

  min-height: 470px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.about-image::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #f6c16c,
      #f28c28
    );

  opacity: 0.16;
}

.about-image-card {
  width: 350px;

  min-height: 390px;

  position: relative;

  z-index: 2;

  padding: 45px;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      #6c361a,
      #3c1c0e
    );

  color: var(--white);

  display: flex;

  flex-direction: column;

  justify-content: center;

  text-align: center;

  box-shadow:
    0 30px 70px
    rgba(75, 36, 16, 0.22);
}

.about-logo {
  width: 120px;

  height: 120px;

  margin: 0 auto 18px;

  padding: 5px;

  border-radius: 50%;

  background: white;
}

.about-logo img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  border-radius: 50%;
}

.about-image-card h3 {
  font-size: 30px;
}

.about-image-card p {
  opacity: 0.82;

  margin-top: 9px;
}

.floating-badge {
  position: absolute;

  right: 5px;

  bottom: 30px;

  z-index: 3;

  max-width: 200px;

  padding: 17px 21px;

  border-radius: 18px;

  background: var(--white);

  box-shadow: var(--shadow);
}

.floating-badge strong {
  display: block;

  color: var(--primary);

  font-size: 21px;
}

.floating-badge span {
  font-size: 12px;

  color: var(--muted);
}

.about-content > p {
  color: var(--muted);

  margin-bottom: 13px;
}

.about-points {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;

  margin: 27px 0;
}

.about-points div {
  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 14px;

  font-weight: 600;
}

.about-points span {
  width: 24px;

  height: 24px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: #eaf2dd;

  color: var(--green);

  font-weight: 900;
}

.text-link {
  color: var(--primary-dark);

  font-weight: 800;
}


/* ==============================
   SERVICES
================================ */

.sewa-section {
  background: var(--cream);
}

.sewa-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 17px;
}

.sewa-card {
  position: relative;

  padding: 30px 25px;

  border-radius: var(--radius);

  background: var(--white);

  border:
    1px solid
    rgba(100, 60, 30, 0.08);

  transition: 0.28s;

  overflow: hidden;
}

.sewa-card:hover {
  transform:
    translateY(-8px);

  box-shadow: var(--shadow);
}

.featured-card {
  border:
    2px solid
    rgba(237, 123, 19, 0.38);
}

.featured-label {
  position: absolute;

  top: 0;

  right: 0;

  padding: 7px 12px;

  border-bottom-left-radius: 13px;

  background: var(--primary);

  color: white;

  font-size: 10px;

  font-weight: 800;
}

.service-icon {
  width: 62px;

  height: 62px;

  display: grid;

  place-items: center;

  border-radius: 18px;

  background: #fff1dd;

  font-size: 31px;

  margin-bottom: 21px;
}

.service-number {
  position: absolute;

  right: 19px;

  top: 35px;

  font-size: 14px;

  color: #d7c4af;
}

.sewa-card h3 {
  font-size: 23px;

  color: var(--secondary);
}

.english-title {
  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 14px;
}

.sewa-card > p:not(.english-title) {
  color: var(--muted);

  font-size: 14px;

  min-height: 75px;
}

.service-donation {
  margin: 22px 0;

  padding: 14px;

  border-radius: 14px;

  background: var(--cream);

  display: flex;

  flex-direction: column;
}

.service-donation span {
  font-size: 11px;

  color: var(--muted);
}

.service-donation strong {
  color: var(--primary-dark);
}

.service-btn {
  width: 100%;

  padding: 12px;

  border-radius: 12px;

  border:
    1px solid
    #efc99e;

  background: transparent;

  color: var(--primary-dark);

  font-weight: 800;

  transition: 0.2s;
}

.service-btn:hover {
  background: var(--primary);

  border-color: var(--primary);

  color: white;
}


/* ==============================
   MESSAGE
================================ */

.message-section {
  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      #4c2512,
      #7d3b18
    );

  color: white;
}

.message-box {
  text-align: center;

  max-width: 850px;
}

.quote-mark {
  font-family: Georgia, serif;

  font-size: 75px;

  line-height: 1;

  color: #f6ad48;
}

.message-box h2 {
  font-size:
    clamp(30px, 4vw, 45px);

  line-height: 1.4;

  margin-bottom: 18px;
}

.message-box p {
  max-width: 680px;

  margin: auto;

  opacity: 0.83;
}

.message-box span {
  display: block;

  margin-top: 24px;

  color: #ffc979;

  font-weight: 700;
}


/* ==============================
   IMPACT
================================ */

.impact-section {
  background: white;
}

.impact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 17px;
}

.impact-card {
  text-align: center;

  padding: 30px 20px;

  border-radius: 22px;

  background: var(--cream);

  border:
    1px solid
    var(--border);

  transition: 0.25s;
}

.impact-card:hover {
  transform:
    translateY(-5px);

  box-shadow: var(--shadow);
}

.impact-icon {
  font-size: 38px;

  margin-bottom: 11px;
}

.impact-card strong {
  display: block;

  font-size: 28px;

  color: var(--primary);
}

.impact-card h3 {
  color: var(--secondary);

  margin-bottom: 7px;
}

.impact-card p {
  font-size: 13px;

  color: var(--muted);
}


/* ==============================
   DONATION SECTION
================================ */

.donation-section {
  background:
    linear-gradient(
      135deg,
      #3f1d0e,
      #763716
    );

  color: white;
}

.donation-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 80px;

  align-items: center;
}

.light-tag {
  background:
    rgba(255, 255, 255, 0.12);

  color: #ffbf69;
}

.donation-info h2 {
  font-size:
    clamp(36px, 5vw, 53px);

  line-height: 1.25;

  margin-bottom: 15px;
}

.donation-info > p {
  opacity: 0.8;

  max-width: 520px;

  margin-bottom: 30px;
}

.donate-info-card {
  display: flex;

  gap: 15px;

  max-width: 500px;

  margin-top: 12px;

  padding: 17px;

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.08);
}

.donate-info-card > span {
  font-size: 25px;
}

.donate-info-card p {
  font-size: 13px;

  opacity: 0.88;
}

.donate-contact {
  margin-top: 28px;
}

.donate-contact p {
  font-size: 12px;

  opacity: 0.7;

  margin-bottom: 8px;
}

.donate-contact a {
  display: block;

  width: fit-content;

  color: white;

  font-weight: 700;

  margin-top: 6px;
}


/* ==============================
   DONATION FORM
================================ */

.donation-form-card {
  background: white;

  color: var(--text);

  padding: 35px;

  border-radius: 30px;

  box-shadow:
    0 35px 80px
    rgba(21, 9, 3, 0.32);
}

.form-heading {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 25px;
}

.form-heading > span {
  width: 50px;

  height: 50px;

  display: grid;

  place-items: center;

  border-radius: 14px;

  background: #fff0dc;

  font-size: 27px;
}

.form-heading p {
  color: var(--primary);

  font-size: 11px;

  font-weight: 800;
}

.form-heading h3 {
  color: var(--secondary);

  font-size: 24px;
}

.donation-form-card label {
  display: block;

  font-size: 13px;

  font-weight: 700;

  margin:
    16px 0 7px;

  color: var(--secondary);
}

.donation-form-card input,
.donation-form-card select {
  width: 100%;

  padding: 14px 15px;

  border-radius: 12px;

  border:
    1px solid
    #dfd4c8;

  outline: none;

  color: var(--text);

  background: white;
}

.donation-form-card input:focus,
.donation-form-card select:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 3px
    rgba(237, 123, 19, 0.1);
}

.amount-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 8px;
}

.amount-btn {
  border:
    1px solid
    var(--border);

  background: var(--cream);

  border-radius: 10px;

  padding: 11px 4px;

  color: var(--secondary);

  font-size: 13px;

  font-weight: 800;
}

.amount-btn:hover,
.amount-btn.active {
  color: white;

  background: var(--primary);

  border-color: var(--primary);
}

#customAmount {
  margin-top: 9px;

  display: none;
}

.donation-summary {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 20px;

  padding: 16px;

  border-radius: 13px;

  background: #fff2de;
}

.donation-summary span {
  color: var(--secondary);

  font-size: 13px;

  font-weight: 700;
}

.donation-summary strong {
  font-size: 25px;

  color: var(--primary-dark);
}

.donation-submit {
  border: 0;

  margin-top: 15px;

  font-size: 16px;
}

.secure-note {
  text-align: center;

  margin-top: 11px;

  color: var(--muted);

  font-size: 11px;
}


/* ==============================
   CTA
================================ */

.cta-section {
  background:
    linear-gradient(
      135deg,
      #ef8b23,
      #f4a33c
    );

  padding: 55px 0;

  color: white;
}

.cta-content {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;
}

.cta-content span {
  font-size: 12px;

  opacity: 0.85;
}

.cta-content h2 {
  font-size:
    clamp(28px, 4vw, 42px);

  line-height: 1.3;
}


/* ==============================
   CONTACT
================================ */

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  max-width: 950px;

  margin: auto;
}

.contact-card {
  background: white;

  border-radius: 20px;

  padding: 30px 20px;

  text-align: center;

  border:
    1px solid
    var(--border);

  transition: 0.25s;

  overflow-wrap: anywhere;
}

.contact-card:hover {
  transform:
    translateY(-5px);

  box-shadow: var(--shadow);
}

.contact-card > span {
  font-size: 30px;
}

.contact-card h3 {
  margin-top: 9px;

  color: var(--secondary);
}

.contact-card p {
  color: var(--muted);

  font-size: 13px;

  margin-top: 4px;
}

.contact-card small {
  display: block;

  margin-top: 8px;

  color: var(--primary);

  font-weight: 700;

  font-size: 11px;
}


/* ==============================
   FOOTER
================================ */

.footer {
  padding:
    70px 0 20px;

  background: #21120b;

  color: white;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr;

  gap: 70px;
}

.footer-logo .brand-text strong {
  color: white;
}

.footer-brand > p {
  color: #c7b6ac;

  margin-top: 20px;

  max-width: 430px;
}

.footer-contact {
  margin-top: 15px !important;

  line-height: 2;

  font-size: 13px;

  overflow-wrap: anywhere;
}

.footer-contact a {
  color: white;
}

.footer-contact a:hover {
  color: #ffb45b;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.footer-links h4 {
  margin-bottom: 8px;

  color: #ffb45b;
}

.footer-links a {
  color: #c7b6ac;

  font-size: 13px;

  transition: 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 50px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);

  display: flex;

  justify-content: space-between;

  gap: 20px;

  color: #97877f;

  font-size: 11px;
}


/* ==============================
   MOBILE DONATE
================================ */

.mobile-donate {
  display: none;

  position: fixed;

  left: 12px;

  right: 12px;

  bottom: 12px;

  z-index: 999;

  min-height: 54px;

  align-items: center;

  justify-content: center;

  border-radius: 50px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #ed7b13,
      #f59d32
    );

  font-weight: 800;

  box-shadow:
    0 10px 30px
    rgba(53, 24, 7, 0.32);
}


/* ==============================
   MODAL
================================ */

.modal {
  position: fixed;

  inset: 0;

  z-index: 2000;

  background:
    rgba(20, 10, 4, 0.72);

  backdrop-filter: blur(8px);

  display: none;

  align-items: center;

  justify-content: center;

  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-content {
  position: relative;

  max-width: 430px;

  width: 100%;

  padding: 38px 30px;

  border-radius: 28px;

  background: white;

  text-align: center;

  box-shadow:
    0 30px 90px
    rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;

  right: 15px;

  top: 10px;

  border: 0;

  background: transparent;

  font-size: 28px;

  color: var(--muted);
}

.modal-icon {
  font-size: 50px;
}

.modal-content h2 {
  color: var(--secondary);

  font-size: 31px;

  margin-top: 8px;
}

.modal-content p {
  color: var(--muted);

  margin:
    10px 0 20px;
}

.modal-ok {
  width: 100%;

  margin-top: 10px;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 1050px) {

  .sewa-grid,
  .impact-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .quick-box {
    grid-template-columns: 1fr;
  }

  .quick-btn {
    width: fit-content;
  }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 800px) {

  body {
    padding-bottom: 75px;
  }


  /* Header */

  .nav {
    min-height: 70px;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .logo-circle {
    width: 45px;

    height: 45px;
  }

  .menu-btn {
    display: block;
  }


  /* Mobile Navigation */

  .nav-links {
    position: fixed;

    left: 0;

    top: 70px;

    width: 100%;

    height:
      calc(100vh - 70px);

    background: white;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: stretch;

    padding: 25px 24px;

    gap: 5px;

    transform:
      translateX(100%);

    transition: 0.3s;
  }

  .nav-links.open {
    transform:
      translateX(0);
  }

  .nav-links > a {
    padding: 14px 5px;

    border-bottom:
      1px solid #eee4d8;
  }

  .nav-donate {
    text-align: center;

    border-bottom: 0 !important;

    margin-top: 15px;
  }


  /* Hero */

  .hero {
    min-height: auto;

    padding:
      110px 0 95px;
  }

  .hero-content {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .hero h1 {
    font-size: 40px;

    letter-spacing: -1px;
  }

  .hero-text > p {
    font-size: 15px;
  }

  .hero-card {
    padding: 28px 21px;
  }

  .hero-card-logo {
    width: 90px;

    height: 90px;
  }

  .hero-trust {
    gap: 22px;
  }


  /* Quick donation */

  .quick-donation {
    margin-top: -42px;
  }

  .quick-box {
    padding: 22px;

    gap: 18px;
  }

  .quick-amounts {
    display: grid;

    grid-template-columns:
      repeat(4, 1fr);
  }

  .quick-amounts button {
    min-width: unset;

    padding:
      9px 4px;

    font-size: 12px;
  }

  .quick-btn {
    width: 100%;
  }


  /* Sections */

  .section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .about-content h2 {
    font-size: 32px;
  }


  /* About */

  .about-grid,
  .donation-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .about-image {
    min-height: 410px;
  }

  .about-image-card {
    width: 88%;

    max-width: 350px;
  }

  .floating-badge {
    right: 1%;
  }

  .about-points {
    grid-template-columns: 1fr;
  }


  /* Services */

  .sewa-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .sewa-card > p:not(.english-title) {
    min-height: unset;
  }


  /* Donation */

  .donation-grid {
    gap: 35px;
  }

  .donation-form-card {
    padding: 27px 19px;
  }

  .amount-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  /* CTA */

  .cta-content {
    flex-direction: column;

    text-align: center;
  }

  .btn-white {
    width: 100%;
  }


  /* Contact */

  .contact-grid {
    grid-template-columns: 1fr;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }


  /* Fixed donation button */

  .mobile-donate {
    display: flex;
  }

}


/* ==============================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {

  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust {
    justify-content: space-between;

    gap: 10px;
  }

  .quick-amounts {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .about-image-card {
    width: 95%;
  }

  .floating-badge {
    bottom: 0;

    max-width: 185px;
  }

  .donation-form-card {
    border-radius: 22px;
  }

  .contact-card p {
    font-size: 12px;
  }

}