:root {
  --primary-color: #8b1538;
  --secondary-color: #d4af37;
  --accent-color: #b8860b;
  --dark-maroon: #5d0e1f;
  --light-gold: #f4e4bc;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
}

.top-strip {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-maroon));
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-strip a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-strip a:hover {
  color: var(--secondary-color);
}

.social-icons a {
  margin: 0 5px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  white-space: nowrap;
}

.org-title {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(135deg, var(--light-gold), var(--white));
}

.org-name-en {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.org-name-hi {
  font-size: 1.8rem;
  color: var(--dark-maroon);
  font-weight: 600;
  margin-bottom: 10px;
}

.reg-number {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 500;
  background: rgba(212, 175, 55, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo i {
  font-size: 2.5rem;
  color: var(--white);
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-maroon));
  padding: 15px 0;
}

.navbar-nav {
  margin: 0 auto;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 10px 20px !important;
  margin: 0 5px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link.active {
  background: var(--secondary-color);
  color: var(--dark-maroon) !important;
}

.donate-btn {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--accent-color));
  color: var(--dark-maroon) !important;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Carousel */
.carousel {
  height: 600px;
  overflow: hidden;
}

.carousel-item {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(139, 21, 56, 0.7),
      rgba(212, 175, 55, 0.3));
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 30%;
}

.carousel-caption h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-1 {
  background: linear-gradient(rgba(139, 21, 56, 0.6), rgba(212, 175, 55, 0.4)),
    url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1200&h=600&fit=crop") center/cover;
}

.slide-2 {
  background: linear-gradient(rgba(139, 21, 56, 0.6), rgba(212, 175, 55, 0.4)),
    url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?w=1200&h=600&fit=crop") center/cover;
}

.slide-3 {
  background: linear-gradient(rgba(139, 21, 56, 0.6), rgba(212, 175, 55, 0.4)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1200&h=600&fit=crop") center/cover;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

/* Donate Button */
.donate-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-maroon));
  color: var(--white);
}

.donate-main-btn {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--accent-color));
  color: var(--dark-maroon);
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.donate-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: var(--dark-maroon);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 5px solid var(--secondary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo i {
  font-size: 4rem;
  color: var(--white);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-title {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid var(--secondary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-section .section-title {
  margin-bottom: 20px;
}

.gallery-section p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.gallery-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.gallery-row {
  --bs-gutter-x: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-section .section-title {
  margin-bottom: 20px;
}

.contact-section p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-info {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-heading {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 25px;
}

.contact-heading:first-child {
  margin-top: 0;
}

.contact-detail {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-detail a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.social-icons-contact {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-form label {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

.contact-btn {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--accent-color));
  color: var(--dark-maroon);
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info,
  .contact-form-wrapper {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .social-icons-contact {
    justify-content: center;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-maroon), var(--primary-color));
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-section h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p,
.footer-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  padding: 5px 0;
}

.footer-section ul li i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  background: var(--dark-maroon);
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

/* Policy Pages Specific Styles */
section.policy-content {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.policy-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.policy-content h5 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .org-name-en {
    font-size: 2rem;
  }

  .org-name-hi {
    font-size: 1.4rem;
  }

  .carousel-caption h2 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar-nav .nav-link {
    padding: 8px 15px !important;
  }
}

/* Extra-small devices fine-tuning for title alignment */
@media (max-width: 576px) {
  .header {
    /* allow wrapping so both language lines center naturally */
    white-space: normal !important;
    overflow-x: hidden !important;
  }

  .org-title {
    padding: 16px 12px;
    text-align: center;
  }

  .org-name-en,
  .org-name-hi {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 6px auto;
    line-height: 1.2;
  }

  .org-name-en {
    font-size: 1.85rem;
  }

  .org-name-hi {
    font-size: 1.3rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--dark-maroon), var(--accent-color));
}

/* ===== DONATE PAGE STYLES ===== */
.donate-hero {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
  padding: 0 0 80px 0; /* Important: Provide space for the overlapping form! */
  position: relative;
}

.donate-hero-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.donate-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.donation-quote {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  display: block;
  padding: 0 20px;
}

.donate-form-section {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  margin-top: -60px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.donate-form label {
  font-weight: 500;
  color: var(--primary-color);
}

.donate-form .form-control {
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
}

.donate-form .btn {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--accent-color));
  color: var(--dark-maroon);
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.donate-form .btn:hover {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  color: var(--primary-color);
}

.decorative-section {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--primary-color));
  color: var(--white);
  border-radius: 30px;
  padding: 50px 20px 30px 20px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.decorative-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.decorative-section .impact-icons {
  font-size: 2.5rem;
  margin: 0 10px;
  color: var(--light-gold);
}

.decorative-section .donate-cta {
  font-size: 1.3rem;
  margin-top: 20px;
  color: var(--white);
  font-weight: 600;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.gallery-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.gallery-row {
  --bs-gutter-x: 1.5rem;
}

.pan-address-fields {
  display: none;
}

/* Donate page responsive */
@media (max-width: 768px) {
  .donate-hero-content h1 {
    font-size: 1.5rem;
  }

  .decorative-section h2 {
    font-size: 1.3rem;
  }

  .donate-form-section {
    padding: 25px 10px;
    margin-top: 30px !important;
  }
}

/* ===== POLICY PAGES STYLES ===== */
.policy-content {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.policy-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.policy-content h5 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ===== GLOBAL FULL-WIDTH OVERRIDES (User request: make ALL pages full width via CSS only) ===== */
/* Ensure Bootstrap containers span full viewport width */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Remove central max-width constraints applied earlier */
section,
.policy-content,
.donate-form-section {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Fine-tune specific blocks that previously relied on centered narrow layout */
.donate-form-section {
  border-radius: 0;
  /* full-width visual cohesion */
}

.policy-content {
  border-radius: 0;
  /* make policy pages flush full-width */
  box-shadow: none;
  /* optional: remove card look when full width */
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Optional: keep very large screens from becoming too wide for long text blocks (readability cap) */
@media (min-width: 1600px) {

  .policy-content,
  .donate-form-section {
    max-width: 1400px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Mobile spacing tweaks remain gentle */
@media (max-width: 576px) {

  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .policy-content,
  .donate-form-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Correct mobile centering rules (separate block to avoid nesting errors) */
@media (max-width: 576px) {
  .logo-container {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 10px;
    width: 100%;
  }

  .logo {
    margin: 0 auto 12px auto !important;
    margin-right: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 6px;
    margin: 0 auto;
  }

  .navbar .navbar-brand i.fa-hands-helping {
    font-size: 1.35rem;
    margin-right: 0 !important;
  }

  /* Remove side padding so brand centers relative to viewport */
  .navbar .container,
  .navbar .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* If logo considered the brand element only */
  .navbar-brand,
  .logo-container,
  .logo {
    text-align: center !important;
  }
}

/* ==== REFACTORED INLINE STYLE REPLACEMENTS ==== */
.gradient-btn {
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--accent-color));
  color: var(--dark-maroon) !important;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  transition: all 0.3s ease;
}

.gradient-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.donate-now-cta {
  color: #8b1538 !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 36px;
  font-size: 1.2rem;
}

.donate-hero-title {
  color: #2c3e50;
  border-bottom: 4px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 6px;
  background: rgba(255, 255, 255, 0);
  margin-top: 18px;
  font-family: "Playfair Display", serif;
}

.mt-neg-2 {
  margin-top: -2px !important;
}

.donation-quote {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--secondary-color);
  margin-top: 10px;
  max-width: 95vw;
}

.section-heading-accent {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.info-note {
  color: var(--text-light);
  font-size: 1.1rem;
}

.highlight-accent {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.simple-footer {
  background: var(--dark-maroon);
  color: var(--white);
}

.donate-support-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.donate-support-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.footer-note {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 10px;
}

.footer-legal-link {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: underline;
  margin-right: 12px;
}

.footer-legal-link:last-child {
  margin-right: 0;
}

.map-iframe {
  border: 0;
}

/* Utility for asterisk (fallback) */
.text-danger {
  color: #dc3545 !important;
}

/* Contact phone inline utility */
.contact-phone {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 4px;
}

.contact-phone a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}

/* === Desktop refinement: donation form not full-width on larger screens === */
@media (min-width: 992px) {
  .donate-form-section {
    max-width: 720px !important;
    /* constrain width */
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 24px;
    /* restore rounded look when not full width */
    padding-left: 60px;
    padding-right: 60px;
  }
}